: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; }
  
  /* HERO */

  
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://static.super.website/fs/super-website/userFiles/cargologistics/images/r256-chatgpt-image-oct-26-2025-015347-pm-17614802647723.webp?v=1761480317');
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.38) saturate(0.9);
    z-index: 0;
  }
  
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(22,64,31,0.92) 0%, rgba(22,64,31,0.6) 55%, rgba(22,64,31,0.15) 100%);
  }
  
  .hero-left {
    position: relative;
    z-index: 2;
    padding: 6rem 5rem;
    max-width: 680px;
  }
  
  .hero-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: 2rem;
    width: fit-content;
  }
  
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--lime);
    border-radius: 50%;
    animation: blink 2s ease infinite;
  }
  
  @keyframes blink { 0%,100%{opacity:1}50%{opacity:0.2} }
  
  h1 {
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  
  h1 em { font-style: normal; color: var(--lime); }
  
  .hero-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    max-width: 440px;
    line-height: 1.8;
    margin-bottom: 0.6rem;
    font-weight: 400;
  }
  
  .hero-promise {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--lime);
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
  }
  
  .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-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1.5px solid rgba(255,255,255,0.25);
    padding: 0.9rem 1.6rem;
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost-white:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
  
  .hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
  
  .stat-num {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--lime);
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    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 28s 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;
  }
  
  /* HOW IT WORKS */
  .how-section { background: var(--white); }
  
  .how-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 7rem;
    align-items: start;
  }
  
  .how-intro p { font-size: 0.92rem; color: var(--gray-mid); line-height: 1.8; margin-top: 1rem; font-weight: 400; }
  
  .steps { display: flex; flex-direction: column; }
  
  .step {
    display: flex;
    gap: 1.8rem;
    padding: 2rem 0;
    border-bottom: 1px solid #eef2ec;
    transition: padding-left 0.25s;
    cursor: default;
  }
  .step:first-child { border-top: 1px solid #eef2ec; }
  .step:hover { padding-left: 0.6rem; }
  
  .step-num {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 4px;
    background: #f0f7ec;
    border: 2px solid #d0e8c8;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-accent);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .step:hover .step-num { background: var(--lime); color: var(--green-dark); border-color: var(--lime); }
  
  .step-body h3 { font-size: 0.88rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.35rem; letter-spacing: 0.01em; }
  .step-body p { font-size: 0.83rem; color: var(--gray-light); line-height: 1.7; font-weight: 400; }
  
  /* SERVICES */
  .services-section { background: var(--green-brand); }
  .services-section .section-tag { color: var(--lime-pale); }
  .services-section h2 { color: var(--white); }
  
  .services-lead {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    margin-top: 0.5rem;
    font-weight: 400;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .service-card {
    background: rgba(22,64,31,0.6);
    padding: 2rem 1.6rem;
    transition: background 0.2s;
    position: relative;
    cursor: default;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transition: transform 0.25s;
    transform-origin: left;
  }
  .service-card:hover { background: rgba(22,64,31,0.9); }
  .service-card:hover::after { transform: scaleX(1); }
  
  .service-icon {
    width: 42px; height: 42px;
    background: rgba(126,211,33,0.15);
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    line-height: 1.45;
    letter-spacing: 0.01em;
  }
  
  /* PRICING */
  .pricing-section { background: var(--off-white); }
  
  .pricing-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }
  
  .pricing-table {
    border: 1px solid #d8ecd0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    background: var(--white);
  }
  
  .pricing-head {
    background: var(--green-brand);
    padding: 1rem 1.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .pricing-head::before {
    content: '';
    width: 3px; height: 14px;
    background: var(--lime);
    border-radius: 2px;
  }
  
  .pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.8rem;
    border-bottom: 1px solid #eef6ea;
    gap: 1rem;
    transition: background 0.15s;
  }
  .pricing-row:last-child { border-bottom: none; }
  .pricing-row:hover { background: #f4faf0; }
  
  .pr-label { font-size: 0.82rem; color: var(--gray-mid); flex: 1; font-weight: 400; }
  .pr-val { font-size: 0.82rem; font-weight: 600; color: var(--green-brand); white-space: nowrap; }
  
  .pricing-aside { display: flex; flex-direction: column; gap: 1.2rem; }
  
  .cta-card {
    background: var(--green-brand);
    border-radius: 8px;
    padding: 2.2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .cta-card::before {
    content: '»';
    position: absolute;
    right: -1rem; bottom: -2rem;
    font-size: 8rem;
    font-weight: 600;
    color: rgba(126,211,33,0.1);
    line-height: 1;
    pointer-events: none;
  }
  
  .cta-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: var(--white);
    letter-spacing: 0.01em;
  }
  
  .cta-card p { font-size: 0.83rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 400; }
  
  .btn-lime-sm {
    display: inline-block;
    background: var(--lime);
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 0.7rem 1.4rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-lime-sm:hover { background: var(--lime-bright); }
  
  .link-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid #d0e8c4;
    border-radius: 4px;
    padding: 0.75rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    background: var(--white);
    transition: border-color 0.2s, background 0.2s;
    letter-spacing: 0.04em;
  }
  .link-pill:hover { border-color: var(--green-accent); background: #f0f7ec; }
  
  /* TIPS */
  .tips-section { background: var(--white); }
  
  .tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .tip-card {
    background: var(--off-white);
    border: 1px solid #e0eeda;
    border-radius: 8px;
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: box-shadow 0.2s;
  }
  .tip-card:hover { box-shadow: 0 8px 32px rgba(28,82,40,0.1); }
  .tip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-accent), var(--lime));
  }
  
  .tip-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: var(--lime);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 1rem;
  }
  
  .tip-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
  
  .tip-card p { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.75; font-weight: 400; }
  
  /* SLIDER CALCULATOR */
  .slider-calc-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
    margin-top: 0;
  }
  
  .slider-side { display: flex; flex-direction: column; gap: 2.5rem; }
  
  .slider-car-price-display {
    background: var(--white);
    border: 1.5px solid #d8ecd0;
    border-radius: 12px;
    padding: 1.8rem 2rem;
  }
  
  .calc-input {
    border: 1px solid #d8ecd0;
    border-radius: 8px;
    outline: none;
    padding: 1.1rem 1rem; /* was 0.72rem — increased for more height */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-dark);
    width: 100%;
    background: transparent;
  }

  .scp-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.8rem;
  }
  
  .scp-value-wrap {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  
  .scp-value {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  
  .scp-or {
    font-size: 0.72rem;
    color: var(--gray-light);
    font-weight: 400;
  }
  
  .scp-manual {
    border: 1.5px solid #d8ecd0;
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-dark);
    width: 130px;
    outline: none;
    transition: border-color 0.2s;
  }
  .scp-manual:focus { border-color: var(--green-accent); }
  
  .slider-track-wrap { display: flex; flex-direction: column; gap: 0.8rem; }
  
  .car-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--lime) 0%, var(--lime) 9%, #d8ecd0 9%, #d8ecd0 100%);
    outline: none;
    cursor: pointer;
    transition: background 0.1s;
  }
  
  .car-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--green-brand);
    border: 3px solid var(--lime);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(28,82,40,0.25);
    transition: transform 0.15s;
  }
  .car-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
  .car-slider::-moz-range-thumb {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--green-brand);
    border: 3px solid var(--lime);
    cursor: pointer;
  }
  
  .slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--gray-light);
    font-weight: 500;
  }
  
  .slider-toggles { display: flex; flex-direction: column; gap: 0.8rem; }
  
  .slider-toggles-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
  }
  
  .stoggle-row { display: flex; flex-direction: column; gap: 0.7rem; }
  
  .stoggle {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-dark);
    cursor: pointer;
    background: var(--white);
    border: 1.5px solid #d8ecd0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .stoggle:hover { border-color: var(--green-accent); background: #f6fcf3; }
  
  .stoggle input[type="checkbox"] { display: none; }
  
  .stoggle-box {
    width: 18px; height: 18px;
    border: 2px solid #c0d8b8;
    border-radius: 4px;
    background: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
  }
  .stoggle input:checked ~ .stoggle-box,
  .stoggle input:checked + .stoggle-box {
    background: var(--green-accent);
    border-color: var(--green-accent);
  }
  .stoggle input:checked + .stoggle-box::after {
    content: '✓';
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
  }
  
  .stoggle-price {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-mid);
  }
  
  /* Result card */
  .slider-result { position: sticky; top: 90px; }
  
  .sr-inner {
    background: var(--green-brand);
    border-radius: 16px;
    padding: 2rem;
    color: var(--white);
  }
  
  .sr-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.5rem;
  }
  
  .sr-total {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--lime);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
  }
  
  .sr-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  
  .sr-breakdown {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
  }
  
  .sr-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
  }
  .sr-row span:last-child { font-weight: 600; color: rgba(255,255,255,0.9); }
  .sr-tax span:last-child { color: var(--lime-pale); }
  
  .sr-disclaimer {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    font-weight: 400;
    margin-top: 0.5rem;
  }
  
  @media (max-width: 960px) {
    .slider-calc-wrap { grid-template-columns: 1fr; }
    .slider-result { position: static; }
    .scp-value { font-size: 1.8rem; }
  }
  
  
  /* CONTACT */
  .contact-section {
    background: var(--green-dark);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    padding: 7rem 5rem;
    align-items: start;
    position: relative;
    overflow: hidden;
  }
  .contact-section::before {
    content: '»';
    position: absolute;
    left: -3rem; top: 50%;
    transform: translateY(-50%);
    font-size: 35vw;
    font-weight: 600;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    line-height: 1;
  }
  
  .contact-section .section-tag { color: var(--lime); }
  .contact-section h2 { color: var(--white); }
  
  .contact-info > p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 360px;
    font-weight: 400;
  }
  
  .contact-items { display: flex; flex-direction: column; gap: 1rem; }
  
  .contact-item { display: flex; align-items: center; gap: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 400; }
  
  .c-icon {
    width: 38px; height: 38px;
    background: rgba(126,211,33,0.15);
    border: 1px solid rgba(126,211,33,0.3);
    border-radius: 5px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .contact-form { display: flex; flex-direction: column; gap: 1.1rem; position: relative; z-index: 2; }
  
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  
  .fg { display: flex; flex-direction: column; gap: 0.35rem; }
  
  .fg label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }
  
  .fg input, .fg textarea, .fg select {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 5px;
    padding: 0.82rem 1rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    width: 100%;
    appearance: none;
  }
  .fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.3); }
  .fg input:focus, .fg textarea:focus, .fg select:focus {
    border-color: var(--lime);
    background: rgba(126,211,33,0.07);
  }
  .fg textarea { resize: vertical; min-height: 110px; }
  .fg select { cursor: pointer; }
  .fg select option { background: var(--green-dark); color: var(--white); }
  
  .form-submit {
    background: var(--lime);
    color: var(--green-dark);
    border: none;
    padding: 1rem 2.4rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--lime-bright); transform: translateY(-2px); }
  
  /* 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.5s ease, transform 0.5s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  
  /* RESPONSIVE */
  @media (max-width: 960px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    section, .contact-section { padding: 5rem 1.5rem; }
    .hero { grid-template-columns: 1fr; background: var(--green-brand); }
    .hero-right { display: none; }
    .hero-left { padding: 5rem 1.5rem 3rem; }
    .how-layout { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-layout { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .calc-layout { grid-template-columns: 1fr; }
    .calc-results-inner { position: static; }
    .contact-section { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .stat-item { border-right: none; margin-right: 0; padding-right: 0; } }