:root {
    --blue: #16ADDC;
    --green: #88C54D;
    --dark: #0a1628;
    --dark2: #0f1f3d;
    --white: #ffffff;
    --offwhite: #f7fafc;
    --gray: #6b7a99;
    --light-blue: #e8f8fd;
    --light-green: #f0f8e8;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Zen Maru Gothic', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5 { font-family: 'Baloo 2', sans-serif; }

  /* ─── OFFER BANNER ─── */
  .offer-banner {
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
  }
  .offer-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(22,173,220,0.06) 80px, rgba(22,173,220,0.06) 81px);
  }
  .offer-banner strong { color: var(--green); }
  .offer-banner .banner-pill {
    display: inline-block;
    background: var(--green);
    color: var(--dark);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 8px;
  }

  /* ─── HEADER / NAV ─── */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22,173,220,0.15);
    padding: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 20px rgba(22,173,220,0.08);
  }

  .header-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo img { height: 48px; width: auto; }

  nav { display: flex; align-items: center; gap: 8px; }
  nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  nav a:hover { background: var(--light-blue); color: var(--blue); }

  .nav-cta-wrap { display: flex; align-items: center; gap: 10px; }

  .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-call:hover { background: #0e93be; transform: translateY(-1px); }

  .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-wa:hover { background: #1db954; transform: translateY(-1px); }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border: none;
    background: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: white;
    border-bottom: 2px solid var(--blue);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.2s;
  }
  .mobile-menu a:hover { background: var(--light-blue); color: var(--blue); }
  .mobile-menu .mob-ctas { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
  .mobile-menu .mob-ctas a { text-align: center; justify-content: center; }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0d2a4a 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(22,173,220,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(136,197,77,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  /* decorative dots */
  .hero-dots {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: radial-gradient(rgba(22,173,220,0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(136,197,77,0.15);
    border: 1px solid rgba(136,197,77,0.3);
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
  }
  .hero-badge::before { content: '✦'; font-size: 9px; }

  .hero h1 {
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 22px;
  }
  .hero h1 span.accent-blue { color: var(--blue); }
  .hero h1 span.accent-green { color: var(--green); }

  .hero p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    max-width: 500px;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue), #0e93be);
    color: var(--white);
    text-decoration: none;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(22,173,220,0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(22,173,220,0.45); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(136,197,77,0.15);
    border: 2px solid var(--green);
    color: var(--green);
    text-decoration: none;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 12px;
    transition: all 0.3s;
  }
  .btn-secondary:hover { background: var(--green); color: var(--dark); transform: translateY(-2px); }

  .hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
  }
  .hero-stat {}
  .hero-stat .num {
    font-family: 'Baloo 2', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
  }
  .hero-stat .num span { color: var(--green); }
  .hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }

  /* Hero right visual */
  .hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 24px;
    color: white;
  }
  .hero-card.main {
    background: rgba(22,173,220,0.12);
    border-color: rgba(22,173,220,0.3);
  }
  .hero-card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
  }
  .hero-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: white; }
  .hero-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
  .hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ─── TICKER ─── */
  .ticker-section {
    background: var(--dark);
    padding: 50px 0 40px;
    overflow: hidden;
  }
  .ticker-label {
    text-align: center;
    font-family: 'Baloo 2', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
  }
  .ticker-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    position: relative;
  }
  .ticker-wrap::before, .ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
  .ticker-wrap::after { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }

  .ticker-track {
    display: flex;
    align-items: center;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
    gap: 0;
  }
  .ticker-track:hover { animation-play-state: paused; }

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

  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    font-family: 'Baloo 2', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
  }
  .ticker-item:hover { color: var(--blue); }
  .ticker-item .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }

  /* ─── TRUST BADGES ─── */
  .trust-strip {
    background: white;
    padding: 28px 40px;
    border-bottom: 1px solid rgba(22,173,220,0.12);
  }
  .trust-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--offwhite);
    border: 1px solid rgba(22,173,220,0.15);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
  }
  .trust-badge .icon { font-size: 16px; }
  .trust-badge.green-badge { border-color: rgba(136,197,77,0.3); }
  .trust-badge.blue-badge { border-color: rgba(22,173,220,0.3); }

  /* ─── SECTIONS COMMON ─── */
  section { padding: 90px 40px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    font-family: 'Baloo 2', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-align: center;
  }
  .section-sub {
    font-size: 16px;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.7;
    text-align: center;
  }

  /* dark section overrides */
  .dark-section { background: var(--dark); }
  .dark-section .section-title { color: var(--white); }
  .dark-section .section-sub { color: rgba(255,255,255,0.55); }

  /* ─── OFFER SECTION ─── */
  .offer-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    position: relative;
    overflow: hidden;
  }
  .offer-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(136,197,77,0.15) 0%, transparent 70%);
  }
  .offer-box {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(22,173,220,0.12), rgba(136,197,77,0.08));
    border: 1px solid rgba(22,173,220,0.25);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    backdrop-filter: blur(6px);
  }
  .offer-percent {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
  }
  .offer-box h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
  }
  .offer-box p {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
  }
  .offer-chips {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
  }

  /* ─── SERVICES ─── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: white;
    border: 1px solid rgba(22,173,220,0.12);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover { box-shadow: 0 16px 48px rgba(22,173,220,0.14); transform: translateY(-4px); }
  .service-card:hover::before { opacity: 1; }

  .service-img-wrap {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--light-blue);
  }
  .service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
  }
  .service-card:hover .service-img-wrap img { transform: scale(1.06); }

  .service-icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    background: var(--light-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s;
  }
  .service-card:hover .service-icon { background: linear-gradient(135deg, var(--blue), #0e93be); }
  .service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
  .service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
  .service-card {
    display: flex;
    flex-direction: column;
  }
  .service-card-btns {
    display: flex;
    gap: 10px;
    margin-top: auto;
  }
  .sc-btn-call, .sc-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    font-family: 'Baloo 2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .sc-btn-call {
    background: var(--blue);
    color: var(--white);
  }
  .sc-btn-call:hover { background: #0e93be; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(22,173,220,0.35); }
  .sc-btn-wa {
    background: #25D366;
    color: var(--white);
  }
  .sc-btn-wa:hover { background: #1db954; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.35); }

  /* ─── WHY CHOOSE US ─── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
  }
  .why-card:hover {
    background: rgba(22,173,220,0.08);
    border-color: rgba(22,173,220,0.3);
    transform: translateY(-4px);
  }
  .why-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(22,173,220,0.2), rgba(136,197,77,0.2));
    border: 1px solid rgba(22,173,220,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
  }
  .why-card h3 { font-size: 17px; font-weight: 700; color: white; margin-bottom: 10px; }
  .why-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

  /* ─── BOOKING PROCESS ─── */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    z-index: 0;
  }
  .process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: white;
    font-family: 'Baloo 2', sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(22,173,220,0.3);
  }
  .process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
  .process-step p { font-size: 13px; color: var(--gray); line-height: 1.65; }

  /* ─── WHAT WE CLEAN ─── */
  .clean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .clean-card {
    background: var(--dark);
    border: 1px solid rgba(22,173,220,0.15);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .clean-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .clean-card:hover { border-color: rgba(22,173,220,0.4); transform: translateY(-4px); }
  .clean-card:hover::after { opacity: 1; }
  .clean-card .c-icon { font-size: 36px; margin-bottom: 14px; display: block; }
  .clean-card h3 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
  .clean-card p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; margin-bottom: 12px; }
  .clean-tag {
    background: rgba(22,173,220,0.15);
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
  }

  /* ─── REVIEWS ─── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .review-card {
    background: white;
    border: 1px solid rgba(22,173,220,0.12);
    border-radius: 20px;
    padding: 30px 28px;
    position: relative;
    transition: all 0.3s;
  }
  .review-card:hover { box-shadow: 0 16px 48px rgba(22,173,220,0.1); transform: translateY(-3px); }
  .review-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 72px;
    font-family: Georgia, serif;
    color: var(--light-blue);
    line-height: 1;
  }
  .stars { color: #FFB800; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
  .review-text { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
  }
  .review-author h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
  .review-author span { font-size: 12px; color: var(--gray); }

  /* ─── CTA SECTION ─── */
  .cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, #0e93be 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .cta-inner .urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
  }
  .pulse { animation: pulse 1.5s infinite; display: inline-block; width: 8px; height: 8px; background: #88C54D; border-radius: 50%; }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }
  .cta-inner h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 800; color: white; margin-bottom: 18px; line-height: 1.15; }
  .cta-inner p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: white;
    color: var(--blue);
    text-decoration: none;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
  .btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    text-decoration: none;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-2px); }

  /* ─── FAQ ─── */
  .faq-list { max-width: 780px; margin: 0 auto; }
  .faq-item {
    border: 1px solid rgba(22,173,220,0.15);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .faq-item:hover { border-color: rgba(22,173,220,0.3); }
  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
  }
  .faq-q span { font-family: 'Baloo 2', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); flex: 1; }
  .faq-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--light-blue);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 18px;
    font-weight: 300;
    flex-shrink: 0;
    transition: all 0.3s;
  }
  .faq-item.open .faq-icon { background: var(--blue); color: white; transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0 24px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
  }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--white);
    padding: 60px 40px 30px;
    border-top: 2px solid rgba(22,173,220,0.2);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand .logo img { height: 44px; margin-bottom: 16px; filter: brightness(1.1); }
  .footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
  .footer-contacts { display: flex; flex-direction: column; gap: 10px; }
  .footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-contact-link:hover { color: var(--blue); }
  .footer-contact-link .fc-icon { font-size: 16px; }
  .footer-col h4 { font-family: 'Baloo 2', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 16px; letter-spacing: 0.04em; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a { text-decoration: none; color: var(--gray); font-size: 14px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--blue); }
  .footer-bottom {
    border-top: 1px solid rgba(22,173,220,0.15);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 13px; color: var(--gray); }
  .footer-bottom span { color: var(--green); }

  /* ─── FLOAT WA BUTTON ─── */
  .float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: all 0.3s;
    animation: float-in 0.5s ease 1s backwards;
  }
  .float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
  @keyframes float-in { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
  .float-wa svg { width: 28px; height: 28px; fill: white; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .clean-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  @media (max-width: 900px) {
    .header-inner { padding: 0 20px; }
    .hero { padding: 60px 24px; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    section { padding: 64px 24px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    nav { display: none; }
    .nav-cta-wrap { display: none; }
    .hamburger { display: flex; }
    .clean-grid { grid-template-columns: repeat(2, 1fr); }
    footer { padding: 40px 24px 24px; }
  }

  @media (max-width: 640px) {
    .offer-banner { font-size: 12px; padding: 10px 14px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .clean-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip { padding: 20px 16px; }
    .trust-strip-inner { gap: 8px; }
    .trust-badge { font-size: 12px; padding: 7px 12px; }
    footer { padding: 36px 20px 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .offer-box { padding: 36px 24px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas a { text-align: center; justify-content: center; }
    .hero-stats { gap: 20px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons a { width: 100%; max-width: 320px; justify-content: center; }
    .offer-chips { gap: 6px; }
    .chip { font-size: 12px; padding: 5px 12px; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fade-up 0.65s ease both; }
  .fade-up-2 { animation: fade-up 0.65s ease 0.12s both; }
  .fade-up-3 { animation: fade-up 0.65s ease 0.24s both; }
  .fade-up-4 { animation: fade-up 0.65s ease 0.36s both; }

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