/* 
========================================================================
   AGNIT COOKTOP PREMIUM LIGHT THEME STYLE SHEET
   Includes: Clean Minimalist Light System, Squares Layout, Hover Images
========================================================================
*/

/* 1. Design Tokens & Core Settings */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Official Agnit Color Palette */
  --bg-dark: #f7f7f5;
  /* Tertiary: warm off-white backdrop */
  --bg-slate: #ffffff;
  /* Pure white sections */
  --bg-card: #ffffff;
  /* Pure white card base */

  --primary-teal: #014756;
  /* Dark Background Colour */
  --secondary-teal: #0b3f43;
  /* Lighter version of primary teal */

  --accent-orange: #ff5a2c;
  /* Heading/Highlight Orange */
  --accent-peach: #ff7a4f;
  /* Heading/Highlight Peach */
  --accent-sand: #c6a87d;
  /* Tertiary: Warm Earth Sand */
  --accent-grey: #a7b0b2;
  /* Tertiary: Cool Muted Grey */
  --text-charcoal: #000000;
  /* Normal Text: Black */

  /* Mapping to standard layout classes */
  --text-primary: #000000;
  /* Normal Text: Black */
  --text-secondary: #000000;
  /* Normal Text: Black */
  --text-muted: #a7b1b3;

  --border-light: rgba(167, 176, 178, 0.25);
  --border-glow: rgba(255, 90, 44, 0.25);

  --accent-gradient: linear-gradient(135deg, #ff5a2c 0%, #ff7a4f 100%);
  --teal-gradient: linear-gradient(135deg, #014756 0%, #0b3f43 100%);
  --accent-glow: 0 8px 24px rgba(255, 90, 44, 0.15);

  --green-glow: #ff5a2c;

  /* Card Width from Section 2 grid */
  --card-width-val: calc((50% - (clamp(40px, 6vw, 100px) / 2) - 6px) / 2);

  /* Fonts */
  --font-headings: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout Setup */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --border-radius-lg: 6px;
  --border-radius-md: 6px;
  --container-width: 1200px;
}

/* Base Reset & Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: var(--secondary-teal);
  /* #0b3f43 heading color */
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Background Soft Accents */
.glow-spot {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 44, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-spot-1 {
  top: 10%;
  left: -10%;
}

.glow-spot-2 {
  top: 40%;
  right: 0;
}

.glow-spot-3 {
  top: 70%;
  left: 10%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 90, 44, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--accent-glow);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Glass Card Style */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 90, 44, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Section Headings */
section {
  position: relative;
  padding: 40px 0;
  z-index: 1;
  box-sizing: border-box;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.section-title,
.cs-heading,
.faq-main-title {
  font-family: var(--font-headings);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: var(--secondary-teal);
  margin-bottom: 0;
}

.faq-main-title {
  margin-bottom: 20px;
}

.cs-heading {
  margin-bottom: 0;
}

.section-desc,
.cs-description,
.kit-desc,
.faq-contact-prompt p,
.faq-answer-inner {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
}

.section-desc,
.cs-description {
  margin-top: 8px;
  margin-bottom: 0;
}

.kit-desc {
  margin-bottom: 32px;
}


/* ========================================================================
   2. Component Styling
======================================================================== */

/* Sticky Header Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

header.site-header.scrolled {
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text-primary);
}

.logo span {
  font-weight: 700;
  color: var(--text-primary);
}

.logo-img {
  height: 65px;
  width: auto;
  display: block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1025px) {
  .nav-container {
    height: 70px;
  }

  header.site-header.scrolled .nav-container {
    height: 70px;
  }

  .logo-img {
    height: 85px;
    transform: translateY(6px);
  }

  header.site-header.scrolled .logo-img {
    height: 65px;
    transform: translateY(0);
  }
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-headings);
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 26px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  transition: var(--transition-fast);
}

.mobile-nav-toggle span:nth-child(1) {
  top: 0;
}

.mobile-nav-toggle span:nth-child(2) {
  top: 9px;
}

.mobile-nav-toggle span:nth-child(3) {
  top: 18px;
}

/* ------------------------------------------------------------------------
   Hero Slider Section
--------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-section .container {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center 15%;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.slide.active {
  opacity: 10;
  z-index: 2;
  animation: kenBurns 12s ease-out forwards;
}

/* Bright Soft Lighting Overlay */
.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0.05) 0%, rgba(248, 249, 250, 0.5) 100%),
    linear-gradient(to right, rgba(248, 249, 250, 0.3) 0%, rgba(248, 249, 250, 0.05) 50%, rgba(248, 249, 250, 0.3) 100%);
  z-index: 3;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.06);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 600px;
  margin-top: 300px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 90, 44, 0.08);
  border: 1px solid rgba(255, 90, 44, 0.15);
  padding: 4px 12px;
  border-radius: 6px;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.hero-tag span {
  width: 5px;
  height: 5px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.45;
  margin-bottom: 20px;
  color: var(--secondary-teal);
}

