*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #0A2540;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(10, 37, 64, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #0A2540;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #0A2540;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #0A2540;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  color: #0A2540;
}

.mobile-cta {
  border-bottom: none;
  margin-top: 8px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: #0A2540;
  color: #FFFFFF;
  border-color: #0A2540;
}

.btn-primary:hover {
  background: #133A5C;
  border-color: #133A5C;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.2);
}

.btn-ghost {
  background: transparent;
  color: #0A2540;
  border-color: rgba(10, 37, 64, 0.2);
}

.btn-ghost:hover {
  border-color: #0A2540;
  background: rgba(10, 37, 64, 0.03);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.btn-full {
  width: 100%;
}

.btn-cta-phone {
  background: transparent;
  color: #0A2540;
  border-color: rgba(10, 37, 64, 0.2);
}

.btn-cta-phone:hover {
  border-color: #0A2540;
  background: rgba(10, 37, 64, 0.03);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7ED4C1;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0A2540;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(10, 37, 64, 0.65);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0A2540;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(10, 37, 64, 0.5);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(10, 37, 64, 0.1);
}

.hero-image {
  position: relative;
  height: 700px;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.12);
}

.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: #FFFFFF;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0A2540;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.1);
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 212, 193, 0.4), transparent);
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7ED4C1;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0A2540;
  margin-bottom: 20px;
}

.section-header.center {
  text-align: center;
}

.section-header p + h2 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 24px;
  background: #FFFFFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  padding: 40px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.service-card:hover {
  border-color: rgba(126, 212, 193, 0.5);
  box-shadow: 0 8px 40px rgba(10, 37, 64, 0.06);
  transform: translateY(-2px);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #EAF7F4;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #0A2540;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card > p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(10, 37, 64, 0.6);
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 0.875rem;
  color: rgba(10, 37, 64, 0.7);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7ED4C1;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 24px;
  background: #F5F3F0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  height: 600px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content > p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(10, 37, 64, 0.65);
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #0A2540;
}

/* ─── PROCESS ─── */
.process {
  padding: 120px 24px;
  background: #FFFFFF;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
}

.process-step {
  padding: 40px;
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: rgba(126, 212, 193, 0.4);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #0A2540;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(10, 37, 64, 0.6);
}

.step-connector {
  position: absolute;
  right: 0;
  top: 64px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(126, 212, 193, 0.5), rgba(126, 212, 193, 0.1));
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 120px 24px;
  background: #EAF7F4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 36px;
  border-radius: 12px;
  border: 1px solid rgba(10, 37, 64, 0.04);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.06);
  transform: translateY(-2px);
}

.testimonial-quote {
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-card > p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(10, 37, 64, 0.7);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0A2540;
}

.author-location {
  display: block;
  font-size: 0.75rem;
  color: rgba(10, 37, 64, 0.45);
  margin-top: 2px;
}

/* ─── CTA ─── */
.cta {
  padding: 100px 24px;
  background: #0A2540;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: #7ED4C1;
  border-color: #7ED4C1;
  color: #0A2540;
}

.cta .btn-primary:hover {
  background: #6DC8B3;
  border-color: #6DC8B3;
  box-shadow: 0 4px 16px rgba(126, 212, 193, 0.3);
}

.cta .btn-cta-phone {
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.cta .btn-cta-phone:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 24px;
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(10, 37, 64, 0.6);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 37, 64, 0.4);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-size: 0.9375rem;
  color: #0A2540;
  line-height: 1.5;
}

.contact-item a:hover {
  color: #7ED4C1;
}

.contact-form-wrap {
  background: #F5F3F0;
  padding: 40px;
  border-radius: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0A2540;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  padding: 12px 16px;
  border: 1px solid rgba(10, 37, 64, 0.12);
  border-radius: 6px;
  background: #FFFFFF;
  color: #0A2540;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7ED4C1;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(10, 37, 64, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #EAF7F4;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #0A2540;
  margin-top: 8px;
}

.form-success.show {
  display: flex;
}

/* ─── FOOTER ─── */
.footer {
  padding: 80px 24px 40px;
  background: #0A2540;
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-links a,
.footer-links span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #7ED4C1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-image {
    height: 500px;
  }

  .about-grid,
  .contact-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    height: 400px;
    order: -1;
  }

  .hero-img-accent {
    width: 140px;
    height: 140px;
    left: -16px;
    bottom: -16px;
  }

  .hero-badge {
    right: 0;
    top: 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 360px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-connector {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 16px 48px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .services,
  .about,
  .process,
  .testimonials,
  .contact {
    padding: 80px 16px;
  }

  .service-card {
    padding: 28px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .cta {
    padding: 80px 16px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
