﻿:root {
    --forest:    #1A3028;
    --forest-md: #244535;
    --forest-lt: #2E5C44;
    --olive:     #5C6B3A;
    --olive-lt:  #7D8F55;
    --gold:      #C8A84B;
    --gold-lt:   #E0C472;
    --cream:     #F7F3EC;
    --parchment: #EEE8DB;
    --white:     #FFFFFF;
    --text-dark: #1A2018;
    --text-mid:  #3B4A38;
    --text-light:#6B7C5E;
    --border:    rgba(200,168,75,0.25);
    --shadow:    0 4px 32px rgba(26,48,40,0.12);
    --shadow-lg: 0 12px 64px rgba(26,48,40,0.18);
    --radius:    16px;
    --radius-sm: 10px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
  }

  h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }

  /* â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 6%; height: 72px;
    background: rgba(26,48,40,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200,168,75,0.2);
    transition: all 0.3s ease;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--forest);
  }
  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--white);
    letter-spacing: 0.04em;
  }
  .nav-logo-text span { color: var(--gold); }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.75); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    padding: 10px 24px; border-radius: 8px;
    background: var(--gold); color: var(--forest);
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    text-decoration: none; transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

  /* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .hero {
    min-height: 100vh;
    background: var(--forest);
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
    padding-top: 72px;
  }

  .hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image:
      radial-gradient(circle at 20% 50%, var(--gold) 0%, transparent 60%),
      radial-gradient(circle at 80% 20%, var(--olive-lt) 0%, transparent 50%);
    pointer-events: none;
  }

  /* Decorative leaf pattern */
  .hero-bg-pattern::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A84B' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 0 80px 10%;
    position: relative; z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--gold);
  }

  .hero h1 {
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 300; color: var(--white);
    line-height: 1.1; margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .hero h1 em { color: var(--gold); font-style: italic; }

  .hero-sub {
    font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.65);
    max-width: 420px; margin-bottom: 44px; line-height: 1.7;
  }

  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 10px;
    background: var(--gold); color: var(--forest);
    font-size: 15px; font-weight: 600;
    text-decoration: none; transition: all 0.25s;
    border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.4); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 10px;
    background: transparent; color: var(--white);
    font-size: 15px; font-weight: 500;
    text-decoration: none; transition: all 0.25s;
    border: 1.5px solid rgba(255,255,255,0.3);
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  .hero-badges {
    display: flex; gap: 20px; flex-wrap: wrap;
  }
  .hero-badge {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 100px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(200,168,75,0.25);
    font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7);
  }
  .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

  /* Hero right: visual area */
  .hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    padding: 80px 10% 80px 4%;
    overflow: hidden;
  }

  .hero-img-frame {
    position: relative; width: 100%; max-width: 480px;
  }

  .hero-img-main {
    width: 100%; aspect-ratio: 3/4; border-radius: 24px;
    overflow: hidden; position: relative;
    background: linear-gradient(160deg, #2E5C44, #1A3028);
    box-shadow: var(--shadow-lg);
  }

  .hero-img-main img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.9) saturate(1.1);
  }

  /* Decorative overlay on hero image */
  .hero-img-main::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,48,40,0.5));
  }

  .hero-img-badge {
    position: absolute; bottom: 28px; left: 28px; right: 28px;
    background: rgba(26,48,40,0.92); backdrop-filter: blur(12px);
    border: 1px solid rgba(200,168,75,0.3);
    border-radius: 14px; padding: 18px 22px;
    display: flex; align-items: center; gap: 16px;
    z-index: 2;
  }
  .hero-img-badge-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
  }
  .hero-img-badge-text { flex: 1; }
  .hero-img-badge-text strong {
    display: block; font-size: 15px; font-weight: 600; color: var(--white);
    font-family: 'Cormorant Garamond', serif;
  }
  .hero-img-badge-text span { font-size: 12px; color: rgba(255,255,255,0.55); }

  .hero-float-card {
    position: absolute; top: 20%; right: -24px;
    background: var(--white); border-radius: 14px;
    padding: 16px 20px; box-shadow: var(--shadow);
    min-width: 160px;
  }
  .hero-float-stat { font-size: 28px; font-weight: 600; color: var(--forest); font-family: 'Cormorant Garamond', serif; }
  .hero-float-label { font-size: 12px; color: var(--text-light); font-weight: 500; }

  /* â”€â”€ SECTION BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  section { padding: 100px 6%; }

  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--olive); margin-bottom: 16px;
  }
  .section-label::before { content: ''; width: 24px; height: 1.5px; background: var(--olive); }

  .section-title {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 300; letter-spacing: -0.01em;
    color: var(--forest);
  }
  .section-title em { color: var(--olive); font-style: italic; }

  /* â”€â”€ INTRO BRAND â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .intro {
    background: var(--white);
  }

  .intro-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
  }

  .intro-content { }

  .intro-content p {
    font-size: 17px; color: var(--text-mid); line-height: 1.8;
    margin-top: 24px; margin-bottom: 36px;
    font-weight: 300;
  }

  .intro-values {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .intro-value {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px; border-radius: var(--radius-sm);
    background: var(--cream);
    border: 1px solid var(--parchment);
  }
  .intro-value-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: linear-gradient(135deg, var(--forest), var(--forest-lt));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .intro-value h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600; color: var(--forest);
    margin-bottom: 2px;
  }
  .intro-value p { font-size: 12px; color: var(--text-light); margin: 0; line-height: 1.5; }

  .intro-visual {
    position: relative;
  }
  .intro-img {
    width: 100%; aspect-ratio: 4/5; border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, #3a6b4e, #1A3028);
  }
  .intro-img img { width: 100%; height: 100%; object-fit: cover; }

  .intro-stat-card {
    position: absolute; bottom: -24px; left: -24px;
    background: var(--forest); border-radius: 16px;
    padding: 24px 28px; box-shadow: var(--shadow-lg);
  }
  .intro-stat-card .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 300; color: var(--gold);
    line-height: 1;
  }
  .intro-stat-card .lbl { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

  /* â”€â”€ PRODUCTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .products { background: var(--cream); }

  .products-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
  .products-header .section-label { justify-content: center; }
  .products-header .section-label::before { display: none; }

  .products-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 20px; max-width: 1300px; margin: 0 auto;
  }

  .product-card {
    background: var(--white);
    border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    cursor: pointer;
  }
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,168,75,0.3);
  }

  .product-card-img {
    width: 100%; aspect-ratio: 1;
    position: relative; overflow: hidden;
  }

  .product-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
  }
  .product-card:hover .product-card-img img { transform: scale(1.06); }

  /* Colored overlays for product images */
  .prod-fresh   .product-card-img { background: linear-gradient(145deg,#2E5C44,#1A3028); }
  .prod-frozen  .product-card-img { background: linear-gradient(145deg,#1E3A5C,#0f2035); }
  .prod-marinated .product-card-img { background: linear-gradient(145deg,#5C3A1A,#3a2010); }
  .prod-rtc     .product-card-img { background: linear-gradient(145deg,#5C4A1A,#3a2e10); }
  .prod-private .product-card-img { background: linear-gradient(145deg,#3A1A5C,#221035); }

  /* SVG tempe illustrations inside cards */
  .prod-icon {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
  }
  .prod-icon .big-icon { font-size: 52px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
  .prod-icon .tag {
    padding: 4px 12px; border-radius: 100px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.85);
  }

  .product-card-body { padding: 20px; }
  .product-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--forest);
    margin-bottom: 8px;
  }
  .product-card-body p {
    font-size: 13px; color: var(--text-light); line-height: 1.5;
  }
  .product-card-body .learn-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 14px; font-size: 12px; font-weight: 600;
    color: var(--olive); letter-spacing: 0.04em; text-transform: uppercase;
    text-decoration: none; transition: gap 0.2s;
  }
  .product-card:hover .learn-more { gap: 10px; }

  /* â”€â”€ WHY CHOOSE US â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .why {
    background: var(--forest);
    position: relative; overflow: hidden;
  }

  .why::before {
    content: '';
    position: absolute; inset: 0; opacity: 0.03;
    background: repeating-linear-gradient(
      -45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%
    );
    background-size: 40px 40px;
  }

  .why-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

  .why-header { margin-bottom: 64px; }
  .why-header .section-label { color: var(--gold); }
  .why-header .section-label::before { background: var(--gold); }
  .why-header .section-title { color: var(--white); }
  .why-header p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 500px; margin-top: 20px; font-weight: 300; }

  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .why-card {
    padding: 36px 32px;
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    transition: all 0.3s ease;
  }
  .why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200,168,75,0.5);
    transform: translateY(-4px);
  }

  .why-card-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(200,168,75,0.25), rgba(200,168,75,0.1));
    border: 1px solid rgba(200,168,75,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
  }

  .why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--white);
    margin-bottom: 12px;
  }
  .why-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

  /* â”€â”€ PROCESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .process { background: var(--parchment); }

  .process-inner { max-width: 1100px; margin: 0 auto; }
  .process-header { text-align: center; max-width: 550px; margin: 0 auto 72px; }
  .process-header .section-label { justify-content: center; }
  .process-header .section-label::before { display: none; }

  .process-timeline { position: relative; }

  /* Connecting line */
  .process-timeline::before {
    content: '';
    position: absolute; top: 52px; left: 52px; right: 52px; height: 2px;
    background: linear-gradient(90deg, var(--forest), var(--olive), var(--forest));
    z-index: 0;
  }

  .process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 20px; position: relative; z-index: 1;
  }

  .process-step { text-align: center; }

  .process-step-num {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--white); border: 3px solid var(--forest);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px; transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(26,48,40,0.15);
    position: relative;
  }

  .process-step:hover .process-step-num {
    background: var(--forest); transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(26,48,40,0.25);
  }

  .process-step-num .step-n {
    position: absolute; top: -8px; right: -8px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--gold); color: var(--forest);
    font-size: 11px; font-weight: 700; font-family: 'DM Sans', sans-serif;
    display: flex; align-items: center; justify-content: center;
  }

  .process-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600; color: var(--forest);
    margin-bottom: 8px;
  }
  .process-step p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

  /* â”€â”€ CERTIFICATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .certs { background: var(--white); }

  .certs-inner { max-width: 1100px; margin: 0 auto; }
  .certs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

  .certs-text h2 { margin-bottom: 20px; }
  .certs-text p { font-size: 16px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 32px; }

  .cert-badges { display: flex; flex-wrap: wrap; gap: 12px; }

  .cert-badge {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; border-radius: 10px;
    background: var(--cream); border: 1.5px solid var(--parchment);
    font-size: 13px; font-weight: 600; color: var(--forest);
    transition: all 0.2s;
  }
  .cert-badge:hover { border-color: var(--gold); background: rgba(200,168,75,0.08); }
  .cert-badge .cert-icon { font-size: 20px; }

  .certs-visual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }

  .cert-trust-card {
    padding: 28px 24px; border-radius: 16px;
    text-align: center; transition: all 0.3s;
  }
  .cert-trust-card:hover { transform: translateY(-4px); }
  .ctc-1 { background: var(--forest); grid-column: span 2; }
  .ctc-2 { background: var(--cream); border: 1px solid var(--parchment); }
  .ctc-3 { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }

  .cert-trust-card .big-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300; line-height: 1;
  }
  .ctc-1 .big-num { color: var(--gold); }
  .ctc-2 .big-num { color: var(--forest); }
  .ctc-3 .big-num { color: var(--forest); }

  .cert-trust-card .card-label { font-size: 13px; margin-top: 6px; }
  .ctc-1 .card-label { color: rgba(255,255,255,0.6); }
  .ctc-2 .card-label { color: var(--text-light); }
  .ctc-3 .card-label { color: rgba(26,48,40,0.7); font-weight: 500; }

  /* â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .testimonials { background: var(--cream); }

  .testi-header { text-align: center; max-width: 550px; margin: 0 auto 64px; }
  .testi-header .section-label { justify-content: center; }
  .testi-header .section-label::before { display: none; }

  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1100px; margin: 0 auto 64px;
  }

  .testi-card {
    background: var(--white); border-radius: 20px;
    padding: 32px; border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

  .testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }

  .testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; font-weight: 400; font-style: italic;
    color: var(--text-dark); line-height: 1.6;
    margin-bottom: 24px;
  }

  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--forest), var(--olive));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .testi-author-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--forest); }
  .testi-author-info span { font-size: 12px; color: var(--text-light); }

  /* Partner logos */
  .partner-strip {
    max-width: 900px; margin: 0 auto;
    padding-top: 48px;
    border-top: 1px solid var(--parchment);
    text-align: center;
  }
  .partner-strip p {
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 32px;
  }
  .partner-logos { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }

  .partner-logo-pill {
    padding: 12px 28px; border-radius: 8px;
    background: var(--white); border: 1px solid var(--parchment);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600; color: var(--text-mid);
    letter-spacing: 0.04em;
    transition: all 0.2s;
  }
  .partner-logo-pill:hover { border-color: var(--gold); color: var(--forest); }

  /* â”€â”€ FINAL CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .final-cta {
    background: var(--forest);
    position: relative; overflow: hidden;
  }

  .final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,168,75,0.12), transparent),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(92,107,58,0.2), transparent);
  }

  .cta-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
    max-width: 1100px; margin: 0 auto;
    position: relative; z-index: 1;
  }

  .cta-content { }
  .cta-content .section-label { color: var(--gold); }
  .cta-content .section-label::before { background: var(--gold); }
  .cta-content h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300; color: var(--white);
    margin-bottom: 20px; line-height: 1.15;
  }
  .cta-content h2 em { color: var(--gold); font-style: italic; }
  .cta-content p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 40px; font-weight: 300; }

  .cta-buttons { display: flex; flex-direction: column; gap: 14px; }

  .btn-cta-main {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; border-radius: 12px;
    background: var(--gold); color: var(--forest);
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: all 0.25s;
  }
  .btn-cta-main:hover { background: var(--gold-lt); transform: translateX(4px); }
  .btn-cta-main .arrow { font-size: 20px; }

  .btn-cta-outline {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; border-radius: 12px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 15px; font-weight: 500;
    text-decoration: none; transition: all 0.25s;
  }
  .btn-cta-outline:hover { border-color: rgba(200,168,75,0.6); color: var(--gold); transform: translateX(4px); }

  /* Inquiry Form */
  .inquiry-form {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(12px);
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: 24px; padding: 40px;
  }
  .inquiry-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 600; color: var(--white);
    margin-bottom: 8px;
  }
  .inquiry-form .form-sub {
    font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 28px;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .form-group label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .form-group input,
  .form-group select {
    padding: 13px 16px; border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 14px; font-family: 'DM Sans', sans-serif;
    outline: none; transition: all 0.2s; -webkit-appearance: none;
  }
  .form-group input::placeholder { color: rgba(255,255,255,0.3); }
  .form-group input:focus,
  .form-group select:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
  .form-group select option { background: var(--forest); }

  .btn-submit {
    width: 100%; padding: 16px; border-radius: 10px;
    background: var(--gold); color: var(--forest);
    font-size: 15px; font-weight: 700; font-family: 'DM Sans', sans-serif;
    border: none; cursor: pointer; transition: all 0.25s;
    margin-top: 8px;
  }
  .btn-submit:hover { background: var(--gold-lt); transform: translateY(-2px); }

  /* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  footer {
    background: #0D1F18;
    padding: 60px 6% 32px;
  }

  .footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; max-width: 1100px; margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .nav-logo { margin-bottom: 16px; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
  .footer-brand .social-links { display: flex; gap: 12px; margin-top: 20px; }
  .social-link {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 16px;
    transition: all 0.2s;
  }
  .social-link:hover { background: rgba(200,168,75,0.2); border-color: rgba(200,168,75,0.4); color: var(--gold); }

  .footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: rgba(255,255,255,0.3);
  }

  /* â”€â”€ SCROLL ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  @media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .process-timeline::before { display: none; }
  }

  @media (max-width: 860px) {
    nav { padding: 0 5%; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { padding: 60px 6% 80px; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-stat-card { position: static; margin-top: 16px; display: inline-block; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .certs-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 540px) {
    section { padding: 72px 5%; }
    .products-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .intro-values { grid-template-columns: 1fr; }
  }