.hero-desc {
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

/* Slider Controls */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator-dot.active {
  background: var(--accent-orange);
  transform: scale(1.2);
}


/* ------------------------------------------------------------------------
   Section 2: "Cook everything with Agnit"
--------------------------------------------------------------------------- */
.cook-everything-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
  background-color: #ffffff;
}



.cook-everything-section .container {
  position: relative;
  z-index: 1;
}

.site-header .container,
.cook-everything-section .container,
.habits-section .container,
.advantage-section .container,
.case-studies-section .container,
.product-kits-section .container,
.differentiation-section .container,
.contact-section .container,
.faqs-section .container,
.site-footer .container {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.cook-everything-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
  width: 100%;
}

.cook-text-block {
  text-align: left;
  max-width: 560px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cook-images-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  width: 100%;
}

.food-cook-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  background: #ffffff;
  transition: var(--transition-smooth);
}

.food-cook-img-holder {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
}

.food-cook-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: var(--transition-smooth);
}

.food-cook-info {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  transition: var(--transition-smooth);
}

.food-cook-info h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--secondary-teal);
}

.food-cook-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Individual image position tweaks */
/* Individual image position tweaks for Business section cards to avoid polluting other cards */
.cook-images-block .food-cook-card:nth-child(1) .food-cook-img-holder img {
  object-position: 35% 10%;
}

.cook-images-block .food-cook-card:nth-child(2) .food-cook-img-holder img {
  object-position: 50% 5%;
}

.cook-images-block .food-cook-card:nth-child(3) .food-cook-img-holder img {
  transform: scale(1.25);
  transform-origin: 30% 15%;
  object-position: 30% 15%;
}

.cook-images-block .food-cook-card:nth-child(3):hover .food-cook-img-holder img {
  transform: scale(1.32);
}

.cook-images-block .food-cook-card:nth-child(4) .food-cook-img-holder img {
  object-position: 50% 10%;
}

.food-cook-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.06);
}

/* Default hover zoom for all food cook cards */
.food-cook-card:hover .food-cook-img-holder img {
  transform: scale(1.06);
}

/* Special hover zoom override for card 3 of Business section only */
.cook-images-block .food-cook-card:nth-child(3):hover .food-cook-img-holder img {
  transform: scale(1.32);
}

/* Custom image positioning for Cooking Habits cards to ensure optimal framing */
.habits-images-block .food-cook-card .food-cook-img-holder img {
  object-position: center;
}


/* ------------------------------------------------------------------------
   Section: Case Studies
--------------------------------------------------------------------------- */
.case-studies-section {
  background: var(--bg-dark);
  color: var(--text-primary);
  padding: 40px 0;
}


/* Two-column header: heading left, description right, both top-aligned */
.cs-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
}

.cs-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cs-header-left .section-title {
  color: var(--secondary-teal);
  margin-bottom: 0;
}

.cs-header-right {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
  /* nudge to optically align with the start of the heading text */
}

.cs-header-right .section-desc {
  color: var(--text-muted);
  margin-bottom: 0;
  max-width: 100%;
}

.case-studies-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-study-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
  width: 100%;
}

.case-study-row.photo-right {
  grid-template-columns: 1fr 1fr;
}

.cs-photo-column {
  width: 100%;
}

.cs-photo-backdrop {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  border-radius: 6px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  background: none;
}

.cs-photo-backdrop.gradient-1,
.cs-photo-backdrop.gradient-2 {
  background: none;
}

.case-study-photo-gallery {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: none;
}

.case-study-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.case-study-photo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.case-study-photo-slide.active {
  opacity: 1;
  z-index: 2;
}

.case-study-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-study-photo-slide img.crop-letterbox {
  transform: scale(2.05);
  transform-origin: center center;
}

