/* ============================================================
   CIDO ÇIĞKÖFTE — Modern Site CSS  (Inter + Fraunces)
   Theme: Deep Green × Warm Cream × Burnt Orange accents
============================================================ */
:root {
  --g900: #0a2318;
  --g800: #163d2a;
  --g700: #1e5438;
  --g600: #2d6a4f;
  --g500: #40916c;
  --g400: #52b788;
  --g200: #b7e4c7;
  --g100: #d8f3dc;
  --g50:  #f0faf4;
  --cream:#f7f9f4;
  --white:#ffffff;
  --o500: #e07a5f;
  --o400: #e8956e;
  --o100: #fdf0eb;
  --txt:  #0f1f16;
  --txt2: #3a5244;
  --txt3: #6b8f72;
  --bdr:  #dce8df;
  --sh1: 0 1px 3px rgba(10,35,24,.06), 0 4px 12px rgba(10,35,24,.06);
  --sh2: 0 4px 16px rgba(10,35,24,.10), 0 12px 40px rgba(10,35,24,.08);
  --sh3: 0 8px 32px rgba(10,35,24,.14), 0 24px 64px rgba(10,35,24,.10);
  --r:   18px;
  --rs:  10px;
  --ease: cubic-bezier(.4,0,.2,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:'Inter',system-ui,sans-serif;background:var(--cream);color:var(--txt);line-height:1.65;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}
.container{max-width:1160px;margin:0 auto;padding:0 24px}
/* ══════════════════════════════════════════════════════
   PAGE TRANSITIONS & ANIMATIONS
   Corporate-grade: subtle, smooth, purposeful
══════════════════════════════════════════════════════ */

/* Page load — fade in body */
body { opacity: 0; }
body.page-loaded { opacity: 1; transition: opacity .45s ease; }

/* Hero entrance — staggered fade-up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-badge      { animation: fadeUp .55s .05s both; }
.hero-content h1 { animation: fadeUp .65s .18s both; }
.hero-content p  { animation: fadeUp .65s .32s both; }
.hero-cta        { animation: fadeUp .60s .46s both; }
.hero-stats      { animation: fadeUp .60s .60s both; }
.hero-scroll-hint{ animation: fadeIn  .8s .90s both; }

/* Scroll reveal — enhanced (replaces simple fade-in) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.215,.61,.355,1),
              transform .65s cubic-bezier(.215,.61,.355,1);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section heading reveal — slide from left */
.section-head[data-reveal] { transform: translateY(20px); }

/* Stagger siblings inside grids */
.products-grid  .product-card[data-reveal],
.features-grid  .feature-card[data-reveal],
.testi-grid     .testi-card[data-reveal] {
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

/* About grid: left side slides from left, right from right */
.about-visual[data-reveal] { transform: translateX(-28px); }
.about-text[data-reveal]   { transform: translateX(28px); }

/* Apply grid */
.apply-info[data-reveal]  { transform: translateX(-20px); }
.apply-form[data-reveal]  { transform: translateX(20px); }

/* Navbar transition on scroll — already handled in JS */

/* Button micro-interaction */
.btn { transform: translateY(0); }
.btn:active { transform: translateY(1px) scale(.985); transition-duration: .08s; }

/* Card hover lift — smooth */
.product-card, .feature-card, .testi-card {
  transition: transform .3s cubic-bezier(.215,.61,.355,1),
              box-shadow .3s ease,
              border-color .3s ease;
}
.product-card.has-gallery:hover,
.feature-card:hover,
.testi-card:hover {
  transform: translateY(-7px);
}

/* Progress bar on page load */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g400), var(--o500));
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}

/* Smooth section link active highlight in nav */
.nav-links a { position: relative; }
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--o500);
  border-radius: 2px;
  animation: fadeIn .25s ease;
}

/* Counter number animation — prevent layout shift */
.stat-num { display: block; min-width: 3ch; }

/* Investment strip number fade-in */
.inv-val { transition: opacity .3s; }

/* ─────────────────── */
.section{padding:100px 0}
.section-tinted{background:var(--white)}

