  /* ============ Home page hero ============ */
  .hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
  }

  /* Photo (default) hero, abstract garden bg + dark left gradient */
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(95deg, rgba(8,30,55,0.92) 0%, rgba(8,30,55,0.7) 45%, rgba(8,30,55,0.4) 100%);
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 200px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27,58,45,0.85);
    color: rgba(255,255,255,0.95);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    align-self: center;
    margin-bottom: 28px;
  }
  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(76,175,80,0.3);
  }
  .hero h1 {
    font-size: clamp(44px, 6.5vw, 84px);
    max-width: 14ch;
    margin: 0 auto 24px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--green);
  }
  .hero-sub {
    font-size: clamp(18px, 1.6vw, 22px);
    color: rgba(255,255,255,0.82);
    max-width: 50ch;
    margin: 0 auto 40px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

  .hero-stats {
    position: absolute;
    left: 24px; right: 24px; bottom: 32px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container);
    margin: 0 auto;
  }
  .hero-stats > div {
    padding: 24px 28px;
    border-right: 1px solid rgba(255,255,255,0.1);
    min-width: 0;
  }
  .hero-stats > div:last-child { border-right: 0; }
  .hero-stat-num {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.05;
    overflow-wrap: break-word;
  }
  .hero-stats > div {
    animation: statPop 0.6s ease both;
  }
  .hero-stats > div:nth-child(1) { animation-delay: 0s; }
  .hero-stats > div:nth-child(2) { animation-delay: 0.08s; }
  .hero-stats > div:nth-child(3) { animation-delay: 0.16s; }
  .hero-stats > div:nth-child(4) { animation-delay: 0.24s; }
  @keyframes statPop {
    from { opacity: 0; transform: translateY(14px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .hero-stat-num em {
    font-style: normal;
    color: #ffffff;
    font-weight: 700;
  }
  .hero-stat-lbl {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.01em;
  }
  @media (max-width: 760px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stats > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 16px; }
    .hero-stats > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .hero-stats > div:nth-last-child(-n+2) { border-bottom: 0; }
    .hero-stat-num { font-size: clamp(22px, 6vw, 30px); }
    .hero-inner { padding-bottom: 300px; }
  }
  @media (max-width: 400px) {
    .hero-stats > div { padding: 16px 10px; }
    .hero-stat-num { font-size: clamp(18px, 6.5vw, 24px); }
    .hero-stat-lbl { font-size: 11.5px; }
    .hero-inner { padding-bottom: 320px; }
  }

  /* ============ Brands row ============ */
  .brands {
    padding: 56px 0;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .brands-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
  }
  .brand-mark {
    color: #888;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.04em;
    transition: color var(--t);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
  }
  .brand-mark:hover { color: var(--green); }
  .brand-mark .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: currentColor;
  }

  /* ============ Why cards ============ */
  .why-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    border-left: 4px solid var(--green);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), opacity 0.6s ease;
  }
  .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .why-card .icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--green-50);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .why-card h3 { font-size: 22px; margin-bottom: 12px; }
  .why-card p { color: var(--muted); font-size: 16px; }
  @media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }

  /* ============ Services teaser (dark) ============ */
  .svc-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .svc-card {
    display: block;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    transition: background var(--t), border-color var(--t), transform var(--t), opacity 0.6s ease;
  }
  .svc-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: #4CAF50;
    transform: translateY(-3px);
  }
  .svc-card .icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: #4CAF50;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .svc-card h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
  .svc-card p { color: rgba(255,255,255,0.65); font-size: 15px; }
  .svc-card .more {
    margin-top: 20px;
    color: #FFC107;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--t);
  }
  .svc-card .more::after { content: '→'; transition: transform var(--t); }
  .svc-card:hover .more::after { transform: translateX(4px); }
  .svc-cta {
    margin-top: 56px;
    text-align: center;
  }
  .svc-cta a {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1.5px solid #4CAF50;
    padding-bottom: 4px;
    transition: border-color var(--t), color var(--t);
  }
  .svc-cta a:hover { color: #4CAF50; border-color: #4CAF50; }
  @media (max-width: 880px) { .svc-grid { grid-template-columns: 1fr; } }

  /* ============ Process steps ============ */
  .process {
    margin-top: 56px;
    display: flex;
  }
  .pstep {
    flex: 1;
    padding: 0 20px;
    position: relative;
    text-align: center;
  }
  .pstep::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 0; right: 0;
    height: 2px;
    background: #E5E1D8;
    z-index: 1;
  }
  .pstep:first-child::before { left: 50%; }
  .pstep:last-child::before { right: 50%; }
  .pstep-marker {
    position: relative;
    z-index: 2;
    width: 56px; height: 56px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #E8F5E9;
    color: #1565C0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
  }
  .pstep h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0D2B4D;
  }
  .pstep p { color: var(--muted); font-size: 15px; line-height: 1.6; }
  @media (max-width: 880px) {
    .process { flex-direction: column; gap: 32px; }
    .pstep { padding: 0; }
    .pstep::before { display: none; }
  }

  /* ============ About teaser ============ */
  .about-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    aspect-ratio: 1/1;
  }
  .about-text h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 20px; }
  .about-text p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
  .about-text .link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 600;
    margin-top: 8px;
    transition: gap var(--t);
  }
  .about-text .link::after { content: '→'; transition: transform var(--t); }
  .about-text .link:hover::after { transform: translateX(4px); }
  @media (max-width: 880px) {
    .about-split { grid-template-columns: 1fr; gap: 40px; }
  }

  /* Staggered reveal */
  .why-grid > .why-card:nth-child(2) { transition-delay: 0.1s; }
  .why-grid > .why-card:nth-child(3) { transition-delay: 0.2s; }
  .svc-grid > .svc-card:nth-child(2) { transition-delay: 0.1s; }
  .svc-grid > .svc-card:nth-child(3) { transition-delay: 0.2s; }
  .process > .pstep:nth-child(2) { transition-delay: 0.1s; }
  .process > .pstep:nth-child(3) { transition-delay: 0.2s; }
  .process > .pstep:nth-child(4) { transition-delay: 0.3s; }