/* Switcher Dots */
.photo-switcher-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 14px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.photo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.photo-dot.active {
  background: var(--accent-orange);
  transform: scale(1.25);
}

.photo-dot:hover {
  background: #ffffff;
}

/* Text Column Content */
.cs-text-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cs-tag-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 90, 44, 0.08);
  border: 1px solid rgba(255, 90, 44, 0.2);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 18px;
  align-self: flex-start;
}

.cs-subheading {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-orange);
  margin-top: 8px;
  margin-bottom: 0;
}

/* 2x2 Stats Grid */
.cs-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
}

.cs-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cs-icon-box {
  width: 44px;
  height: 44px;
  background: var(--secondary-teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.cs-stat-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-teal);
  margin-bottom: 8px;
  font-family: var(--font-headings);
  line-height: 1.2;
}

.cs-stat-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive Stacking */
@media (max-width: 1024px) {
  .cs-section-header {
    grid-template-columns: 1fr;
  }

  .case-study-row {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .case-study-row.photo-right {
    display: flex;
    flex-direction: column-reverse;
  }

  .cs-photo-backdrop {
    aspect-ratio: 1.4 / 1;
  }

  .cs-text-column {
    justify-content: flex-start;
    gap: 24px;
  }
}

/* ------------------------------------------------------------------------
   Section 4: Technical Specs (Bento Grid)
--------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------
   Section 4: Technical Specs — Premium Editorial Grid (AeroSound Style)
--------------------------------------------------------------------------- */
.specs-section {
  background: #F7F7F4;
  padding: 40px 0;
  overflow: hidden;
}

/* ── Section Header ─────────────────────────────────────────────────────── */
.specs-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px 40px;
  box-sizing: border-box;
}


@media (max-width: 991px) {
  .specs-section-header {
    grid-template-columns: 1fr;
    padding: 0 24px 28px;
  }
}

/* ── Row Container ───────────────────────────────────────────────────────── */
.specs-row-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-sizing: border-box;
}

.specs-row {
  display: flex;
  width: 100%;
  gap: 6px;
  align-items: stretch;
  box-sizing: border-box;
  min-height: 75vh;
}

/* Row-based column split ratios */
.row-50-50 .specs-col {
  width: calc(50% - 3px);
}

.row-40-60 .specs-col:first-child {
  width: calc(40% - 2.4px);
}

.row-40-60 .specs-col:last-child {
  width: calc(60% - 3.6px);
}

.row-60-40 .specs-col:first-child {
  width: calc(60% - 3.6px);
}

.row-60-40 .specs-col:last-child {
  width: calc(40% - 2.4px);
}

.specs-col {
  position: relative;
  box-sizing: border-box;
}

/* ── Base Card Styling ────────────────────────────────────────────────────── */
.specs-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.specs-card.light-card {
  background-color: #FAFAF8;
  color: #000000;
  box-shadow: none;
}

/* Alternate second light card to pure white for contrast variation */
.specs-card.light-card.card-type-centered {
  background-color: #FFFFFF;
}

.specs-card.dark-card {
  background-color: #041211;
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
}

.specs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.10);
}

.specs-card.dark-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

/* ── Card Tag / Micro-label ───────────────────────────────────────────────── */
.specs-card .card-tag {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #FF5A36;
  margin-bottom: 10px;
  display: inline-block;
}

/* ── Card Title ──────────────────────────────────────────────────────────── */
.specs-card .card-title {
  font-family: var(--font-headings);
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.specs-card.light-card .card-title {
  color: #071F1F;
}

.specs-card.dark-card .card-title {
  color: #ffffff;
}

/* ── Card Body Text ──────────────────────────────────────────────────────── */
.specs-card .card-desc {
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  line-height: 1.65;
  max-width: 100%;
  margin-bottom: 0;
}

.specs-card.light-card .card-desc {
  color: var(--text-muted);
}

.specs-card.dark-card .card-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Layout Type 1: Centered Card ────────────────────────────────────────── */
.card-type-centered {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card-type-centered .card-content-wrapper {
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-type-centered .card-desc {
  max-width: 420px;
}

/* ── Layout Type 2: Top/Bottom Split Overlay Card ────────────────────────── */
.card-type-split {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.card-split-top {
  z-index: 3;
  position: relative;
}

.card-split-bottom {
  z-index: 3;
  position: relative;
  max-width: 400px;
}

/* ── Layout Type 3: Product Visual Card ──────────────────────────────────── */
.card-type-visual {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  text-align: left;
}

.card-header-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-header-block .card-desc {
  max-width: 420px;
}

.card-visual-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  z-index: 3;
}

.product-center-img {
  max-height: 250px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.10));
  transition: var(--transition-smooth);
}

.specs-card:hover .product-center-img {
  transform: scale(1.05) translateY(-3px);
  filter: drop-shadow(0 20px 40px rgba(255, 90, 44, 0.14));
}

.card-bottom-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

/* ── Background: Dark cinematic image card ───────────────────────────────── */
.card-bg-image {
  background-color: #041211;
}

.card-bg-image .card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 1;
  filter: brightness(0.55) saturate(0.9);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s ease;
  pointer-events: none;
}

