/* ====== VARIABLES ====== */
:root {
  --green-dark: #1B4332;
  --green-mid:  #2D6A4F;
  --green-light:#52B788;
  --cream:      #F9F9F9;
  --cream-dark: #F0F0F0;
  --charcoal:   #1A1A1A;
  --gray:       #555555;
  --white:      #FFFFFF;
  --font-body:  'Inter', sans-serif;
  --font-disp:  'Roboto', sans-serif;
  --radius:     8px; /* Reduced radius for cleaner look */
  --radius-lg:  16px;
  --pill:       999px;
  --shadow:     0 4px 24px rgba(0,0,0,.05);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.08);
  --ease:       .35s cubic-bezier(.4,0,.2,1);
  --hdr:        80px;
  --max:        1280px;
}

/* ====== RESET ====== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);background:var(--cream);color:var(--charcoal);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;background:none}

/* ====== TYPOGRAPHY ====== */
h1,h2,h3{font-family:var(--font-disp);line-height:1.3}
h1{font-size:3.5rem;font-weight:600;letter-spacing:-0.02em}
h2{font-size:2.5rem;font-weight:600;letter-spacing:-0.01em}
h3{font-size:1.5rem;font-weight:600}
p{color:var(--gray);font-size:1.05rem;line-height:1.8}

/* ====== LAYOUT ====== */
.container{max-width:var(--max);margin:0 auto;padding:0 32px} /* Increased horizontal padding */
.section{padding:140px 0} /* Increased whitespace */
.section-tag{display:inline-block;font-size:.8rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--green-mid);margin-bottom:16px}
.section-title{color:var(--charcoal);margin-bottom:24px}
.section-title.light{color:var(--white)}
.section-sub{color:var(--gray);font-size:1.1rem;max-width:700px;margin:0 auto 64px;text-align:center}
.text-center{text-align:center}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center} /* Increased gaps */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:48px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}

/* ====== BUTTONS ====== */
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;border-radius:var(--pill);font-weight:600;font-size:.9rem;transition:var(--ease);cursor:pointer}
.btn-primary{background:var(--green-dark);color:var(--white)}
.btn-primary:hover{background:var(--green-mid);transform:translateY(-2px);box-shadow:var(--shadow)}
.btn-outline{background:transparent;color:var(--green-dark);border:2px solid var(--green-dark)}
.btn-outline:hover{background:var(--green-dark);color:var(--white)}
.btn-light{background:var(--white);color:var(--green-dark)}
.btn-light:hover{background:var(--cream);transform:translateY(-2px)}
.btn-lg{padding:18px 44px;font-size:1rem}

/* ====== HEADER ====== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--hdr);
  transition: background var(--ease), box-shadow var(--ease);
}

/* Header elements on dark hero (Home default) */
.site-header .nav-link { color: rgba(255, 255, 255, 0.9); border-bottom: 2px solid transparent; }
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--white) !important; background: none; border-bottom-color: var(--white); }
.site-header .site-logo .logo-mark { filter: brightness(0) invert(1); }
.site-header .site-logo .logo-text { color: var(--white); }
.site-header .header-phone { color: rgba(255, 255, 255, 0.8); }
.site-header .hamburger span { background: var(--white); }

/* Header state: Scrolled or Not on Home (Light background) */
body:not([data-page="home"]) .site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
body:not([data-page="home"]) .site-header .nav-link,
.site-header.scrolled .nav-link {
  color: var(--charcoal);
}
body:not([data-page="home"]) .site-header .nav-link:hover,
body:not([data-page="home"]) .site-header .nav-link.active,
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--green-dark) !important;
  background: none;
  border-bottom-color: var(--green-dark);
}
body:not([data-page="home"]) .site-header .site-logo .logo-text,
.site-header.scrolled .site-logo .logo-text {
  color: #000000;
}
body:not([data-page="home"]) .site-header .site-logo .logo-mark,
.site-header.scrolled .site-logo .logo-mark {
  filter: none;
}
body:not([data-page="home"]) .site-header .header-phone,
.site-header.scrolled .header-phone {
  color: var(--green-mid);
}
body:not([data-page="home"]) .site-header .hamburger span,
.site-header.scrolled .hamburger span {
  background: var(--green-dark);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 32px; }
