:root {
    --green-dark:   #16401f;
    --green-brand:  #1c5228;
    --green-mid:    #236b33;
    --green-accent: #2e8b3e;
    --lime:         #7ed321;
    --lime-bright:  #a8e63d;
    --lime-pale:    #d4f5a0;
    --gray-dark:    #3d3d3d;
    --gray-mid:     #555;
    --gray-light:   #888;
    --off-white:    #f8f9f6;
    --white:        #ffffff;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  
  body {
    background: var(--off-white);
    color: var(--gray-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
  }
  
  /* NAV */
  nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
    height: 72px;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  }
  
  .nav-logo img { height: 84px; display: block; }
  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a {
    color: var(--gray-mid);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green-brand); }
  .nav-links a.active { color: var(--green-brand); }
  .nav-cta {
    background: var(--lime) !important;
    color: var(--green-dark) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 4px;
  }
  .nav-cta:hover { background: var(--lime-bright) !important; }
  
  /* PAGE HERO */
  .page-hero {
    min-height: 52vh;
    background: var(--green-brand);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-top: 72px;
    overflow: hidden;
  }
  
  .page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(aboutus.png);
   background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(126,211,33,0.07) 0%, transparent 70%),
      linear-gradient(135deg, var(--green-dark) 0%, var(--green-brand) 60%, var(--green-mid) 100%);
    z-index: 0;
  }
  
  /* decorative grid lines */
  .page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  
  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 5rem 5rem;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
  }
  
  .page-hero-left { max-width: 600px; }
  
  .page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(126,211,33,0.15);
    border: 1px solid rgba(126,211,33,0.4);
    color: var(--lime);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    width: fit-content;
  }
  
  .page-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--lime);
    border-radius: 50%;
  }
  
  h1 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
  }
  
  h1 em { font-style: normal; color: var(--lime); }
  
  .page-hero-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 480px;
    font-weight: 400;
  }
  
  .page-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-shrink: 0;
  }
  
  .hero-stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(126,211,33,0.2);
    border-radius: 8px;
    padding: 1.2rem 1.8rem;
    min-width: 200px;
    text-align: center;
  }
  
  .hero-stat-num {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--lime);
    line-height: 1;
    display: block;
  }
  
  .hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
    display: block;
    font-weight: 500;
  }
  
  /* TICKER */
  .ticker-wrap {
    background: var(--lime);
    overflow: hidden;
    padding: 0.65rem 0;
    white-space: nowrap;
  }
  .ticker-inner { display: inline-flex; animation: ticker 32s linear infinite; }
  .ticker-item {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--green-dark);
    padding: 0 2.2rem;
    text-transform: uppercase;
  }
  .ticker-sep { color: var(--green-brand); margin: 0 0.3rem; }
  @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  
  /* SECTIONS */
  section { padding: 7rem 5rem; }
  
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 0.8rem;
  }
  .section-tag::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--lime);
    border-radius: 2px;
  }
  
  h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
  }
  
  /* ABOUT INTRO */
  .about-intro { background: var(--white); }
  
  .about-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
  }
  
  .about-intro-text p {
    font-size: 0.92rem;
    color: var(--gray-mid);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-weight: 400;
  }
  
  .about-intro-text p:last-child { margin-bottom: 0; }
  
  .about-intro-text strong { color: var(--green-brand); font-weight: 600; }
  
  .about-visual {
    position: relative;
  }
  
  .about-visual-card {
    background: var(--green-brand);
    border-radius: 16px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .about-visual-card::before {
    content: '23';
    position: absolute;
    right: -1.5rem;
    bottom: -2rem;
    font-size: 11rem;
    font-weight: 900;
    color: rgba(126,211,33,0.08);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
  }
  
  .avc-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.6rem;
    display: block;
  }
  
  .avc-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  
  .avc-items { display: flex; flex-direction: column; gap: 1rem; }
  
  .avc-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
  }
  
  .avc-dot {
    width: 6px; height: 6px;
    background: var(--lime);
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  /* EXPERTISE */
  .expertise-section { background: var(--off-white); }
  
  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .expertise-card {
    background: var(--white);
    border: 1px solid #e0eeda;
    border-radius: 10px;
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: default;
  }
  
  .expertise-card:hover {
    box-shadow: 0 8px 32px rgba(28,82,40,0.1);
    transform: translateY(-3px);
  }
  
  .expertise-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-accent), var(--lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  
  .expertise-card:hover::after { transform: scaleX(1); }
  
  .ec-icon {
    width: 44px; height: 44px;
    background: #f0f7ec;
    border: 1.5px solid #d0e8c4;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    transition: background 0.2s, border-color 0.2s;
  }
  
  .expertise-card:hover .ec-icon {
    background: var(--lime);
    border-color: var(--lime);
  }
  
  .expertise-card h3 {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .expertise-card p {
    font-size: 0.78rem;
    color: var(--gray-light);
    line-height: 1.7;
    font-weight: 400;
  }
  
  /* CAR IMPORT SECTION */
  .car-import-section { background: var(--green-brand); }
  .car-import-section .section-tag { color: var(--lime-pale); }
  .car-import-section h2 { color: var(--white); }
  
  .car-import-lead {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    line-height: 1.8;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
  }
  
  .car-import-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  
  .import-list { display: flex; flex-direction: column; gap: 0; }
  
  .import-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .import-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
  
  .import-num {
    width: 32px; height: 32px;
    border-radius: 4px;
    background: rgba(126,211,33,0.15);
    border: 1px solid rgba(126,211,33,0.3);
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--lime);
    flex-shrink: 0;
    letter-spacing: 0.05em;
  }
  
  .import-text {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    padding-top: 0.35rem;
    font-weight: 400;
  }
  
  .import-highlight {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(126,211,33,0.2);
    border-radius: 12px;
    padding: 2.5rem;
  }
  
  .ih-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .ih-title::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--lime);
    border-radius: 2px;
  }
  
  .ih-items { display: flex; flex-direction: column; gap: 1rem; }
  
  .ih-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.82);
    font-weight: 400;
  }
  
  .ih-check {
    width: 20px; height: 20px;
    background: rgba(126,211,33,0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    color: var(--lime);
    flex-shrink: 0;
    font-weight: 700;
  }
  
  /* WHY US */
  .why-section { background: var(--white); }
  
  .why-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 7rem;
    align-items: center;
    margin-top: 1rem;
  }
  
  .why-intro p {
    font-size: 0.92rem;
    color: var(--gray-mid);
    line-height: 1.85;
    margin-top: 1rem;
    font-weight: 400;
  }
  
  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .why-card {
    background: var(--off-white);
    border: 1px solid #e0eeda;
    border-radius: 10px;
    padding: 1.8rem;
    transition: background 0.2s;
  }
  .why-card:hover { background: #eef8e8; }
  
  .wc-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    display: block;
  }
  
  .why-card h3 {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }
  
  .why-card p {
    font-size: 0.76rem;
    color: var(--gray-light);
    line-height: 1.7;
    font-weight: 400;
  }
  
  /* APPROACH SECTION */
  .approach-section { background: var(--off-white); }
  
  .approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 1rem;
  }
  
  .approach-text p {
    font-size: 0.92rem;
    color: var(--gray-mid);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-weight: 400;
  }
  
  .approach-quote {
    background: var(--green-brand);
    border-radius: 12px;
    padding: 3rem;
    color: var(--white);
    position: relative;
  }
  
  .approach-quote::before {
    content: '"';
    position: absolute;
    top: 1rem; left: 2rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(126,211,33,0.2);
    line-height: 1;
    font-family: Georgia, serif;
  }
  
  .quote-text {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .quote-attr {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--lime);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  /* CTA BANNER */
  .cta-banner {
    background: var(--green-dark);
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  
  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(126,211,33,0.07) 0%, transparent 70%);
  }
  
  .cta-banner-text { position: relative; z-index: 1; }
  
  .cta-banner-text h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  
  .cta-banner-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
  }
  
  .cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  
  .btn-lime {
    display: inline-block;
    background: var(--lime);
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    letter-spacing: 0.03em;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-lime:hover { background: var(--lime-bright); transform: translateY(-2px); }
  
  .btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1.5px solid rgba(255,255,255,0.2);
    padding: 0.9rem 1.6rem;
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost-dark:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
  
  /* FOOTER */
  footer {
    background: var(--green-dark);
    border-top: 1px solid rgba(126,211,33,0.12);
    padding: 2.5rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .footer-logo img { height: 86px; }
  
  .footer-links { display: flex; gap: 1.8rem; list-style: none; }
  .footer-links a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--lime); }
  
  .footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    font-weight: 500;
  }
  
  /* ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  
  /* RESPONSIVE */
  @media (max-width: 960px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    section, .cta-banner { padding: 5rem 1.5rem; }
    .page-hero-content { flex-direction: column; align-items: flex-start; padding: 4rem 1.5rem; }
    .page-hero-stats { flex-direction: row; flex-wrap: wrap; }
    .hero-stat-card { min-width: 140px; }
    .about-intro-layout,
    .car-import-layout,
    .why-layout,
    .approach-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .expertise-grid { grid-template-columns: 1fr; }
    .why-cards { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; align-items: flex-start; }
    footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  }