.card-bg-image .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(0, 30, 28, 0.28) 0%,
      rgba(0, 30, 28, 0.65) 60%,
      rgba(0, 20, 18, 0.82) 100%);
  z-index: 2;
  pointer-events: none;
}

.specs-card:hover .card-bg-img {
  transform: scale(1.04);
  filter: brightness(0.62) saturate(1.0);
}

/* ── Glow lines (Heat Surface card accent) ───────────────────────────────── */
.card-bg-lines-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  z-index: 2;
  padding: 0 40px;
  pointer-events: none;
  opacity: 0.18;
  transition: opacity 0.6s ease;
}

.specs-card:hover .card-bg-lines-container {
  opacity: 0.3;
}

.glow-line {
  width: 3px;
  height: var(--h);
  background: linear-gradient(to top, #FF5A36, transparent);
  border-radius: 3px;
  animation: floatLine 4s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 0.4s);
}

@keyframes floatLine {
  0% {
    transform: scaleY(0.88);
    opacity: 0.65;
  }

  100% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

/* ── Soft Ambient Texture (Runtime card) ─────────────────────────────────── */
.card-bg-product-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(255, 90, 44, 0.05) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

/* ── Light Dot Pattern (Build card) ──────────────────────────────────────── */
.card-bg-dots {
  background-image: radial-gradient(rgba(7, 31, 31, 0.055) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  background-position: center;
}

/* ── Dark Carbon Fiber Grid ──────────────────────────────────────────────── */
.card-bg-grid {
  background-color: #07171a;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.012) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.012) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.012) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.012) 75%);
  background-size: 20px 20px;
}

.card-bg-img-blend {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 70%;
  height: 70%;
  object-fit: contain;
  opacity: 0.14;
  mix-blend-mode: screen;
  filter: grayscale(100%) brightness(1.3);
  pointer-events: none;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.card-overlay-grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, transparent 40%, rgba(7, 23, 26, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

.specs-card:hover .card-bg-img-blend {
  transform: scale(1.05) translate(-8px, -8px);
  opacity: 0.22;
}

/* ── Induction Coil Visual (Best Suited For card) ────────────────────────── */
.telemetry-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  width: 100%;
}

.induction-coil-svg {
  width: 100%;
  height: auto;
  max-width: 300px;
  overflow: visible;
}

.induction-coil-svg circle,
.induction-coil-svg path {
  transform-origin: 200px 40px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.specs-card:hover .induction-coil-svg circle:nth-child(even) {
  transform: scale(1.06);
}

.specs-card:hover .induction-coil-svg circle:nth-child(odd) {
  transform: scale(0.94);
}

.specs-card:hover .induction-coil-svg path {
  transform: scaleX(1.03);
}

/* ── Bullet List: Left-Aligned ───────────────────────────────────────────── */
.card-list-left {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
}

.card-list-left li {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #374151;
  line-height: 1.5;
}

/* Tiny filled orange circle bullet */
.card-list-left li .bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #FF5A36;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── Bullet List: Centered ───────────────────────────────────────────────── */
.card-list-centered {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
}

.card-list-centered li {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #374151;
}

.card-list-centered li .dot {
  width: 6px;
  height: 6px;
  background-color: #FF5A36;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Dark card bullet and list overrides ─────────────────────────────────── */
.specs-card.dark-card .card-list-centered li {
  color: rgba(255, 255, 255, 0.75);
}

.specs-card.dark-card .card-list-left li {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Responsive Stacking ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .specs-row-container {
    gap: 20px;
    padding-left: 24px;
    padding-right: 24px;
  }



  .specs-card {
    height: auto;
    min-height: 240px;
  }

  .card-type-centered {
    padding: 20px 16px;
    min-height: 220px;
  }

  .card-type-split {
    padding: 20px 16px;
    min-height: 240px;
    justify-content: space-between;
  }

  .card-type-visual {
    padding: 20px 16px;
    min-height: 280px;
  }

  .specs-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .specs-card .card-tag {
    font-size: 0.6rem;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
  }

  .specs-card .card-desc {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .specs-section {
    padding-bottom: 56px;
  }
}

@media (max-width: 640px) {

  .card-type-centered,
  .card-type-split,
  .card-type-visual {
    padding: 16px 12px;
  }

  .specs-card .card-title {
    font-size: 0.95rem;
  }

  .specs-card .card-desc {
    font-size: 0.7rem;
  }
}


/* ------------------------------------------------------------------------
   Section 5: Comparison Matrix Table
--------------------------------------------------------------------------- */

.differentiation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
  width: 100%;
}

.differentiation-text-block {
  text-align: left;
  z-index: 5;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

@media (min-width: 1025px) {
  .differentiation-text-block {
    height: 100%;
  }
}



.differentiation-table-block {
  width: 100%;
}

/* Assumption/note text under section description */
.comp-assumption {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: auto;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.03);
  border-left: 3px solid rgba(255, 90, 44, 0.35);
  border-radius: 0 4px 4px 0;
  max-width: 520px;
}

.table-footnote {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
}

@media (max-width: 1024px) {
  .differentiation-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .table-footnote {
    text-align: left;
  }
}

.comparison-wrapper {
  position: relative;
  overflow-x: auto;
  max-width: 100%;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  background: transparent;
}

.comparison-table td {
  white-space: normal;
}

.comparison-table th {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table tr:hover {
  background: rgba(0, 0, 0, 0.01);
}

.col-feature {
  width: 28%;
  font-weight: 500;
}

.col-agnit {
  width: 24%;
  font-weight: 600;
  border-left: 1px solid rgba(255, 90, 44, 0.2);
  border-right: 1px solid rgba(255, 90, 44, 0.2);
}

.col-solar {
  width: 24%;
  font-weight: 600;
  border-left: 1px solid rgba(1, 71, 86, 0.18);
  border-right: 1px solid rgba(1, 71, 86, 0.18);
}

.col-standard {
  width: 23%;
  color: var(--text-secondary);
}

.col-lpg {
  width: 24%;
  color: var(--text-secondary);
}

/* 4-column variant adjustments */
.comparison-table-4col .col-feature {
  width: 26%;
}

.comparison-table-4col .col-lpg {
  width: 25%;
}

.comparison-table-4col .col-agnit {
  width: 24%;
}

.comparison-table-4col .col-solar {
  width: 25%;
}

/* Header highlight for Agnit */
tr:first-child th.col-agnit {
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
  border-top: 2px solid var(--accent-orange);
}

tr:last-child td.col-agnit {
  border-bottom-left-radius: var(--border-radius-md);
  border-bottom-right-radius: var(--border-radius-md);
}

/* Header highlight for Solar */
tr:first-child th.col-solar {
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
  border-top: 2px solid var(--primary-teal);
}

tr:last-child td.col-solar {
  border-bottom-left-radius: var(--border-radius-md);
  border-bottom-right-radius: var(--border-radius-md);
}

.cell-highlight {
  color: var(--accent-orange);
  font-weight: 600;
}

.cell-green {
  color: var(--green-glow);
  font-weight: 600;
}

.icon-check::before {
  content: '✓';
  font-weight: bold;
  margin-right: 4px;
}

.icon-cross::before {
  content: '✗';
  color: var(--text-muted);
  margin-right: 4px;
}

/* Dynamic Column Hover Backdrop Overlay */
.table-col-overlay {
  position: absolute;
  top: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    left 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}


/* ------------------------------------------------------------------------
   Section 6: FAQ Accordion
   Modern two-column side-by-side layout with borderless divider-separated questions
--------------------------------------------------------------------------- */
.faqs-section {
  padding: 40px 0;
}


.faq-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
  width: 100%;
}

.faq-left-column {
  position: sticky;
  top: 120px;
  /* locks header on scroll */
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-tag-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(11, 63, 67, 0.08);
  /* light secondary teal */
  border: 1px solid rgba(11, 63, 67, 0.15);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary-teal);
  margin-bottom: 20px;
}

.faq-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-orange);
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}

.faq-contact-prompt {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-contact-link {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--secondary-teal);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.faq-contact-link:hover {
  color: var(--accent-orange);
}

.faq-contact-link .arrow {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.faq-contact-link:hover .arrow {
  transform: translateX(4px);
}

/* Accordion Right Side List */
.faq-accordion-list {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-orange);
  background: none;
  border-color: transparent;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: inherit;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: all 0.3s ease;
}

/* horizontal line */
.faq-toggle-icon::before {
  width: 10px;
  height: 1.5px;
}

/* vertical line */
.faq-toggle-icon::after {
  width: 1.5px;
  height: 10px;
}

/* Active Open States */
.faq-item.active .faq-question {
  color: var(--secondary-teal);
}

.faq-item.active .faq-toggle-icon {
  border-color: var(--secondary-teal);
  color: var(--secondary-teal);
}

.faq-item.active .faq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-toggle-icon::before {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: none;
  border: none;
}

.faq-answer-inner {
  padding: 0 0 24px 36px;
  /* indent to line up below question text */
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ------------------------------------------------------------------------
   Section 4: Product Kits (Agnit Go & Agnit Solar)
--------------------------------------------------------------------------- */
.product-kits-section {
  background: var(--bg-slate);
}

/* Horizontal Kits Adjustments */
.kits-grid.kits-grid-horizontal {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 40px;
}

.kit-card.kit-horizontal {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  min-height: 560px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.kit-card.kit-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 90, 44, 0.2);
}

.kit-card.kit-reverse {
  grid-template-columns: 1fr 1fr;
}

.kit-card.kit-reverse .kit-image {
  order: 2;
}

.kit-card.kit-reverse .kit-content {
  order: 1;
}

.kit-image-placeholder {
  height: 280px;
  background-color: #f7f7f5;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.kit-horizontal .kit-image {
  height: 100%;
  border-bottom: none;
  background-color: #f7f7f5;
  overflow: hidden;
  position: relative;
}

.kit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-smooth);
}

.kit-card.kit-horizontal:hover .kit-image img {
  transform: scale(1.04);
}

.kit-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: loading-shimmer 2.5s infinite;
}

