/* === Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #fafafa;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* === Nav === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo span { color: #6c63ff; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
}
.nav-links a:hover { color: #6c63ff; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #6c63ff;
  color: #fff;
}
.btn-primary:hover {
  background: #5a52d5;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(108,99,255,0.3);
}
.btn-outline {
  border: 2px solid #1a1a2e;
  color: #1a1a2e;
  background: transparent;
}
.btn-outline:hover {
  background: #1a1a2e;
  color: #fff;
}

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(160deg, #fafafa 0%, #f0eeff 50%, #e8e6ff 100%);
}
.hero-greeting {
  font-size: 1.1rem;
  font-weight: 400;
  color: #6c63ff;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-name {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === Sections === */
.section { padding: 100px 24px; }
.section-alt { background: #f5f4ff; }
.container { max-width: 1000px; margin: 0 auto; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 50px;
  align-items: start;
}
.photo-placeholder {
  width: 250px;
  height: 300px;
  background: linear-gradient(135deg, #6c63ff, #a78bfa);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.about-text p {
  color: #555;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #6c63ff;
}
.stat-label {
  font-size: 0.85rem;
  color: #888;
}

/* === Services === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: all 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #d0ccff;
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c63ff;
  transition: gap 0.2s;
}
.service-link:hover { text-decoration: underline; }

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.2s;
  font-weight: 500;
}
.contact-item:hover {
  border-color: #6c63ff;
  background: #f9f8ff;
}
.contact-icon { font-size: 1.2rem; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #6c63ff; }
.contact-form textarea { resize: vertical; }

/* === Footer === */
.footer {
  text-align: center;
  padding: 30px 24px;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid #eee;
}

/* === Mobile === */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; justify-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .nav-links { gap: 16px; }
}

@media (max-width: 480px) {
  .nav-links a { font-size: 0.8rem; }
  .about-stats { flex-direction: column; gap: 16px; }
}
