/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

img {
  display: block;
}

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

ul {
  list-style: none;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary-blue: #003ac0;
  --light-blue: #4779ec;
  --black: #000000;
  --white: #ffffff;
  --gray-lightest: #f6f6f6;
  --gray-light: #c1c1c1;
  --gray-middle: #7e7e7e;
  --text-title: #333333;
  --text-body: #666666;
  --text-gray: #999999;
  --bg-light-blue: #ecf2fe;
  --border-lb: #a0bcf8;
  --blue-20: #90acf7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.8px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background: var(--primary-blue);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--primary-blue);
}

.btn-white {
  background: #fff;
  color: var(--primary-blue);
}

/* ============================================
   SHARED LABEL
   ============================================ */
.label-blue {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: var(--light-blue);
  text-transform: uppercase;
}

/* ============================================
   NAV
   ============================================ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px 8px 8px 16px;
  width: 740px;
  pointer-events: all;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.9px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--light-blue);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: #000;
  min-height: 960px;
  padding: 219px 197px 78px 80px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 61px;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 646px;
  flex-shrink: 0;
}

.hero-title {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1.08px;
  color: #fff;
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-light);
  max-width: 454px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Brand logos marquee */
.brand-logos {
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  height: 50px;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.brand-logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee-hero 30s linear infinite;
  width: max-content;
}

@keyframes marquee-hero {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-logo-item {
  width: 80px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  width: 456px;
  height: 663px;
  flex-shrink: 0;
}

.hero-photo-frame {
  position: absolute;
  left: 57px;
  top: 86px;
  width: 376px;
  height: 577px;
}

.hero-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 2;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: #000;
  padding-bottom: 40px;
  overflow: hidden;
}

.about-text {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 1280px;
  margin: 0 auto;
  padding: 0 0 80px;
  min-height: 240px;
}

.about-headline {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 43px;
  color: #fff;
  max-width: 435px;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-light);
}

/* Gallery: absolute-positioned mosaic */
.about-gallery {
  position: relative;
  width: 1440px;
  height: 560px;
  margin: 0 auto;
}

.gal-img {
  position: absolute;
  object-fit: cover;
  display: block;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: #fff;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.section-title-dark {
  font-size: 40px;
  font-weight: 400;
  line-height: 43px;
  color: var(--text-title);
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
}

.services-grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
  width: 1280px;
}

.service-card {
  flex: 1;
  background: var(--primary-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 36px 24px;
  min-height: 288px;
}

.service-icon-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.service-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  width: 100%;
  font-variant-numeric: lining-nums proportional-nums;
}

.service-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-light);
  text-align: center;
  width: 100%;
}

/* ============================================
   HOW I WORK
   ============================================ */
.how {
  background: #fff;
  padding: 100px 80px;
  display: flex;
  gap: 60px;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.how-image {
  width: 608px;
  background: var(--blue-20);
  flex-shrink: 0;
}

.how-content {
  display: flex;
  flex-direction: column;
  gap: 39px;
  width: 549px;
  flex-shrink: 0;
}

.how-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 43px;
  color: var(--text-title);
  font-variant-numeric: lining-nums proportional-nums;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 24px;
  transition: all 0.3s ease;
}

.step-outline {
  border: 1px solid var(--primary-blue);
}

.step-filled {
  background: var(--primary-blue);
}

.step-num {
  font-size: 40px;
  font-weight: 400;
  line-height: 43px;
  color: var(--light-blue);
  width: 50px;
  flex-shrink: 0;
  font-variant-numeric: lining-nums proportional-nums;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.step-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: lining-nums proportional-nums;
}

.step-title.dark {
  color: var(--text-title);
}

.step-title.light {
  color: #fff;
}

.step-desc {
  font-size: 16px;
  line-height: 1.5;
}

.step-desc.dark {
  color: var(--text-body);
}

.step-desc.light {
  color: var(--gray-light);
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: #000;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.stats-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
  flex-shrink: 0;
}

.stats-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 43px;
  color: #fff;
  max-width: 544px;
  text-align: left;
  font-variant-numeric: lining-nums proportional-nums;
}

.stats-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #f6f6f6;
  max-width: 544px;
  text-align: left;
}