@keyframes loading-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.kit-horizontal .kit-content {
  padding: 24px 48px 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.kit-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.kit-subtitle {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-teal);
  margin-bottom: 16px;
}

.kit-details-group {
  margin-bottom: 20px;
  border-top: 1px solid rgba(167, 176, 178, 0.15);
  padding-top: 16px;
}

.kit-details-group:last-child {
  margin-bottom: 0;
}

.kit-group-title {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary-teal);
  margin-bottom: 12px;
}

.kit-best-for {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {

  .kit-card.kit-horizontal,
  .kit-card.kit-reverse {
    display: flex;
    flex-direction: column;
    min-height: auto;
    height: auto;
  }

  .kit-card.kit-reverse .kit-image {
    order: 1;
  }

  .kit-card.kit-reverse .kit-content {
    order: 2;
  }

  .kit-horizontal .kit-image {
    height: 320px;
  }

  .kit-horizontal .kit-content {
    padding: 32px 24px;
  }

  .kit-content {
    padding: 24px;
  }
}

.contact-section {
  background: var(--bg-slate);
  padding-bottom: 88px;
}

/* Centered Contact Form & Info Footer */
.centered-form {
  max-width: 680px;
  margin: 0 auto 48px;
}

.contact-info-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 0 12px;
  border-top: 1px solid var(--border-light);
  margin-top: 48px;
}