.site-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-disp); text-decoration: none; transition: var(--ease); }
.site-logo .logo-mark { width: auto; height: 72px; }
.site-logo .logo-text { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em; }
.main-nav ul { display: flex; gap: 8px; }
.nav-link { padding: 8px 0; margin: 0 12px; border-radius: 0; font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: var(--ease); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 500; transition: var(--ease); }
.header-phone:hover { color: var(--green-dark) !important; }
.header-cta { padding: 10px 24px; font-size: .85rem; }
.hamburger{display:none;flex-direction:column;gap:5px;width:32px}
.hamburger span{display:block;height:2px;background:var(--green-dark);border-radius:2px;transition:var(--ease)}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.nav-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:999;opacity:0;transition:opacity var(--ease)}
.nav-overlay.visible{opacity:1}

/* ====== HERO ====== */
.hero{min-height:100vh;display:flex;align-items:center;position:relative;background:var(--green-dark);overflow:hidden;padding-top:var(--hdr)}
.hero-bg{position:absolute;inset:0;background:linear-gradient(135deg,#0d2b1e 0%,#1B4332 50%,#2D6A4F 100%)}
.hero-pattern{position:absolute;inset:0;opacity:.04;background-image:radial-gradient(circle,#fff 1px,transparent 1px);background-size:32px 32px}
.hero-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;padding:80px 0}
.hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(82,183,136,.15);border:1px solid rgba(82,183,136,.3);color:var(--green-light);font-size:.8rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;padding:8px 16px;border-radius:var(--pill);margin-bottom:24px}
.hero h1{color:var(--white);margin-bottom:20px}
.hero h1 em{font-style:italic;color:var(--green-light)}
.hero-sub{color:rgba(255,255,255,.7);font-size:1.1rem;margin-bottom:40px;max-width:500px}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap}
.hero-stats{display:flex;gap:32px;margin-top:48px;padding-top:32px;border-top:1px solid rgba(255,255,255,.1)}
.hero-stat-num{font-family:var(--font-disp);font-size:2rem;font-weight:700;color:var(--white)}
.hero-stat-lbl{font-size:.8rem;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.1em}
.hero-img-wrap{position:relative}
.hero-img-wrap img{border-radius:var(--radius-lg);width:100%;aspect-ratio:4/5;object-fit:cover;box-shadow:var(--shadow-lg)}
.hero-img-badge{position:absolute;bottom:32px;left:-24px;background:var(--white);border-radius:var(--radius);padding:16px 20px;box-shadow:var(--shadow-lg);display:flex;align-items:center;gap:12px}
.hero-img-badge .badge-num{font-family:var(--font-disp);font-size:1.5rem;font-weight:700;color:var(--green-dark)}
.hero-img-badge .badge-lbl{font-size:.8rem;color:var(--gray);line-height:1.3}

/* ====== MARQUEE ====== */
.marquee-section{background:var(--green-light);padding:18px 0;overflow:hidden}
.marquee-track{display:flex;gap:0;animation:marquee 25s linear infinite;white-space:nowrap}
.marquee-track:hover{animation-play-state:paused}
.marquee-item{display:inline-flex;align-items:center;gap:16px;padding:0 32px;font-size:.85rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--green-dark)}
.marquee-dot{width:6px;height:6px;border-radius:50%;background:var(--green-dark);opacity:.4}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ====== FEATURES ====== */
.features-section{background:var(--white)}
.feature-card{padding:40px 32px;border-radius:var(--radius-lg);border:1px solid var(--cream-dark);transition:var(--ease);position:relative;overflow:hidden}
.feature-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,var(--green-dark),var(--green-mid));opacity:0;transition:var(--ease)}
.feature-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:transparent}
.feature-card:hover::before{opacity:1}
.feature-card:hover .feature-icon,.feature-card:hover h3,.feature-card:hover p{position:relative;z-index:1;color:var(--white)}
.feature-icon{width:56px;height:56px;border-radius:16px;background:rgba(27,67,50,.08);display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--green-dark);transition:var(--ease)}
.feature-card h3{margin-bottom:8px;transition:var(--ease)}
.feature-card p{font-size:.9rem;transition:var(--ease)}