.stats-numbers {
  display: flex;
  gap: 80px;
  align-items: flex-end;
  justify-content: flex-start;
}

.stat-item {
  border-left: 1px solid #fff;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}

.stat-blue {
  color: var(--light-blue);
}

.stat-white {
  color: #fff;
}

.stat-num {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1.08px;
}

.stat-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase;
}

.stats-right {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.stats-clients-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding-left: 80px;
}

.client-logos {
  overflow: hidden;
  width: 100vw;
  margin-left: -80px;
  position: relative;
}

.client-logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee-clients 40s linear infinite;
  width: max-content;
}

@keyframes marquee-clients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo-item {
  width: 162px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-item img {
  max-width: 75%;
  max-height: 65%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.client-logo-item img:hover {
  opacity: 1;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: #000;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  text-align: center;
}

.pricing-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 43px;
  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  text-align: center;
}

.pricing-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-light);
  max-width: 800px;
  text-align: center;
}

.pricing-cards {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-height: 437px;
  padding: 40px 16px 40px 32px;
  justify-content: flex-start;
}

.pricing-card .btn {
  display: none;
}

.card-light {
  background: var(--gray-lightest);
}

.card-featured {
  background: var(--primary-blue);
}

.pricing-plan {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-period {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-period.gray {
  color: #999;
}

.plan-period.light-gray {
  color: #f6f6f6;
}

.plan-price {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1.08px;
  white-space: nowrap;
}

.plan-price.dark-price {
  color: var(--text-title);
}

.plan-price.white-price {
  color: #fff;
}

.plan-period-custom {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-blue);
  font-variant-numeric: lining-nums proportional-nums;
}

.plan-more {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-title);
  margin-top: 8px;
}

.plan-divider {
  width: 100%;
  height: 1px;
  background: #ccc;
  flex-shrink: 0;
}

.plan-divider.divider-light {
  background: rgba(255, 255, 255, 0.3);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.plan-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
}

.plan-features.gray-features li {
  color: var(--gray-middle);
}

.plan-features.white-features li {
  color: #fff;
}

.plan-features .dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 8px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-outer {
  background: #fff;
  padding: 104px 80px 0;
  overflow: hidden;
}

.contact-box {
  background: #000;
  display: flex;
  gap: 112px;
  padding: 40px 56px 40px 128px;
  min-height: 845px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 400px;
  flex-shrink: 0;
  padding: 60px 0;
}

.contact-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 43px;
  color: #fff;
  margin-bottom: 40px;
  font-variant-numeric: lining-nums proportional-nums;
}

.contact-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}

.contact-detail-line {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  font-variant-numeric: lining-nums proportional-nums;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  flex: 1;
  padding: 64px 40px 40px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-title);
}

.form-field input,
.form-field textarea {
  background: var(--bg-light-blue);
  border: 1px solid var(--border-lb);
  border-radius: 8px;
  padding: 17px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-gray);
  outline: none;
  width: 504px;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary-blue);
  color: var(--text-title);
}

.form-field textarea {
  height: 224px;
  resize: vertical;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #fff;
  padding: 40px 80px;
  overflow: hidden;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  width: 176px;
  height: 33px;
  object-fit: contain;
  object-position: left;
}

.footer-social {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer-social a {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-body);
  letter-spacing: -0.9px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--primary-blue);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-end;
}

.footer-nav {
  display: flex;
  gap: 50px;
  align-items: center;
}

.footer-nav a {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-body);
  letter-spacing: -0.9px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--primary-blue);
}

.footer-copy {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray-light);
  text-align: right;
}

/* ============================================
   HAMBURGER (hidden on desktop)
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   RESPONSIVE — LAPTOP (max 1280px)
   ============================================ */