/* Flash banner */
.flash-banner{position:fixed;top:0;left:0;right:0;z-index:2000;padding:14px 24px;font-weight:600;font-size:.9rem;display:flex;align-items:center;justify-content:space-between;gap:16px}
.flash-success{background:#d1fae5;color:#065f46}
.flash-error{background:#fee2e2;color:#991b1b}
.flash-banner button{background:none;border:none;cursor:pointer;font-size:1rem;opacity:.7;line-height:1}

/* ── Typography ── */
h1,h2,h3,h4{font-family:'Fraunces','Georgia',serif;line-height:1.15;letter-spacing:-.02em}
h1{font-size:clamp(2.6rem,5.5vw,4.4rem);font-weight:800;color:var(--white)}
h2{font-size:clamp(2rem,4vw,3rem);font-weight:700;color:var(--g800)}
h3{font-size:1.25rem;font-weight:700;color:var(--g800);margin-bottom:8px}
.chip{display:inline-flex;align-items:center;gap:6px;background:var(--g100);color:var(--g600);font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;padding:5px 14px;border-radius:50px;margin-bottom:14px}

/* ── Buttons ── */
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;border-radius:50px;font-weight:600;font-size:.9rem;cursor:pointer;border:2px solid transparent;transition:all .25s var(--ease);font-family:inherit}
.btn-primary{background:var(--o500);color:var(--white);border-color:var(--o500)}
.btn-primary:hover{background:#c9644a;border-color:#c9644a;transform:translateY(-2px);box-shadow:0 6px 20px rgba(224,122,95,.4)}
.btn-ghost{background:transparent;color:var(--white);border-color:rgba(255,255,255,.4)}
.btn-ghost:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.7)}
.btn-ghost span{transition:transform .2s}
.btn-ghost:hover span{transform:translateX(4px)}
.btn-full{width:100%;justify-content:center}
.btn-nav{background:var(--o500);color:var(--white)!important;padding:9px 20px;border-radius:50px;font-weight:700;font-size:.85rem;transition:all .25s var(--ease)}
.btn-nav:hover{background:#c9644a;transform:translateY(-1px)}

/* ── Section Head ── */
.section-head{text-align:center;max-width:600px;margin:0 auto 64px}
.section-head h2{margin-bottom:12px}
.section-head p{color:var(--txt3);font-size:1.05rem}

/* ────────────────────────────────────
   NAVBAR
──────────────────────────────────── */
.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;padding:20px 0;transition:all .35s var(--ease)}
.navbar.scrolled{background:rgba(255,255,255,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);box-shadow:0 1px 0 var(--bdr);padding:12px 0}
.navbar.scrolled .logo-text,.navbar.scrolled .nav-links a{color:var(--txt)}
.nav-inner{display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;align-items:center;gap:10px;font-family:'Fraunces',serif;font-size:1.3rem;font-weight:700}
.logo-dot{width:10px;height:10px;background:var(--o500);border-radius:50%;flex-shrink:0}
.logo-text{color:var(--white);transition:color .35s var(--ease)}
.footer-logo{display:flex;align-items:center;gap:10px;font-family:'Fraunces',serif;font-size:1.2rem;font-weight:700;color:var(--white);margin-bottom:12px}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{color:rgba(255,255,255,.85);font-weight:500;font-size:.88rem;padding:7px 13px;border-radius:8px;transition:all .2s var(--ease)}
.nav-links a:hover{color:var(--white);background:rgba(255,255,255,.12)}
.navbar.scrolled .nav-links a:hover{background:var(--g100);color:var(--g700)}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:5px}
.hamburger span{display:block;width:22px;height:2px;background:var(--white);border-radius:2px;transition:.25s var(--ease)}
.navbar.scrolled .hamburger span{background:var(--txt)}