/* ====== PRODUCTS ====== */
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.product-card{background:var(--white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);transition:var(--ease);group}
.product-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.product-img{aspect-ratio:4/3;overflow:hidden;position:relative}
.product-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.product-card:hover .product-img img{transform:scale(1.08)}
.product-cat{position:absolute;top:16px;left:16px;background:var(--green-dark);color:var(--white);font-size:.7rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;padding:4px 12px;border-radius:var(--pill)}
.product-body{padding:24px}
.product-body h3{margin-bottom:8px;font-size:1.1rem}
.product-body p{font-size:.875rem;margin-bottom:16px}
.product-details{font-size:.78rem;color:var(--green-mid);font-weight:500;border-top:1px solid var(--cream-dark);padding-top:12px;margin-top:12px}

/* ====== ABOUT SECTION ====== */
.about-img-wrap{position:relative}
.about-img-wrap img{border-radius:var(--radius-lg);width:100%;aspect-ratio:3/4;object-fit:cover}
.about-badge{position:absolute;top:24px;right:-20px;background:var(--green-dark);color:var(--white);border-radius:var(--radius);padding:20px;text-align:center}
.about-badge .num{font-family:var(--font-disp);font-size:2.5rem;font-weight:700;line-height:1}
.about-badge .lbl{font-size:.75rem;opacity:.7;margin-top:4px}
.about-text .section-tag{display:block;margin-bottom:12px}
.about-text h2{margin-bottom:20px}
.about-text p{margin-bottom:24px}
.about-checks{display:flex;flex-direction:column;gap:12px;margin-bottom:32px}
.about-check{display:flex;align-items:flex-start;gap:12px;font-size:.9rem}
.check-icon{width:22px;height:22px;border-radius:50%;background:var(--green-dark);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px}
.check-icon svg{color:var(--white)}

/* ====== GALLERY ====== */
.gallery-grid{columns:3;gap:16px}
.gallery-item{break-inside:avoid;margin-bottom:16px;border-radius:var(--radius);overflow:hidden;cursor:pointer;position:relative}
.gallery-item img{width:100%;display:block;transition:transform .5s ease}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-item-overlay{position:absolute;inset:0;background:rgba(27,67,50,.5);display:flex;align-items:center;justify-content:center;opacity:0;transition:var(--ease)}
.gallery-item:hover .gallery-item-overlay{opacity:1}
.gallery-item-overlay span{color:var(--white);font-size:.85rem;font-weight:500}

/* ====== LIGHTBOX ====== */
.lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:9999;align-items:center;justify-content:center}
.lightbox.active{display:flex}
.lightbox img{max-width:90vw;max-height:90vh;border-radius:var(--radius);object-fit:contain}
.lightbox-close{position:absolute;top:24px;right:24px;color:var(--white);font-size:2rem;cursor:pointer;opacity:.7;transition:var(--ease)}
.lightbox-close:hover{opacity:1}

/* ====== CONTACT ====== */
.contact-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:64px;align-items:start}
.contact-info h2{margin-bottom:16px}
.contact-info p{margin-bottom:32px}
.contact-items{display:flex;flex-direction:column;gap:20px}
.contact-item{display:flex;align-items:flex-start;gap:16px}
.contact-item-icon{width:48px;height:48px;border-radius:14px;background:rgba(27,67,50,.08);display:flex;align-items:center;justify-content:center;color:var(--green-dark);flex-shrink:0}
.contact-item-body strong{display:block;font-size:.8rem;text-transform:uppercase;letter-spacing:.08em;color:var(--gray);margin-bottom:4px}
.contact-item-body a,.contact-item-body p{color:var(--charcoal);font-weight:500;font-size:.95rem}
.contact-form-card{background:var(--white);border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.form-group label{font-size:.82rem;font-weight:600;color:var(--charcoal);text-transform:uppercase;letter-spacing:.06em}
.form-group input,.form-group textarea,.form-group select{padding:14px 16px;border:1.5px solid var(--cream-dark);border-radius:var(--radius);font-family:var(--font-body);font-size:.9rem;background:var(--cream);color:var(--charcoal);transition:border-color var(--ease),box-shadow var(--ease);outline:none;width:100%}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--green-dark);box-shadow:0 0 0 3px rgba(27,67,50,.1)}
.form-group textarea{resize:vertical;min-height:120px}
.form-success{display:none;text-align:center;padding:40px 20px}
.form-success .success-icon{width:64px;height:64px;border-radius:50%;background:rgba(82,183,136,.15);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:1.5rem;color:var(--green-dark)}

