/* ===== TOKENS ===== */
  :root {
    --g-deep:   #1b5e2e;
    --g-mid:    #2e8b44;
    --g-olive:  #6aaa44;
    --g-lime:   #a8d520;
    --g-pale:   #e8f5e0;
    --white:    #ffffff;
    --off-white:#f7faf4;
    --dark:     #111a10;
    --muted:    #4a6644;
    --border:   rgba(106,170,68,.18);

    --font-head: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease-smooth: cubic-bezier(.25,.46,.45,.94);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);

    /* Original Hero Section tokens */
    --forest: #1a4a1a;
    --olive: #4a6a1a;
    --lime: #8fb800;
    --lime-bright: #a8c53a;
    --cream: #f7f8f2;
    --charcoal: #111811;
    --mid: #2d4f2d;
    --text-muted: #6b7c5a;
    --nav-h: 72px;
  }

  /* ===== RESET ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: var(--font-body); background: var(--off-white); color: var(--dark); overflow-x: hidden; }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--off-white); }
  ::-webkit-scrollbar-thumb { background: var(--g-olive); border-radius: 2px; }

  /* ===== NAV ===== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: background .35s var(--ease-smooth), padding .35s var(--ease-smooth), box-shadow .35s;
  }
  .nav.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    padding: .7rem 2rem;
    box-shadow: 0 2px 24px rgba(27,94,46,.08);
  }
  .nav-logo { height: 54px; transition: height .35s; }
  .nav.scrolled .nav-logo { height: 42px; }

  .nav-links { display: flex; gap: 2.2rem; align-items: center; }
  .nav-links a {
    font-family: var(--font-head); font-size: 1rem; font-weight: 600;
    color: var(--white); letter-spacing: .04em; text-transform: uppercase;
    position: relative; padding-bottom: 2px;
    transition: color .25s;
  }
  .nav.scrolled .nav-links a { color: var(--dark); }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--g-lime); border-radius: 1px;
    transition: width .3s var(--ease-smooth);
  }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--g-lime); color: var(--dark) !important;
    padding: .45rem 1.3rem; border-radius: 100px;
    font-weight: 700 !important; transition: transform .2s var(--ease-spring), box-shadow .2s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(168,213,32,.4); }

  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    padding: 4px; border: none; background: none;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 1px;
    transition: all .3s var(--ease-smooth);
  }
  .nav.scrolled .hamburger span { background: var(--dark); }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav drawer */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(27,94,46,.97);
    flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: var(--font-head); font-size: 2rem; font-weight: 700;
    color: var(--white); letter-spacing: .06em; text-transform: uppercase;
    transition: color .2s;
  }
  .mobile-menu a:hover { color: var(--g-lime); }

  /* ===== HERO ===== */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    background: var(--charcoal);
    overflow: hidden;
    padding-bottom: 100px;
  }
  .hero-canvas {
    position: absolute; inset: 0; z-index: 0;
    pointer-events: none;
  }
  /* Animated orbs */
  .orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.45;
    animation: drift 12s ease-in-out infinite alternate;
  }
  .orb1 { width: 520px; height: 520px; background: radial-gradient(circle, #3a7a1a, #1a4a0a); top: -100px; left: -80px; animation-duration: 14s; }
  .orb2 { width: 380px; height: 380px; background: radial-gradient(circle, #8fb800, #4a6a0a); bottom: -60px; right: -40px; animation-duration: 10s; animation-delay: -4s; }
  .orb3 { width: 260px; height: 260px; background: radial-gradient(circle, #a8c53a, #2d6a2d); top: 40%; left: 50%; animation-duration: 16s; animation-delay: -7s; }
  @keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, -40px) scale(1.08); }
    100% { transform: translate(-20px, 30px) scale(0.94); }
  }

  .hero-inner {
    position: relative; z-index: 2;
    padding: 0 2rem; max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; width: 100%;
    padding-top: var(--nav-h);
  }
  .hero-text { }
  .hero-eyebrow {
    font-family: 'Montserrat', sans-serif; font-size: 0.72rem;
    font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--lime-bright); margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 36px; height: 2px; background: var(--lime-bright);
  }
  .hero-h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 900; line-height: 1.06;
    color: var(--white); margin-bottom: 24px;
  }
  .hero-h1 em { font-style: normal; color: var(--lime-bright); }
  .hero-body {
    font-size: 1.05rem; line-height: 1.75;
    color: rgba(255,255,255,0.72); margin-bottom: 40px;
    max-width: 480px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--lime); color: var(--charcoal);
    padding: 15px 34px; border-radius: 4px; border: none;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--lime-bright); transform: translateY(-2px); }
  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.35); color: var(--white);
    padding: 15px 34px; border-radius: 4px;
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--lime-bright); color: var(--lime-bright); transform: translateY(-2px); }

  .hero-visual {
    display: flex; justify-content: center; align-items: center;
  }
  .hero-logo-wrap {
    width: clamp(220px, 30vw, 360px);
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .hero-logo-wrap::before {
    content: '';
    position: absolute; inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,197,58,0.12), transparent 70%);
    animation: pulse-ring 3s ease-in-out infinite;
  }
  @keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 1; }
  }
  .hero-logo-wrap img {
    width: 100%; height: auto;
    filter: drop-shadow(0 0 40px rgba(143,184,0,0.35));
    animation: float 5s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  /* Stats strip */
  .stats-strip {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 1;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stats-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Montserrat', sans-serif; font-size: 2rem;
    font-weight: 900; color: var(--lime-bright);
  }
  .stat-label {
    font-size: 0.78rem; color: rgba(255,255,255,0.55);
    text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
  }

  /* ===== MARQUEE STRIP ===== */
  .marquee-strip {
    background: var(--g-lime); padding: .75rem 0; overflow: hidden;
    display: flex; gap: 0;
  }
  .marquee-track {
    display: flex; gap: 3rem; align-items: center;
    animation: marquee 22s linear infinite;
    white-space: nowrap; flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .marquee-item {
    font-family: var(--font-head); font-size: .9rem; font-weight: 700;
    color: var(--dark); letter-spacing: .08em; text-transform: uppercase;
    display: flex; align-items: center; gap: .8rem; flex-shrink: 0;
  }
  .marquee-item::after { content: '✦'; font-size: .6rem; opacity: .5; }

  /* ===== SECTION COMMONS ===== */
  .section { padding: 6rem 2rem; }
  .container { max-width: 1200px; margin: 0 auto; }

  .section-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .75rem; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--g-olive); margin-bottom: .8rem;
  }
  .section-tag::before { content: ''; width: 20px; height: 2px; background: var(--g-olive); border-radius: 1px; }

  .section-title {
    font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; color: var(--dark); line-height: 1.1;
    letter-spacing: -.01em;
  }
  .section-title .hl { color: var(--g-mid); }

  .section-sub {
    font-size: 1rem; color: var(--muted); line-height: 1.7;
    max-width: 550px; margin-top: .8rem;
  }

  /* ===== PRODUCTS ===== */
  .products-section { background: var(--white); }

  .products-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    background: var(--off-white); border-radius: 20px;
    border: 1px solid var(--border); overflow: hidden;
    transition: transform .35s var(--ease-spring), box-shadow .35s, border-color .25s;
    cursor: pointer; position: relative;
  }
  .product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(27,94,46,.1); border-color: rgba(106,170,68,.4); }
  .product-card:nth-child(1) { grid-column: 1 / 3; }

  .card-img-wrap { height: 200px; overflow: hidden; background: var(--g-pale); position: relative; }
  .product-card:nth-child(1) .card-img-wrap { height: 260px; }

  .card-img-wrap > img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .45s var(--ease-smooth);
  }
  .product-card:hover .card-img-wrap > img { transform: scale(1.08); }

  .card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(27,94,46,.75) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 1.5rem;
  }
  .product-card:hover .card-overlay { opacity: 1; }
  .card-overlay-cta {
    font-family: var(--font-head); font-size: .9rem; font-weight: 700;
    color: var(--white); letter-spacing: .06em; text-transform: uppercase;
    display: flex; align-items: center; gap: .4rem;
    transform: translateY(8px); transition: transform .3s var(--ease-spring);
  }
  .product-card:hover .card-overlay-cta { transform: translateY(0); }

  .card-body { padding: 1.3rem 1.5rem 1.5rem; }
  .card-label {
    font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--g-olive); margin-bottom: .35rem;
  }
  .card-name {
    font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
    color: var(--dark); line-height: 1.2;
  }
  .card-desc { font-size: .85rem; color: var(--muted); margin-top: .4rem; line-height: 1.6; }

  /* ===== ABOUT ===== */
  .about-section { background: var(--off-white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

  .about-visual { position: relative; }
  .about-card-main {
    background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
    border-radius: 24px; padding: 3rem; color: var(--white);
    position: relative; overflow: hidden;
  }
  .about-card-main::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,.05);
  }
  .about-big-num {
    font-family: var(--font-head); font-size: 5rem; font-weight: 700;
    color: var(--g-lime); line-height: 1;
  }
  .about-big-label { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: .3rem; }

  .about-pill-wrap { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.5rem; }
  .about-pill {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15);
    color: var(--white); padding: .35rem .9rem; border-radius: 100px;
    font-size: .78rem; font-weight: 500;
  }

  .about-card-float {
    margin-top: 1.5rem; padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; gap: 1rem;
  }
  .float-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--g-lime); line-height: 1; }
  .float-num span { color: var(--g-lime); }
  .float-label { font-size: .8rem; color: rgba(255,255,255,.65); font-weight: 500; line-height: 1.4; }

  .about-text { }
  .about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .about-feat {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.1rem 1.3rem; background: var(--white); border-radius: 14px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
  }
  .about-feat:hover { transform: translateX(6px); box-shadow: 0 4px 20px rgba(27,94,46,.06); }
  .feat-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    background: var(--g-pale); display: flex; align-items: center; justify-content: center;
  }
  .feat-icon svg { width: 20px; height: 20px; }
  .feat-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); }
  .feat-desc { font-size: .82rem; color: var(--muted); margin-top: .1rem; line-height: 1.5; }

  /* ===== BRANCHES ===== */
  .branches-section { background: var(--g-deep); padding: 6rem 2rem; }
  .branches-section .section-tag { color: var(--g-lime); }
  .branches-section .section-tag::before { background: var(--g-lime); }
  .branches-section .section-title { color: var(--white); }
  .branches-section .section-sub { color: rgba(255,255,255,.5); }

  .branches-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 3rem; }
  .branch-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px; padding: 1.5rem; text-align: center;
    transition: background .25s, border-color .25s, transform .3s var(--ease-spring);
    cursor: pointer;
  }
  .branch-card:hover { background: rgba(168,213,32,.12); border-color: rgba(168,213,32,.35); transform: translateY(-4px); }
  .branch-img-wrap {
    width: 100%; height: 140px; border-radius: 10px; overflow: hidden;
    margin-bottom: 1rem; background: #ffffff; padding: 12px;
    display: flex; align-items: center; justify-content: center;
  }
  .branch-img-wrap img {
    width: 100%; height: 100%; object-fit: contain;
    transition: transform .4s var(--ease-smooth);
  }
  .branch-card:hover .branch-img-wrap img { transform: scale(1.08); }
  .branch-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--white); }
  .branch-region { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .2rem; letter-spacing: .06em; }

  /* ===== WHY US ===== */
  .why-section { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .why-card {
    padding: 2rem; border-radius: 20px; border: 1px solid var(--border);
    background: var(--off-white); position: relative; overflow: hidden;
    transition: transform .3s var(--ease-spring), box-shadow .3s;
  }
  .why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,94,46,.08); }
  .why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--g-olive), var(--g-lime));
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--ease-smooth);
  }
  .why-card:hover::before { transform: scaleX(1); }
  .why-num {
    font-family: var(--font-head); font-size: 4rem; font-weight: 700;
    color: var(--g-pale); line-height: 1; margin-bottom: .8rem;
    transition: color .25s;
  }
  .why-card:hover .why-num { color: rgba(106,170,68,.2); }
  .why-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--dark); }
  .why-desc { font-size: .85rem; color: var(--muted); margin-top: .5rem; line-height: 1.65; }

  /* ===== CTA BANNER ===== */
  .cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0e3d1c 0%, var(--g-deep) 100%);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: 'SHALIMAR'; position: absolute;
    font-family: var(--font-head); font-size: 18vw; font-weight: 700;
    color: rgba(255,255,255,.025); white-space: nowrap;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none; user-select: none;
    letter-spacing: -.02em;
  }
  .cta-inner { text-align: center; position: relative; z-index: 1; }
  .cta-inner .section-title { color: var(--white); }
  .cta-inner .section-sub { color: rgba(255,255,255,.55); margin: .8rem auto 2rem; text-align: center; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark); color: rgba(255,255,255,.6);
    padding: 4rem 2rem 2rem;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
  .footer-logo { height: 50px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
  .footer-about { font-size: .88rem; line-height: 1.7; max-width: 280px; }
  .footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
  }
  .social-btn:hover { background: var(--g-olive); transform: translateY(-2px); }
  .social-btn svg { width: 16px; height: 16px; fill: white; }

  .footer-col h4 {
    font-family: var(--font-head); font-size: 1rem; font-weight: 700;
    color: var(--white); letter-spacing: .04em; text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
  .footer-col ul li a { font-size: .88rem; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--g-lime); }

  .contact-item { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; font-size: .85rem; }
  .contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; fill: var(--g-olive); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07); margin-top: 3rem; padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    max-width: 1200px; margin-left: auto; margin-right: auto;
    font-size: .8rem;
  }
  .footer-bottom a:hover { color: var(--g-lime); }

  /* ===== REVEAL ANIMATIONS ===== */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s var(--ease-smooth), transform .65s var(--ease-smooth); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card:nth-child(1) { grid-column: 1 / 3; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .branches-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }

    .hero {
      flex-direction: column;
      padding-bottom: 0;
    }
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: calc(var(--nav-h) + 20px); padding-bottom: 40px; }
    .hero-text { order: 2; }
    .hero-visual { order: 1; }
    .hero-eyebrow { justify-content: center; }
    .hero-body { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-logo-wrap { width: 180px; }
    .stats-strip {
      position: relative;
      bottom: auto; left: auto; right: auto;
      width: 100%;
      margin-top: auto;
    }

    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
    .stat-num { font-size: 1.7rem; }

    .products-grid { grid-template-columns: 1fr; }
    .product-card:nth-child(1) { grid-column: 1; }
    .products-header { flex-direction: column; align-items: flex-start; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .branches-grid { grid-template-columns: repeat(2, 1fr); }

    .why-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 480px) {
    .section { padding: 4rem 1.2rem; }
    .branches-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
  }
/* Added Products Background */
.products-section { background-color: var(--g-pale); }