@media (max-width: 1280px) {
  .hero {
    padding: 180px 60px 60px;
  }

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

  .hero-text {
    width: auto;
    flex: 1;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-photo-wrap {
    width: 360px;
    height: 520px;
  }

  .hero-photo-frame {
    left: 30px;
    top: 50px;
    width: 300px;
    height: 460px;
  }

  .about-text {
    width: 100%;
    padding: 0 60px 60px;
  }

  .about-gallery {
    width: 100%;
    overflow: hidden;
  }

  .services {
    padding: 80px 40px;
  }

  .services-grid {
    width: 100%;
  }

  .how {
    padding: 80px 40px;
  }

  .how-image {
    width: 450px;
  }

  .how-content {
    width: auto;
    flex: 1;
  }

  .stats {
    padding: 80px 40px;
  }

  .pricing {
    padding: 80px 40px;
  }

  .pricing-cards {
    gap: 24px;
  }

  .contact-outer {
    padding: 80px 40px 0;
  }

  .contact-box {
    gap: 60px;
    padding: 40px 40px 40px 60px;
  }

  .contact-info {
    width: 320px;
  }

  .form-field input,
  .form-field textarea {
    width: 100%;
  }

  .footer {
    padding: 40px;
  }
}

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .nav {
    width: 100%;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #003ac0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 24px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  .hero {
    padding: 140px 40px 60px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    align-items: center;
    width: 100%;
  }

  .hero-title {
    font-size: 40px;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .brand-logos {
    justify-content: center;
    flex-wrap: wrap;
    height: auto;
    gap: 24px;
  }

  .hero-photo-wrap {
    width: 300px;
    height: 440px;
  }

  .hero-photo-frame {
    left: 20px;
    top: 30px;
    width: 260px;
    height: 400px;
  }

  .about-text {
    flex-direction: column;
    padding: 0 40px 60px;
    min-height: auto;
  }

  .about-title {
    max-width: 100%;
  }

  .about-gallery {
    height: 400px;
    transform: scale(0.7);
    transform-origin: center top;
  }

  .services {
    padding: 60px 24px;
  }

  .services-grid {
    flex-direction: column;
    gap: 24px;
  }

  .service-card {
    min-height: auto;
  }

  .how {
    flex-direction: column;
    padding: 60px 24px;
    gap: 40px;
  }

  .how-image {
    width: 100%;
    height: 350px;
  }

  .how-content {
    width: 100%;
  }

  .stats {
    padding: 60px 24px;
    gap: 60px;
  }

  .stats-numbers {
    gap: 40px;
    flex-wrap: wrap;
  }

  .client-logos {
    flex-wrap: wrap;
    gap: 24px;
  }

  .client-logo-item {
    width: 120px;
    height: 80px;
  }

  .pricing {
    padding: 60px 24px;
  }

  .pricing-cards {
    flex-direction: column;
    gap: 24px;
  }

  .pricing-card {
    min-height: auto;
  }

  .contact-outer {
    padding: 60px 24px 0;
  }

  .contact-box {
    flex-direction: column;
    gap: 0;
    padding: 40px;
  }

  .contact-info {
    width: 100%;
    padding: 0 0 40px;
  }

  .contact-detail-line {
    font-size: 18px;
    white-space: normal;
  }

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

  .footer {
    padding: 40px 24px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-copy {
    text-align: left;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 40px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 14px;
  }

  .brand-logos {
    gap: 16px;
  }

  .brand-logo-item {
    width: 60px;
    height: 40px;
  }

  .hero-photo-wrap {
    width: 260px;
    height: 380px;
  }

  .hero-photo-frame {
    left: 10px;
    top: 20px;
    width: 240px;
    height: 350px;
  }

  .about-text {
    padding: 0 20px 40px;
  }

  .about-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .about-gallery {
    height: 300px;
    transform: scale(0.5);
    transform-origin: center top;
  }

  .about {
    padding-bottom: 0;
  }

  .section-title-dark,
  .how-title,
  .stats-title,
  .pricing-title,
  .contact-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .stat-num {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }

  .stats-numbers {
    gap: 24px;
  }

  .step {
    gap: 20px;
    padding: 16px;
  }

  .step-num {
    font-size: 28px;
    width: 36px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-desc {
    font-size: 14px;
  }

  .pricing-card {
    padding: 24px 16px 24px 24px;
  }

  .contact-box {
    padding: 24px;
  }

  .contact-title {
    font-size: 30px;
    margin-bottom: 24px;
  }

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

  .form-field textarea {
    height: 160px;
  }

  .footer-nav {
    gap: 16px;
  }
}

/* ============================================
   MODAL POPUP
   ============================================ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  color: #1f2937;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-body {
  padding: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.modal-footer {
  padding: 0 24px 24px;
  text-align: center;
}

.modal-footer .btn {
  min-width: 120px;
}