/* ────────────────────────────────────
   HERO
──────────────────────────────────── */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden;background:linear-gradient(135deg,var(--g900) 0%,var(--g700) 45%,var(--g600) 100%)}
/* Decorative shapes */
.hero-shapes{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.shape{position:absolute;border-radius:50%;filter:blur(60px);opacity:.35}
.shape-1{width:500px;height:500px;background:var(--g400);right:-100px;top:-100px}
.shape-2{width:350px;height:350px;background:var(--o500);left:-80px;bottom:-80px;opacity:.2}
.shape-3{width:250px;height:250px;background:var(--g200);right:25%;bottom:10%;opacity:.15}

.hero-content{position:relative;z-index:1;padding-top:110px;padding-bottom:90px;max-width:720px}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.9);padding:7px 16px;border-radius:50px;font-size:.8rem;font-weight:600;letter-spacing:.03em;margin-bottom:24px;backdrop-filter:blur(8px)}
.badge-dot{width:7px;height:7px;background:#52b788;border-radius:50%;animation:pulse 2s ease-in-out infinite}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(82,183,136,.5)}50%{box-shadow:0 0 0 6px rgba(82,183,136,0)}}
.hero-content h1{margin-bottom:20px}
.hero-content p{color:rgba(255,255,255,.78);font-size:1.1rem;max-width:520px;margin-bottom:36px;font-weight:300;line-height:1.7}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:60px}
.hero-stats{display:flex;align-items:center;gap:40px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:var(--r);padding:22px 32px;width:fit-content;backdrop-filter:blur(10px)}
.stat{display:flex;flex-direction:column;align-items:center;gap:2px}
.stat-num{font-family:'Fraunces',serif;font-size:2rem;font-weight:800;color:var(--white);line-height:1}
.stat-label{font-size:.75rem;color:rgba(255,255,255,.6);font-weight:500;letter-spacing:.04em}
.stat-sep{width:1px;height:48px;background:rgba(255,255,255,.15)}
.hero-scroll-hint{position:absolute;bottom:36px;left:50%;transform:translateX(-50%);z-index:1;display:flex;flex-direction:column;align-items:center;gap:8px;color:rgba(255,255,255,.5);font-size:.75rem;letter-spacing:.08em;text-transform:uppercase}
.scroll-line{width:1px;height:40px;background:linear-gradient(to bottom,rgba(255,255,255,.5),transparent);animation:scrollAnim 1.6s ease-in-out infinite}
@keyframes scrollAnim{0%{opacity:1;transform:scaleY(1) translateY(0)}100%{opacity:0;transform:scaleY(.5) translateY(10px)}}

