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

    :root {
      --green:       #1db954;
      --green-dark:  #159a42;
      --green-light: #e6f9ed;
      --black:       #0d0d0d;
      --dark:        #111a14;
      --gray:        #f4f6f4;
      --text:        #1e2a22;
      --muted:       #5a6b5e;
      --white:       #ffffff;
      --radius:      12px;
      --shadow:      0 4px 24px rgba(0,0,0,.10);
      --shadow-lg:   0 12px 48px rgba(0,0,0,.18);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── UTILITY ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; border-radius: 50px; font-family: 'Barlow', sans-serif;
      font-weight: 700; font-size: 15px; letter-spacing: .5px; cursor: pointer;
      transition: transform .2s, box-shadow .2s, background .2s;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,185,84,.35); }
    .btn-green  { background: var(--green); color: var(--white); }
    .btn-green:hover { background: var(--green-dark); }
    .btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
    .btn-outline:hover { background: var(--white); color: var(--dark); box-shadow: 0 8px 24px rgba(255,255,255,.2); }
    .btn-dark { background: var(--dark); color: var(--white); }
    .section-label {
      display: inline-block; padding: 6px 18px; border-radius: 50px;
      background: var(--green-light); color: var(--green-dark);
      font-size: 13px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Barlow', sans-serif; font-weight: 900;
      font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.15;
      color: var(--text);
    }
    .section-title span { color: var(--green); }
    .section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; margin-top: 12px; }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--dark); color: rgba(255,255,255,.7);
      font-size: 13px; padding: 9px 0;
    }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
    .topbar a { color: var(--green); }
    .topbar-right { display: flex; gap: 24px; }
    .topbar-item { display: flex; align-items: center; gap: 6px; }
    .topbar-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

    /* ── HEADER / NAV ── */
    header {
      position: sticky; top: 0; z-index: 999;
      background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,.08);
    }
    nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
    .logo { display: flex; align-items: center; gap: 12px; }
    .logo-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: var(--dark); display: flex; align-items: center; justify-content: center;
    }
    .logo-icon svg { width: 36px; height: 36px; }
    .logo-text { font-family: 'Barlow', sans-serif; }
    .logo-text strong { display: block; font-size: 20px; font-weight: 900; color: var(--dark); letter-spacing: -.3px; }
    .logo-text span { font-size: 11px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 1.2px; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a {
      padding: 9px 16px; border-radius: 8px; font-weight: 600; font-size: 14.5px;
      color: var(--text); transition: background .18s, color .18s;
    }
    .nav-links a:hover, .nav-links a.active { background: var(--green-light); color: var(--green-dark); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .phone-pill {
      display: flex; align-items: center; gap: 8px; padding: 8px 18px;
      border-radius: 50px; background: var(--gray); font-weight: 700; font-size: 14px; color: var(--dark);
    }
    .phone-pill svg { color: var(--green); width: 16px; height: 16px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: .3s; }

    /* ── HERO ── */
    .hero {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--dark) 0%, #0d2618 100%);
      min-height: 88vh; display: flex; align-items: center;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
      opacity: .12;
    }
    .hero-grid {
      position: relative; display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 48px; padding: 80px 0;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 18px; border-radius: 50px;
      background: rgba(29,185,84,.15); border: 1px solid rgba(29,185,84,.3);
      color: var(--green); font-size: 13px; font-weight: 600; margin-bottom: 24px;
    }
    .hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
    .hero h1 {
      font-family: 'Barlow', sans-serif; font-weight: 900;
      font-size: clamp(2.6rem, 5.5vw, 4.2rem); line-height: 1.08;
      color: var(--white); margin-bottom: 20px;
    }
    .hero h1 em { font-style: normal; color: var(--green); }
    .hero-desc { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
    .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .hero-stats {
      display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .hero-stat strong {
      display: block; font-family: 'Barlow', sans-serif; font-weight: 900;
      font-size: 2.2rem; color: var(--white); line-height: 1;
    }
    .hero-stat strong span { color: var(--green); }
    .hero-stat p { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }
    .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
    .hero-mascot { display: flex; align-items: flex-end; justify-content: center; width: 100%; }
    .hero-card {
      background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.1); border-radius: 24px;
      padding: 36px; text-align: center; width: 100%; max-width: 380px;
    }
    .hero-card-icon {
      width: 80px; height: 80px; border-radius: 20px; background: var(--green);
      display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    }
    .hero-card-icon svg { width: 44px; height: 44px; color: var(--white); }
    .hero-card h3 { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
    .hero-card p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; }
    .hero-card .btn { margin-top: 24px; width: 100%; justify-content: center; }
    .badge-float {
      position: absolute; background: var(--white); border-radius: 14px;
      padding: 12px 16px; box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: 10px;
    }
    .badge-float.top-left { top: -16px; left: -32px; }
    .badge-float.bottom-right { bottom: 24px; right: -32px; }
    .badge-float-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
    .badge-float-icon.green { background: var(--green-light); }
    .badge-float-icon svg { width: 20px; height: 20px; color: var(--green); }
    .badge-float-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
    .badge-float-text span { font-size: 11px; color: var(--muted); }

    /* ── TRUST BAR ── */
    .trust-bar { background: var(--gray); padding: 24px 0; }
    .trust-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; font-weight: 600; }
    .trust-item svg { width: 20px; height: 20px; color: var(--green); }
    .trust-divider { width: 1px; height: 28px; background: #d0d8d3; }

    /* ── SERVICES ── */
    .services { padding: 96px 0; }
    .services-header { text-align: center; margin-bottom: 56px; }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .service-card {
      border-radius: var(--radius); overflow: hidden;
      background: var(--white); box-shadow: var(--shadow);
      transition: transform .25s, box-shadow .25s;
      display: flex; flex-direction: column;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .service-card-img { position: relative; height: 180px; overflow: hidden; }
    .service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .service-card:hover .service-card-img img { transform: scale(1.06); }
    .service-card-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.55));
    }
    .service-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
    .service-card-body h3 { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1rem; color: var(--dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .4px; }
    .service-card-body p { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; }
    .service-card-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 14px; font-size: 13px; font-weight: 700;
      color: var(--green); transition: gap .2s;
    }
    .service-card:hover .service-card-link { gap: 10px; }
    .service-card-link svg { width: 16px; height: 16px; }

    /* ── ABOUT ── */
    .about { padding: 96px 0; background: var(--gray); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .about-imgs { position: relative; }
    .about-img-main { border-radius: 20px; overflow: hidden; height: 460px; }
    .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
    .about-img-accent {
      position: absolute; bottom: -24px; right: -24px;
      width: 180px; height: 180px; border-radius: 16px; overflow: hidden;
      border: 6px solid var(--white); box-shadow: var(--shadow-lg);
    }
    .about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
    .about-experience {
      position: absolute; top: 24px; left: -24px;
      background: var(--green); color: var(--white); border-radius: 16px;
      padding: 20px 24px; text-align: center; box-shadow: var(--shadow-lg);
    }
    .about-experience strong { display: block; font-family: 'Barlow', sans-serif; font-weight: 900; font-size: 2.8rem; line-height: 1; }
    .about-experience span { font-size: 12px; font-weight: 600; opacity: .85; text-transform: uppercase; letter-spacing: 1px; }
    .about-content { }
    .about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
    .about-value {
      background: var(--white); border-radius: var(--radius); padding: 20px;
      display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow);
    }
    .about-value-icon {
      width: 40px; height: 40px; border-radius: 10px; background: var(--green-light);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .about-value-icon svg { width: 20px; height: 20px; color: var(--green); }
    .about-value h4 { font-weight: 700; font-size: 14.5px; color: var(--dark); margin-bottom: 4px; }
    .about-value p { font-size: 13px; color: var(--muted); line-height: 1.55; }

    /* ── WHY US ── */
    .why { padding: 96px 0; background: var(--dark); }
    .why .section-title { color: var(--white); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
    .why-items { display: flex; flex-direction: column; gap: 20px; }
    .why-item {
      display: flex; gap: 20px; align-items: flex-start;
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--radius); padding: 24px; transition: border-color .2s, background .2s;
    }
    .why-item:hover { background: rgba(29,185,84,.08); border-color: rgba(29,185,84,.25); }
    .why-item-num {
      width: 44px; height: 44px; border-radius: 12px; background: rgba(29,185,84,.15);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-family: 'Barlow', sans-serif; font-weight: 900; font-size: 18px; color: var(--green);
    }
    .why-item h4 { font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 6px; }
    .why-item p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }
    .why-visual { position: relative; border-radius: 24px; overflow: hidden; height: 500px; }
    .why-visual img { width: 100%; height: 100%; object-fit: cover; }
    .why-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,38,24,.8), transparent 60%); }
    .why-overlay {
      position: absolute; bottom: 32px; left: 32px; right: 32px; z-index: 2;
      background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.15); border-radius: 16px; padding: 24px;
      display: flex; gap: 16px; align-items: center;
    }
    .why-overlay-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .why-overlay-icon svg { width: 26px; height: 26px; color: var(--white); }
    .why-overlay h4 { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1rem; color: var(--white); }
    .why-overlay p { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 3px; }

    /* ── MISSION/VISION ── */
    .mvw { padding: 96px 0; }
    .mvw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
    .mvw-card {
      border-radius: 20px; padding: 36px 32px;
      background: var(--white); box-shadow: var(--shadow);
      border-bottom: 4px solid transparent; transition: border-color .2s, transform .25s;
    }
    .mvw-card:hover { border-color: var(--green); transform: translateY(-5px); }
    .mvw-card-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .mvw-card-icon svg { width: 28px; height: 28px; color: var(--green); }
    .mvw-card h3 { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: 12px; }
    .mvw-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(135deg, #0d2618 0%, var(--green-dark) 100%);
      padding: 72px 0; position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1400&q=60') center/cover;
      opacity: .08;
    }
    .cta-inner { position: relative; text-align: center; }
    .cta-inner h2 { font-family: 'Barlow', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
    .cta-inner p { color: rgba(255,255,255,.75); font-size: 17px; max-width: 560px; margin: 0 auto 36px; line-height: 1.65; }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ── CONTACT ── */
    .contact { padding: 96px 0; background: var(--gray); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
    .contact-info { }
    .contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
    .contact-info-item {
      display: flex; gap: 16px; align-items: flex-start;
      background: var(--white); border-radius: var(--radius); padding: 20px;
      box-shadow: var(--shadow);
    }
    .contact-info-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-info-icon svg { width: 22px; height: 22px; color: var(--green); }
    .contact-info-item h4 { font-weight: 700; font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
    .contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--dark); font-weight: 600; }
    .contact-form-wrap {
      background: var(--white); border-radius: 20px; padding: 40px;
      box-shadow: var(--shadow-lg);
    }
    .contact-form-wrap h3 { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1.5rem; margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-group label { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; }
    .form-group input, .form-group textarea, .form-group select {
      padding: 13px 16px; border-radius: 10px; border: 1.5px solid #dde4df;
      font-family: 'Inter', sans-serif; font-size: 14.5px; color: var(--dark);
      background: var(--gray); outline: none; transition: border-color .2s, background .2s;
      width: 100%;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--green); background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

    /* ── FOOTER ── */
    footer { background: var(--black); color: rgba(255,255,255,.7); padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand .logo-text strong { color: var(--white); }
    .footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 24px; }
    .footer-social {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
      transition: background .2s; color: rgba(255,255,255,.7);
    }
    .footer-social:hover { background: var(--green); color: var(--white); }
    .footer-social svg { width: 16px; height: 16px; }
    .footer-col h4 { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 14px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; transition: color .18s; }
    .footer-links a:hover { color: var(--green); }
    .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
    .footer-contact-item svg { width: 16px; height: 16px; color: var(--green); margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item span { font-size: 14px; line-height: 1.5; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 20px 0; display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px;
    }
    .footer-bottom a { color: var(--green); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .topbar .container { justify-content: center; text-align: center; }
      .topbar-right { display: none; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
      .mvw-grid { grid-template-columns: 1fr; }
      .about-imgs { display: none; }
      .why-visual { height: 280px; }
      .about-values { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .badge-float { display: none; }
      .hero-stats { gap: 24px; }
    }
    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .trust-bar .container { flex-direction: column; gap: 12px; }
      .trust-divider { display: none; }
    }

    /* ── SCROLL ANIMATIONS ── */
    .fade-up {
      opacity: 0; transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-up.visible { opacity: 1; transform: none; }

    /* ── STARS ── */
    .stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