/* ====== MAP ====== */
.map-wrap{border-radius:var(--radius-lg);overflow:hidden;height:400px;box-shadow:var(--shadow)}
.map-wrap iframe{width:100%;height:100%;border:0}

/* ====== PAGE HERO ====== */
.page-hero{background:var(--green-dark);padding:120px 0 80px;text-align:center;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,#0d2b1e,#2D6A4F);opacity:.6}
.page-hero .container{position:relative;z-index:1}
.page-hero p{color:rgba(255,255,255,.7);max-width:560px;margin:12px auto 0;font-size:1.05rem}

/* ====== CTA BANNER ====== */
.cta-banner{background:var(--green-dark);padding:80px 0;text-align:center}
.cta-banner h2{color:var(--white);margin-bottom:12px}
.cta-banner p{color:rgba(255,255,255,.65);max-width:540px;margin:0 auto 36px}

/* ====== POLICIES ====== */
.policy-card{background:var(--white);border-radius:var(--radius-lg);padding:36px;border:1px solid var(--cream-dark);transition:var(--ease)}
.policy-card:hover{border-color:var(--green-light);box-shadow:var(--shadow)}
.policy-icon{width:56px;height:56px;border-radius:16px;background:rgba(27,67,50,.08);display:flex;align-items:center;justify-content:center;color:var(--green-dark);margin-bottom:20px}

/* ====== GLOBAL CTA ====== */
.global-cta-section { background: var(--cream); padding: 120px 0; border-top: 1px solid var(--cream-dark); text-align: center; }
.global-cta-content h2 { color: var(--charcoal); margin-bottom: 40px; font-size: 2.5rem; max-width: 800px; margin-left: auto; margin-right: auto; font-family: var(--font-disp); }

/* ====== FOOTER ====== */
.site-footer{background:var(--charcoal);color:rgba(255,255,255,.7);position:relative;overflow:hidden}
.footer-top{padding:80px 0 64px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:48px}
.footer-brand .site-logo{color:var(--white);margin-bottom:20px}
.footer-desc{font-size:.875rem;line-height:1.7;margin-bottom:24px}
.footer-social{display:flex;gap:12px}
.footer-social a{width:40px;height:40px;border-radius:10px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.6);transition:var(--ease)}
.footer-social a:hover{background:var(--green-mid);color:var(--white)}
.footer-col h4{color:var(--white);font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;margin-bottom:20px}
.footer-col ul{display:flex;flex-direction:column;gap:10px}
.footer-col ul a{font-size:.875rem;transition:color var(--ease)}
.footer-col ul a:hover{color:var(--green-light)}
.footer-contact-list{display:flex;flex-direction:column;gap:14px}
.footer-contact-list li{display:flex;align-items:flex-start;gap:10px;font-size:.875rem}
.footer-contact-list a:hover{color:var(--green-light)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:24px 0}
.footer-bottom-inner{display:flex;justify-content:space-between;align-items:center;font-size:.8rem}
.footer-watermark{position:absolute;bottom:-20px;right:-20px;font-family:var(--font-disp);font-size:10rem;font-weight:700;color:rgba(255,255,255,.02);pointer-events:none;user-select:none;line-height:1}

/* ====== BACK TO TOP ====== */
.back-to-top{position:fixed;bottom:32px;right:32px;z-index:900;width:48px;height:48px;border-radius:50%;background:var(--green-dark);color:var(--white);display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow);opacity:0;transform:translateY(16px);transition:var(--ease);pointer-events:none}
.back-to-top.visible{opacity:1;transform:none;pointer-events:auto}
.back-to-top:hover{background:var(--green-mid);transform:translateY(-3px)}

/* ====== ANIMATIONS ====== */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}