/* ────────────────────────────────────
   ABOUT
──────────────────────────────────── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.about-visual{position:relative}
.about-card-bg{position:absolute;inset:0;background:var(--g100);border-radius:40px 120px 40px 120px;transform:rotate(-3deg)}
.about-img-box{position:relative;background:linear-gradient(135deg,var(--g100),var(--g200));border-radius:40px 120px 40px 120px;aspect-ratio:4/5;display:flex;align-items:center;justify-content:center;overflow:hidden;box-shadow:var(--sh3)}
.about-emoji-big{font-size:9rem;filter:drop-shadow(0 8px 24px rgba(0,0,0,.12))}
.about-year-badge{position:absolute;bottom:-12px;right:24px;background:var(--o500);color:var(--white);padding:14px 20px;border-radius:var(--r);text-align:center;box-shadow:var(--sh2)}
.about-year-badge strong{display:block;font-family:'Fraunces',serif;font-size:2rem;font-weight:800;line-height:1}
.about-year-badge small{font-size:.75rem;opacity:.85;font-weight:600;letter-spacing:.06em}
.about-floating-card{position:absolute;top:24px;left:-24px;background:var(--white);border-radius:var(--r);padding:14px 18px;display:flex;align-items:center;gap:12px;box-shadow:var(--sh2)}
.about-floating-card span{font-size:1.5rem}
.about-floating-card strong{display:block;font-size:.9rem;font-weight:700;color:var(--g800)}
.about-floating-card small{font-size:.75rem;color:var(--txt3)}
.about-text .chip{margin-bottom:16px}
.about-text h2{margin-bottom:16px}
.about-text p{color:var(--txt2);margin-bottom:14px;line-height:1.75}
.check-list{display:flex;flex-direction:column;gap:10px;margin:24px 0 32px}
.check-list li{display:flex;align-items:center;gap:10px;font-weight:500;font-size:.92rem}
.check-list li span{width:22px;height:22px;background:var(--g100);color:var(--g500);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:800;flex-shrink:0}

/* ────────────────────────────────────
   PRODUCTS
──────────────────────────────────── */
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.product-card{background:var(--cream);border:1.5px solid var(--bdr);border-radius:var(--r);overflow:hidden;position:relative;transition:transform .3s var(--ease),box-shadow .3s var(--ease),border-color .3s var(--ease)}
.product-card:hover{transform:translateY(-8px);box-shadow:var(--sh3);border-color:var(--g400)}
.product-card.featured{background:var(--white);border-color:var(--g500);box-shadow:var(--sh2)}
.product-ribbon{position:absolute;top:14px;right:-8px;background:var(--o500);color:var(--white);font-size:.7rem;font-weight:800;padding:4px 16px 4px 10px;border-radius:4px 0 0 4px;letter-spacing:.04em}
.product-ribbon::after{content:'';position:absolute;right:0;bottom:-6px;border-left:8px solid #c9644a;border-bottom:6px solid transparent}
/* Product media */
.product-media{overflow:hidden;border-radius:var(--r) var(--r) 0 0;background:linear-gradient(to bottom,var(--g50),transparent)}
.product-img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;transition:transform .45s var(--ease)}
.product-card.has-gallery:hover .product-img{transform:scale(1.05)}
.product-emoji-wrap{padding:28px 28px 0}
.product-emoji{font-size:3.5rem;display:block;filter:drop-shadow(0 4px 12px rgba(0,0,0,.1))}
/* Hover hint: ONLY for cards that have a gallery */
.product-hover-hint{display:none}
.product-card.has-gallery .product-hover-hint{display:flex}
.product-card.has-gallery{cursor:pointer}
.product-card:not(.has-gallery){cursor:default}
/* Count pill: only for gallery cards */
.img-count-pill{display:none}
.product-card.has-gallery .img-count-pill{display:flex}
.product-body{padding:16px 24px 24px}
.product-tag{font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--g500);display:block;margin-bottom:6px}
.product-body p,.product-body .product-desc{color:var(--txt2);font-size:.88rem;margin-bottom:14px;line-height:1.6}
.product-desc p{margin:0 0 8px}
.product-desc p:last-child{margin-bottom:0}
.product-desc ul,.product-desc ol{margin:0 0 8px;padding-left:1.2em}
.product-desc ul:last-child,.product-desc ol:last-child{margin-bottom:0}
.product-footer{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap}
.product-sizes{font-size:.78rem;color:var(--txt3);font-weight:500}
.badge{padding:3px 10px;border-radius:50px;font-size:.72rem;font-weight:700;white-space:nowrap}
.badge-hot{background:#fee2e2;color:#b91c1c}
.badge-mild{background:#fef9c3;color:#92400e}
.badge-green{background:var(--g100);color:var(--g600)}
.badge-orange{background:var(--o100);color:var(--o500)}
.badge-blue{background:#dbeafe;color:#1d4ed8}
.badge-purple{background:#ede9fe;color:#6d28d9}

/* ────────────────────────────────────
   FRANCHISE
──────────────────────────────────── */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:48px}
.feature-card{background:var(--white);border:1.5px solid var(--bdr);border-radius:var(--r);padding:32px 28px;transition:.3s var(--ease)}
.feature-card:hover{transform:translateY(-4px);box-shadow:var(--sh2);border-color:var(--g400)}
.feature-icon-wrap{font-size:2rem;margin-bottom:16px;display:block}
.feature-card p{color:var(--txt2);font-size:.88rem;line-height:1.65}
.investment-strip{display:flex;align-items:center;justify-content:space-around;flex-wrap:wrap;gap:20px;background:linear-gradient(135deg,var(--g800),var(--g600));border-radius:var(--r);padding:40px}
.inv-item{text-align:center}
.inv-val{display:block;font-family:'Fraunces',serif;font-size:1.6rem;font-weight:800;color:var(--white);margin-bottom:4px}
.inv-lbl{font-size:.78rem;color:rgba(255,255,255,.65);font-weight:600;letter-spacing:.06em;text-transform:uppercase}
.inv-sep{width:1px;height:56px;background:rgba(255,255,255,.18)}

/* ────────────────────────────────────
   APPLY FORM
──────────────────────────────────── */
.apply-grid{display:grid;grid-template-columns:1fr 1.25fr;gap:80px;align-items:start}
.apply-info .chip{margin-bottom:16px}
.apply-info h2{margin-bottom:16px}
.apply-info>p{color:var(--txt2);margin-bottom:36px;line-height:1.7}
.apply-steps{counter-reset:none;display:flex;flex-direction:column;gap:22px}
.apply-steps li{display:flex;gap:16px;align-items:flex-start}
.step-num{width:34px;height:34px;background:var(--g600);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.85rem;flex-shrink:0;margin-top:2px}
.apply-steps strong{display:block;font-weight:700;font-size:.95rem}
.apply-steps span{color:var(--txt3);font-size:.85rem}
.apply-form{background:var(--white);border-radius:24px;padding:40px;box-shadow:var(--sh3);border:1.5px solid var(--bdr)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.form-field label{font-size:.82rem;font-weight:600;color:var(--txt)}
.form-field input,.form-field select,.form-field textarea{width:100%;padding:11px 14px;border:1.5px solid var(--bdr);border-radius:var(--rs);font-family:inherit;font-size:.9rem;color:var(--txt);background:var(--cream);transition:border-color .2s,box-shadow .2s;outline:none}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--g400);box-shadow:0 0 0 3px rgba(82,183,136,.15);background:var(--white)}
.form-field textarea{resize:vertical;min-height:80px}
.form-field select{-webkit-appearance:none;cursor:pointer}
.radio-row{display:flex;gap:20px;margin-top:4px}
.radio-opt{display:flex;align-items:center;gap:7px;font-size:.9rem;font-weight:500;cursor:pointer}
.radio-opt input{accent-color:var(--g600);width:15px;height:15px}
.checkbox-wrap{display:flex;align-items:flex-start;gap:10px;font-size:.82rem;color:var(--txt2);cursor:pointer;line-height:1.5}
.checkbox-wrap input{accent-color:var(--g600);width:15px;height:15px;flex-shrink:0;margin-top:2px}
.link{color:var(--g600);text-decoration:underline}

/* ────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────── */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.testi-card{background:var(--white);border:1.5px solid var(--bdr);border-radius:var(--r);padding:32px;transition:.3s var(--ease)}
.testi-card:hover{transform:translateY(-4px);box-shadow:var(--sh2)}
.testi-stars{color:#f59e0b;font-size:1rem;margin-bottom:14px;letter-spacing:2px}
.testi-card>p{color:var(--txt2);font-style:italic;margin-bottom:24px;font-size:.92rem;line-height:1.7}
.testi-author{display:flex;align-items:center;gap:12px}
.testi-av{width:42px;height:42px;background:var(--g100);color:var(--g700);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.8rem;flex-shrink:0}
.testi-author strong{display:block;font-size:.9rem;font-weight:700}
.testi-author small{color:var(--txt3);font-size:.78rem}

/* ────────────────────────────────────
   CONTACT
──────────────────────────────────── */
.contact-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:80px;align-items:start}
.contact-info .chip{margin-bottom:16px}
.contact-info h2{margin-bottom:14px}
.contact-info>p{color:var(--txt2);margin-bottom:30px;line-height:1.7}
.contact-list{display:flex;flex-direction:column;gap:18px;margin-bottom:28px}
.contact-list li{display:flex;align-items:flex-start;gap:14px}
.contact-list li>span{width:38px;height:38px;background:var(--g100);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0}
.contact-list strong{display:block;font-size:.78rem;font-weight:700;color:var(--txt);margin-bottom:2px;text-transform:uppercase;letter-spacing:.06em}
.contact-list span,.contact-list a{color:var(--txt2);font-size:.9rem}
.contact-list a:hover{color:var(--g600)}
.socials{display:flex;gap:8px;flex-wrap:wrap}
.social-btn{padding:7px 16px;border:1.5px solid var(--bdr);border-radius:50px;font-size:.8rem;font-weight:600;color:var(--txt2);transition:.2s var(--ease)}
.social-btn:hover{border-color:var(--g500);color:var(--g600);background:var(--g100)}
.map-box{background:var(--g50);border-radius:24px;aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;border:2px dashed var(--g200)}
.map-inner{text-align:center;color:var(--txt3)}
.map-inner span{font-size:3rem;display:block;margin-bottom:10px}
.map-inner p{font-weight:600;color:var(--txt2)}
.map-inner small{font-size:.78rem}

/* ────────────────────────────────────
   FOOTER
──────────────────────────────────── */
.footer{background:var(--g900);color:rgba(255,255,255,.75);padding:64px 0 0}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:48px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-brand p{font-size:.85rem;color:rgba(255,255,255,.55);line-height:1.65;max-width:240px;margin-top:6px}
.footer h4{font-family:'Inter',sans-serif;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.4);margin-bottom:16px}
.footer ul{display:flex;flex-direction:column;gap:10px}
.footer ul a{font-size:.88rem;color:rgba(255,255,255,.65);transition:color .2s}
.footer ul a:hover{color:var(--g400)}
.footer>div p,.footer>div a{font-size:.88rem;color:rgba(255,255,255,.65);margin-bottom:8px}
.footer>div a:hover{color:var(--g400)}
.footer-bar{padding:18px 0}
.footer-bar-inner{display:flex;justify-content:space-between;align-items:center;font-size:.8rem;color:rgba(255,255,255,.4)}
.admin-link{color:rgba(255,255,255,.25);transition:color .2s}
.admin-link:hover{color:rgba(255,255,255,.5)}

/* ── Back to top ── */
.back-top{position:fixed;bottom:28px;right:28px;width:44px;height:44px;background:var(--g600);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:700;box-shadow:var(--sh2);opacity:0;pointer-events:none;transition:.3s var(--ease);z-index:990}
.back-top.show{opacity:1;pointer-events:auto}
.back-top:hover{background:var(--g500);transform:translateY(-3px)}

/* ── Reveal animation ── */
[data-reveal]{opacity:0;transform:translateY(32px);transition:opacity .65s var(--ease),transform .65s var(--ease)}
[data-reveal].visible{opacity:1;transform:none}

/* ── Apply form validation states ───────────────────────────── */
.form-field input.f-invalid,
.form-field select.f-invalid,
.form-field textarea.f-invalid {
  border-color: #e74c3c!important;
  box-shadow: 0 0 0 3px rgba(231,76,60,.12)!important;
}
.form-field input.f-valid,
.form-field select.f-valid,
.form-field textarea.f-valid {
  border-color: var(--g400)!important;
}
.form-field-err {
  display: none;
  color: #e74c3c;
  font-size: .75rem;
  font-weight: 600;
  margin-top: 4px;
}

/* ── SVG Icon helper ─────────────────────────────────────────── */
.ico{display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;line-height:1}
.ico svg{width:1em;height:1em}
.ico-logo svg{width:22px;height:22px;color:var(--g200)}
.ico-footer-leaf svg{width:20px;height:20px;color:var(--g400)}
.ico-cert svg{width:22px;height:22px;color:var(--g500)}
.ico-feature svg{width:28px;height:28px;color:var(--g600)}
.ico-map svg{width:48px;height:48px;color:var(--g500);margin-bottom:12px}
.ico-star svg{width:18px;height:18px;color:#f59e0b;fill:#f59e0b}
.testi-stars{display:flex;gap:2px;margin-bottom:14px}
.check-list .ico svg{width:14px;height:14px;color:var(--g500);flex-shrink:0}

/* About illustration */
.about-illustration{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.about-illustration svg{width:75%;height:75%}

/* Feature icon wrap */
.feature-icon-wrap{width:52px;height:52px;background:var(--g100);border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}

/* Contact icon sizes */
.contact-icon .ico svg{width:18px;height:18px}
.social-btn .ico{margin-right:4px}
.social-btn .ico svg{width:16px;height:16px}

/* Product card improvements */
.product-placeholder{width:100%;aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;background:var(--g50)}
.product-placeholder img{width:70%;height:70%;object-fit:contain;opacity:.7}
.product-media{position:relative;overflow:hidden;border-radius:var(--r) var(--r) 0 0}
.img-count-pill{position:absolute;top:10px;right:10px;background:rgba(0,0,0,.55);color:#fff;font-size:.72rem;font-weight:700;padding:3px 9px;border-radius:50px;display:flex;align-items:center;gap:4px;backdrop-filter:blur(4px)}
.img-count-pill .ico svg{width:12px;height:12px}
.product-hover-hint{position:absolute;inset:0;background:rgba(10,35,24,.45);color:#fff;display:flex;align-items:center;justify-content:center;gap:6px;font-weight:600;font-size:.85rem;opacity:0;transition:.25s var(--ease);cursor:pointer}
.product-card:hover .product-hover-hint,.product-card:focus .product-hover-hint{opacity:1}
.product-hover-hint .ico svg{width:18px;height:18px}
.product-card{cursor:pointer}

/* CAPTCHA */
.captcha-row{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.captcha-img{border:1.5px solid var(--bdr);border-radius:var(--rs);height:52px;background:var(--white)}
.captcha-refresh-btn{background:var(--g100);border:1.5px solid var(--bdr);color:var(--g600);border-radius:var(--rs);width:38px;height:38px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.2s;flex-shrink:0}
.captcha-refresh-btn:hover{background:var(--g200);border-color:var(--g400)}
.captcha-refresh-btn .ico svg{width:16px;height:16px}
.form-field .ico svg{width:14px;height:14px;vertical-align:middle;margin-right:4px;color:var(--g500)}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox-overlay{display:none;position:fixed;inset:0;z-index:2000;background:rgba(5,15,8,.92);flex-direction:column;align-items:center;justify-content:center;padding:20px;backdrop-filter:blur(8px)}
.lightbox-overlay.open{display:flex}
.lb-close{position:absolute;top:16px;right:20px;background:rgba(255,255,255,.12);border:none;color:#fff;width:40px;height:40px;border-radius:50%;cursor:pointer;font-size:1.2rem;display:flex;align-items:center;justify-content:center;transition:.2s;z-index:10}
.lb-close:hover{background:rgba(255,255,255,.25)}
.lb-content{display:flex;align-items:center;gap:16px;max-width:100%;flex:1;min-height:0}
.lb-main{position:relative;flex:1;display:flex;align-items:center;justify-content:center;max-height:70vh}
.lb-image{max-width:100%;max-height:70vh;object-fit:contain;border-radius:10px;display:block;transition:opacity .2s}
.lb-loader{position:absolute;inset:0;display:none;align-items:center;justify-content:center}
.lb-loader.show{display:flex}
.lb-nav{background:rgba(255,255,255,.12);border:none;color:#fff;width:48px;height:48px;border-radius:50%;cursor:pointer;font-size:1.8rem;display:flex;align-items:center;justify-content:center;transition:.2s;flex-shrink:0}
.lb-nav:hover:not(:disabled){background:rgba(255,255,255,.28)}
.lb-nav:disabled{opacity:.25;cursor:default}
.lb-info{text-align:center;color:#fff;padding:8px 0;min-height:50px}
.lb-title{font-family:'Fraunces',serif;font-size:1.1rem;font-weight:700;margin-bottom:4px}
.lb-meta{font-size:.82rem;color:rgba(255,255,255,.65);display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.lb-sizes{background:rgba(255,255,255,.12);padding:2px 10px;border-radius:50px}
.lb-thumbs{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;padding:8px 0;max-width:600px}
.lb-thumb{width:56px;height:56px;object-fit:cover;border-radius:6px;cursor:pointer;border:2px solid rgba(255,255,255,.2);transition:.15s;opacity:.65}
.lb-thumb:hover{opacity:1}
.lb-thumb.active{border-color:var(--g400);opacity:1}
.lb-counter{font-size:.75rem;color:rgba(255,255,255,.45);margin-top:4px}

/* ────────────────────────────────────
   RESPONSIVE
──────────────────────────────────── */
@media(max-width:1024px){
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .testi-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
}
@media(max-width:768px){
  .section{padding:64px 0}
  .hamburger{display:flex}
  .nav-links{display:none;position:fixed;inset:0;background:var(--g800);padding:90px 28px 40px;flex-direction:column;gap:4px;z-index:998;overflow-y:auto;align-items:flex-start}
  .nav-links.open{display:flex}
  .nav-links a{font-size:1.2rem;padding:11px 14px;width:100%;color:rgba(255,255,255,.9)!important}
  .btn-nav{margin-top:12px;display:inline-flex!important}
  .hero-content{padding-top:120px}
  .hero-stats{flex-wrap:wrap;gap:20px;padding:20px 24px}
  .stat-sep{display:none}
  .about-grid{grid-template-columns:1fr;gap:48px}
  .about-visual{order:-1}
  .about-img-box{aspect-ratio:16/9;border-radius:24px}
  .about-card-bg{display:none}
  .about-floating-card{top:12px;left:12px}
  .apply-grid{grid-template-columns:1fr;gap:40px}
  .contact-grid{grid-template-columns:1fr;gap:40px}
  .investment-strip{flex-direction:column;gap:20px}
  .inv-sep{width:50px;height:1px}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .footer-bar-inner{flex-direction:column;gap:8px;text-align:center}
}
@media(max-width:560px){
  .products-grid{grid-template-columns:1fr}
  .features-grid{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .hero-cta{flex-direction:column;align-items:flex-start}
  .apply-form{padding:28px 18px}
}