.info-footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.info-footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 90, 44, 0.08);
  border: 1px solid rgba(255, 90, 44, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.info-footer-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.info-footer-text strong {
  color: var(--text-primary);
  margin-right: 4px;
}

.info-footer-text a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.info-footer-text a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

/* Form inputs */
.contact-form {
  padding: 36px;
}

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

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  background: #f8f9fa;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.08);
  background: #ffffff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23014756' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}


/* ========================================================================
   3. Footer Styling — ATARAXIS-inspired layout
======================================================================== */
footer.site-footer {
  background: var(--primary-teal);
  padding: 72px 0 0;
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Decorative mountain-line SVG background */
.footer-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}

.footer-decoration svg {
  width: 100%;
  height: 100%;
}

footer.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Main 2-column layout: brand left, links right */
.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left brand column */
.footer-brand-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: inline-block;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #8fb3b8;
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}

/* Social icons row */
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8fb3b8;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.04);
}

.footer-social-link:hover {
  color: #ffffff;
  border-color: var(--accent-orange);
  background: rgba(255, 90, 44, 0.15);
  transform: translateY(-2px);
}

/* Back to Top button */
.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #8fb3b8;
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 8px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.03);
}

.footer-back-to-top:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

/* Right links grid — 2 columns */
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  justify-self: end;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-title {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-peach);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.92rem;
  color: #8fb3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Footer Bottom copyright bar */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-sep {
  opacity: 0.5;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links-grid {
    justify-self: start;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }

  .footer-bottom-sep {
    display: none;
  }
}