/* ====== ALERTS ====== */
.alert{padding:14px 20px;border-radius:var(--radius);margin-bottom:16px;font-size:.875rem}
.alert-success{background:#d1fae5;color:#065f46;border:1px solid #6ee7b7}
.alert-error{background:#fee2e2;color:#991b1b;border:1px solid #fca5a5}

/* ====== RESPONSIVE ====== */
@media(max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .hero-inner{gap:40px}
  .products-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  :root{--hdr:68px}
  .section{padding:64px 0}
  .main-nav{position:fixed;top:0;right:-100%;width:280px;height:100vh;background:var(--white);z-index:1000;transition:right var(--ease);padding:100px 32px 40px;box-shadow:var(--shadow-lg)}
  .main-nav.open{right:0}
  .main-nav ul{flex-direction:column;gap:4px}
  .nav-link{display:block;padding:12px 16px;border-radius:var(--radius)}
  .hamburger{display:flex}
  .nav-overlay{display:block}
  .header-phone{display:none}
  .hero-inner,.grid-2{grid-template-columns:1fr}
  .hero-img-wrap{display:none}
  .hero-stats{flex-wrap:wrap;gap:20px}
  .products-grid,.grid-3{grid-template-columns:1fr}
  .gallery-grid{columns:2}
  .contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .footer-watermark{font-size:5rem}
  h1{font-size:2rem}
}
@media(max-width:480px){
  .gallery-grid{columns:1}
  .hero-btns{flex-direction:column}
  .btn{width:100%;justify-content:center}
}
/* ====== HERO VIDEO ====== */
.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 43, 30, 0.85) 0%, rgba(27, 67, 50, 0.75) 100%);
}
.hero-tag-new {
  display: inline-block;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--pill);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ====== ACCORDION ====== */
.faq-accordion-wrapper {
  max-width: 800px;
  margin: 48px auto 0;
}
.accordion-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--ease);
}
.accordion-item:hover {
  box-shadow: var(--shadow);
}
.accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  text-align: left;
}
.accordion-header svg {
  transition: transform 0.3s ease;
}
.accordion-header[aria-expanded="true"] {
  color: var(--green-dark);
}
.accordion-header[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--cream);
}
.accordion-content p {
  padding: 20px 24px;
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

/* ====== SPECS TABLE ====== */
.specs-table-wrapper {
  margin-top: 32px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid var(--cream-dark);
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table td {
  padding: 16px 8px;
  font-size: 0.95rem;
}
.specs-table td:first-child {
  width: 40%;
  color: var(--green-dark);
}
.img-premium {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ====== SECTOR CARDS ====== */
.sector-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.sector-img-container {
  height: 240px;
  overflow: hidden;
}
.sector-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sector-card:hover .sector-img {
  transform: scale(1.05);
}
.sector-body {
  padding: 24px;
}
.sector-body h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
}

/* ====== PREMIUM FORM ====== */
.premium-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-group input, .form-group textarea {
  border-color: var(--cream-dark);
  background: var(--white);
}
.btn-success {
  background: #25D366;
  color: var(--white);
}
.btn-success:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

@media(max-width: 768px) {
  .hero-video-container {
    display: none;
  }
  .hero-video-overlay {
    display: none;
  }
}

/* ====== HERO SLIDER ====== */
.hero-slider-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide-video, .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 43, 30, 0.85) 0%, rgba(27, 67, 50, 0.6) 100%);
  z-index: 3;
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 4;
  max-width: 650px;
  color: var(--white);
}
.slide-content h1, .slide-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
}
.slide-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--ease);
}
.slider-arrow:hover {
  background: var(--green-dark);
  color: var(--white);
}
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--ease);
}
.dot.active, .dot:hover {
  background: var(--white);
  width: 24px;
  border-radius: var(--pill);
}