/* Language Toggle Switcher */
.lang-switch-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  user-select: none;
  z-index: 105;
}

.lang-label {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}

.lang-label.active {
  color: var(--accent-orange);
}

.lang-switch-btn {
  width: 44px;
  height: 22px;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  padding: 0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.lang-switch-btn:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 90, 44, 0.15);
}

.lang-switch-knob {
  width: 16px;
  height: 16px;
  background-color: var(--secondary-teal);
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: var(--transition-smooth);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.lang-switch-btn.active {
  background-color: rgba(255, 90, 44, 0.15);
  border-color: var(--accent-orange);
}

.lang-switch-btn.active .lang-switch-knob {
  left: 24px;
  background-color: var(--accent-orange);
}

/* Responsive adjustment for Mobile viewports */
@media (max-width: 768px) {
  .lang-switch-wrapper {
    margin-left: auto;
    margin-right: 16px;
  }
}

/* ========================================================================
   4. Media Queries & Responsive Layouts
======================================================================== */

@media (max-width: 1024px) {
  .cook-everything-section {
    height: auto;
    min-height: auto;
    padding: 60px 0;
    display: block;
  }

  .cook-everything-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cook-text-block {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
  }

  .cook-images-block {
    grid-column: span 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .bento-card-1,
  .bento-card-2,
  .bento-card-3,
  .bento-card-4 {
    grid-column: span 2;
  }

  .bento-bg-img {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 0;
    display: block;
    width: 150px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 1099px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    z-index: 99;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cook-images-block {
    grid-template-columns: 1fr;
  }



  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .contact-info-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 12px 12px;
  }
}

/* ========================================================================
   Advantage Section
======================================================================== */
.advantage-section {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
  background-color: #ffffff;
}

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

.adv-card-new {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.adv-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 90, 44, 0.2);
}

.adv-card-new .adv-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.adv-card-new h4 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-teal);
  margin-bottom: 12px;
}

.adv-card-new p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .advantage-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advantage-grid-new {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
   Cooking Habits Section
======================================================================== */
.habits-section {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
  background-color: #ffffff;
}

.habits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
  width: 100%;
}

.habits-text-block {
  text-align: left;
  max-width: 560px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.habits-highlight-box {
  background: rgba(255, 90, 44, 0.06);
  border-left: 4px solid var(--accent-orange);
  border-radius: 4px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  box-shadow: 0 4px 15px rgba(255, 90, 44, 0.03);
}

.habits-highlight-icon {
  color: var(--accent-orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
}

.habits-highlight-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--secondary-teal);
  font-weight: 600;
}

.habits-images-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  width: 100%;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .habits-section {
    height: auto;
    min-height: auto;
    padding: 60px 0;
    display: block;
  }

  .habits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .habits-text-block {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }

  .habits-images-block {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {

  /* Global Mobile Responsiveness Fixes */
  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  @media (max-width: 768px) {

    .section-title,
    .cs-heading,
    .faq-main-title,
    .product-title,
    #page-title {
      font-size: 1.8rem !important;
      text-align: center;
    }

    .cs-section-header,
    .specs-section-header,
    .advantage-header-block,
    .selection-header {
      align-items: center !important;
      text-align: center !important;
    }

    .section-desc,
    .cs-description,
    .product-desc,
    #page-subtitle {
      text-align: center;
      font-size: 0.95rem;
    }

    .hero-content {
      text-align: center;
      margin: 0 auto;
    }
  }
}