/* Intro Stats Box */
.stats-grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-bottom: 4px solid var(--green-light);
}
.stat-box-num {
  font-family: var(--font-disp);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-dark);
}
.stat-box-lbl {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

@media(max-width: 768px) {
  .hero-slider-section {
    height: auto;
    min-height: 400px;
  }
  .slide-content {
    left: 5%;
    padding: 0 20px;
  }
  .slider-arrow {
    display: none;
  }
  .stats-grid-box {
    grid-template-columns: 1fr;
  }
}

/* ====== STATS GRID NEW ====== */
.stats-grid-new { margin-top: 48px; }
.stat-card-new { background: var(--cream); padding: 48px; border-radius: var(--radius-lg); text-align: center; border: 1px solid var(--cream-dark); transition: var(--ease); }
.stat-card-new:hover { border-color: var(--green-light); transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-num-new { font-family: var(--font-disp); font-size: 3.5rem; font-weight: 600; color: var(--green-dark); margin-bottom: 16px; }
.stat-lbl-new { font-size: 1.1rem; color: var(--gray); font-weight: 500; }

/* ====== MİSYON & VİZYON CARDS ====== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch; /* eşit yükseklik için kritik */
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  transition: var(--ease);
}
.mv-card:hover { box-shadow: var(--shadow); border-color: var(--green-light); transform: translateY(-4px); }
.mv-icon {
  width: 56px;
  height: 56px;
  background: rgba(27,67,50,.08);
  color: var(--green-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.mv-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.mv-divider { width: 40px; height: 3px; background: var(--green-mid); border-radius: 2px; margin-bottom: 20px; }
.mv-card p { color: var(--gray); line-height: 1.85; flex: 1; }

/* ====== POLİTİKA KARTI ====== */
.policy-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.policy-card-modern {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--ease);
}
.policy-card-modern:hover { background: var(--white); box-shadow: var(--shadow); border-color: transparent; transform: translateY(-4px); }
.policy-card-modern-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.policy-card-modern h3 { font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin: 0; }
.policy-card-modern p { color: var(--gray); line-height: 1.8; font-size: 1rem; margin: 0; }

/* ====== RESPONSIVE ====== */
@media(max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
  .policy-cards-grid { grid-template-columns: 1fr; }
}

/* ====== ÜRÜN HERO GÖRSELİ ====== */
.product-hero-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}
.product-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  opacity: 0.9;
  transition: opacity var(--ease);
}
.product-hero-img-wrap:hover .product-hero-img { opacity: 1; }
.product-hero-badge {
  position: absolute;
  bottom: 32px;
  right: 40px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 18px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.product-hero-badge span { display: block; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 6px; }
.product-hero-badge strong { display: block; font-family: var(--font-disp); font-size: 1.6rem; font-weight: 700; color: var(--charcoal); }

/* ====== SPECS İKİ KOLON ====== */
.specs-two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.specs-sub-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green-light);
  display: inline-block;
}

/* ====== ISO ANALİZ TABLOSU ====== */
.analysis-table-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--cream-dark); }
.analysis-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
}
.analysis-table thead tr { background: var(--green-dark); color: var(--white); }
.analysis-table thead th {
  padding: 13px 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  font-size: .78rem;
  white-space: nowrap;
}
.analysis-table thead th:first-child { text-align: left; min-width: 160px; }
.analysis-table tbody tr { border-bottom: 1px solid var(--cream-dark); }
.analysis-table tbody tr:nth-child(even) { background: rgba(27,67,50,.03); }
.analysis-table tbody tr:hover { background: rgba(82,183,136,.07); }
.analysis-table tbody td { padding: 9px 14px; color: var(--charcoal); text-align: center; white-space: nowrap; }
.analysis-table tbody td:first-child { text-align: left; font-weight: 500; }
.analysis-table tbody td:nth-child(4),
.analysis-table tbody td:nth-child(5),
.analysis-table tbody td:nth-child(6) { font-weight: 700; color: var(--green-dark); }

@media(max-width: 960px) {
  .specs-two-col { grid-template-columns: 1fr; }
  .product-hero-img { height: 300px; }
  .product-hero-badge { bottom: 16px; right: 16px; padding: 12px 20px; }
  .product-hero-badge strong { font-size: 1.2rem; }
}

/* ====== LIFESTYLE KULLANIM GÖRSELİ ====== */
.product-lifestyle-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-lifestyle-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.product-lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,20,.75) 0%, rgba(10,30,20,.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 56px;
}
.product-lifestyle-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.plb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--pill);
  padding: 12px 24px;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
}
.plb-icon { font-size: 1.2rem; }

@media(max-width: 768px) {
  .product-lifestyle-img { height: 350px; }
  .product-lifestyle-overlay { padding: 24px; }
  .plb-item { font-size: .8rem; padding: 8px 14px; }
}

/* ====== SERTİFİKA GRID ====== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--ease);
  cursor: pointer;
}
.cert-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--green-light); }
.cert-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.cert-card span {
  display: block;
  padding: 14px 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

@media(max-width: 960px) {
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 600px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}
