/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a, button, .btn, [role="button"] { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

:root {
  /* Light theme palette */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #7c3aed;
  --accent2: #0891b2;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-alt: #f0f5ff;
  --bg-card: #ffffff;
  --bg-surface: #eef2ff;

  /* Text — dark for light sections */
  --text-heading: #0f172a;
  --text: #334155;
  --text-muted: #64748b;

  /* Borders for light sections */
  --border: rgba(0,0,0,0.09);
  --border-hover: rgba(37,99,235,0.3);
  --glass: rgba(37,99,235,0.05);
  --glass2: rgba(37,99,235,0.09);

  /* Hero / footer (stays dark) */
  --dark:  #0d1f3c;
  --dark2: #122040;
  --dark3: #1a2e54;
  --dark4: #213660;

  --radius: 14px;
  --radius-lg: 22px;
  --t: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-hover: 0 12px 40px rgba(37,99,235,0.15);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  background: #f4f8ff;
  color: var(--text);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  line-height: 1.6;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f0f5ff; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--accent)); border-radius: 4px; }

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed; inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
  animation: loader-pulse 1.1s ease-in-out infinite;
  margin-bottom: 14px;
}
@keyframes loader-pulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(37,99,235,0.4)); }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 24px rgba(124,58,237,0.6)); }
}
.loader-brand { font-size: 0.82rem; font-weight: 600; color: #64748b; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px; }
.loader-bar { width: 160px; height: 2px; background: rgba(0,0,0,0.1); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2));
  border-radius: 2px; animation: loader-fill 1.4s ease forwards;
}
@keyframes loader-fill { to { width: 100%; } }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 55%, #0891b2 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero .gradient-text, .pg-hero .gradient-text, .mach-hero .gradient-text, .cl-hero .gradient-text, .mach-cta .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #fde68a 50%, #fb923c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.71rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 5px 14px; border-radius: 99px; margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px; background: #2563eb; border-radius: 50%;
  box-shadow: 0 0 6px rgba(37,99,235,0.5);
}
.pg-hero .section-tag, .mach-hero .section-tag, .cl-hero .section-tag, .mach-cta .section-tag {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.pg-hero .section-tag::before, .mach-hero .section-tag::before, .cl-hero .section-tag::before, .mach-cta .section-tag::before {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 6px rgba(255,255,255,0.5);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700; line-height: 1.15; color: #0f172a; margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: #64748b; max-width: 560px; margin: 0 auto; line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 64px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  font-weight: 600; font-size: 0.93rem;
  cursor: pointer; transition: var(--t);
  border: none; text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35), 0 0 0 1px rgba(37,99,235,0.18);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 160%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,99,235,0.45); }

.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.pg-cta-strip .btn-ghost {
  color: var(--primary); border-color: rgba(37,99,235,0.3); backdrop-filter: none;
}
.pg-cta-strip .btn-ghost:hover {
  color: var(--primary-dark); background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.5);
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 9px 20px; border-radius: 8px; font-size: 0.87rem;
  box-shadow: 0 2px 12px rgba(37,99,235,0.3);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.45); }

.btn-white {
  background: #fff; color: var(--dark);
  font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 0; transition: var(--t);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.navbar.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 4px; text-decoration: none; flex-shrink: 0; }
.logo-img {
  height: 64px; width: auto; object-fit: contain; flex-shrink: 0;
}
.loader-logo-img {
  height: 80px; width: auto; display: block; margin: 0 auto 14px;
  animation: loader-pulse 1.1s ease-in-out infinite;
}
.logo-icon {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 12px rgba(37,99,235,0.5));
  transition: var(--t);
}
.nav-logo:hover .logo-icon { filter: drop-shadow(0 0 20px rgba(124,58,237,0.7)); }
.logo-main { display: block; font-size: 1.22rem; font-weight: 800; color: #0f172a; line-height: 1.1; }
.logo-sub { display: block; font-size: 0.75rem; color: #64748b; letter-spacing: 0.04em; }
.navbar.scrolled .logo-main { color: #0f172a; }
.navbar.scrolled .logo-sub { color: #64748b; }
.nav-links { display: flex; list-style: none; gap: 2px; margin-left: auto; }
.nav-link {
  display: block; padding: 8px 12px;
  color: #64748b; text-decoration: none;
  font-size: 0.87rem; font-weight: 500;
  border-radius: 8px; transition: var(--t); position: relative;
}
.navbar.scrolled .nav-link { color: #64748b; }
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; transition: width 0.3s ease;
}
.nav-link:hover { color: #0f172a; }
.navbar.scrolled .nav-link:hover { color: #0f172a; }
.nav-link.active { color: #1d4ed8; }
.navbar.scrolled .nav-link.active { color: #1d4ed8; }
.nav-link.active::after, .nav-link:hover::after { width: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: #0f172a; border-radius: 2px; transition: var(--t); }
.navbar.scrolled .hamburger span { background: #0f172a; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1e3a8a 0%, #2563eb 45%, #7c3aed 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(55px); animation: shape-float 12s ease-in-out infinite; will-change: transform; }
.shape-1 { width: 700px; height: 700px; background: rgba(255,255,255,0.15); opacity: 1; top: -250px; right: -200px; animation-delay: 0s; }
.shape-2 { width: 500px; height: 500px; background: rgba(255,255,255,0.1); opacity: 1; bottom: -150px; left: -150px; animation-delay: 5s; }
.shape-3 { width: 350px; height: 350px; background: rgba(255,255,255,0.07); opacity: 1; top: 40%; left: 35%; animation-delay: 9s; }
@keyframes shape-float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-45px) scale(1.07); } }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255,255,255,0.012) 28px, rgba(255,255,255,0.012) 29px);
  background-size: 60px 60px, 60px 60px, 12px 12px, 12px 12px, 100% 100%;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; animation: p-float linear infinite; }
@keyframes p-float {
  0% { transform: translateY(105vh); opacity: 0; }
  8% { opacity: 1; } 92% { opacity: 1; }
  100% { transform: translateY(-60px); opacity: 0; }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 130px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; width: 100%;
}

/* Hero left */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.8rem; font-weight: 600; color: #67e8f9;
  background: rgba(8,145,178,0.15); border: 1px solid rgba(8,145,178,0.3);
  padding: 7px 18px; border-radius: 99px; margin-bottom: 28px;
  animation: fadeInDown 0.7s ease 0.1s both;
}
.badge-dot {
  width: 8px; height: 8px; background: #67e8f9; border-radius: 50%;
  animation: badge-pulse 2s ease infinite;
}
@keyframes badge-pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(8,145,178,0.5); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(8,145,178,0); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900; line-height: 1.05; color: #fff; margin-bottom: 24px;
}
.title-line { display: block; }
.title-line:nth-child(1) { animation: fadeInUp 0.7s ease 0.15s both; }
.title-line:nth-child(2) { animation: fadeInUp 0.7s ease 0.28s both; }
.title-line:nth-child(3) { animation: fadeInUp 0.7s ease 0.41s both; }
.hero-desc {
  font-size: 1.05rem; color: rgba(216,234,246,0.78); max-width: 520px;
  margin-bottom: 36px; line-height: 1.8;
  animation: fadeInUp 0.7s ease 0.54s both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeInUp 0.7s ease 0.64s both; }

.hero-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius); padding: 18px 24px;
  width: fit-content; gap: 0;
  animation: fadeInUp 0.7s ease 0.74s both;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.stat-val { display: flex; align-items: baseline; gap: 2px; }
.stat-num { font-size: 1.9rem; font-weight: 900; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-unit { font-size: 1rem; font-weight: 700; color: #93c5fd; }
.stat-label { font-size: 0.68rem; color: rgba(203,213,225,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; white-space: nowrap; }
.stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* Hero right visual */
.hero-visual {
  position: relative; width: 480px; height: 520px;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.8s ease 0.4s both; flex-shrink: 0; margin: 0 auto;
}
.vis-glow {
  position: absolute; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* Central spec card */
.vis-card-main {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  padding: 28px 26px 22px;
  width: 268px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.22);
  animation: card-float 5s ease-in-out infinite;
}
.vcm-top { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.vcm-logo { width: 38px; height: 38px; object-fit: contain; filter: brightness(0) invert(1); flex-shrink: 0; }
.vcm-name { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.1; }
.vcm-tag { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.55); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 2px; }
.vcm-divider { height: 1px; background: rgba(255,255,255,0.14); margin-bottom: 16px; }
.vcm-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 10px; margin-bottom: 18px; }
.vcm-spec-key { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; }
.vcm-spec-val { display: block; font-size: 0.88rem; font-weight: 700; color: #fff; }
.vcm-tags { display: flex; flex-wrap: wrap; gap: 5px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 4px; }
.vcm-tags span {
  font-size: 0.63rem; font-weight: 600; padding: 3px 9px;
  border-radius: 99px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
}

/* Floating product chips */
.vis-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 50px;
  padding: 7px 13px 7px 9px;
  font-size: 0.76rem; font-weight: 600; color: #0f172a;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  animation: card-float 4s ease-in-out infinite;
  white-space: nowrap;
}
.vis-chip-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vis-chip-icon svg { width: 14px; height: 14px; color: #2563eb; }
.vis-chip-1 { top: 4%;  right: -2%; animation-delay: 0s; }
.vis-chip-2 { top: 38%; right: -8%; animation-delay: 1.8s; }
.vis-chip-3 { bottom: 18%; right: 0%;  animation-delay: 3.2s; }
.vis-chip-4 { top: 14%; left: -4%; animation-delay: 0.9s; }
.vis-chip-5 { bottom: 4%; left: 6%; animation-delay: 2.5s; }

@keyframes card-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.72rem; letter-spacing: 0.05em;
  animation: fadeIn 1s ease 1.8s both; z-index: 2;
}
.scroll-mouse { width: 20px; height: 32px; border: 1.5px solid rgba(255,255,255,0.22); border-radius: 10px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-wheel { width: 2px; height: 6px; background: #93c5fd; border-radius: 2px; animation: scroll-wheel 2.2s ease infinite; }
@keyframes scroll-wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ===== TICKER ===== */
.ticker-strip {
  background: #ffffff;
  border-top: 1px solid rgba(37,99,235,0.1);
  border-bottom: 1px solid rgba(37,99,235,0.1);
  padding: 14px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 24px; align-items: center;
  white-space: nowrap; animation: ticker 40s linear infinite; width: max-content;
}
.ticker-track span { font-size: 0.82rem; font-weight: 600; color: #64748b; letter-spacing: 0.04em; text-transform: uppercase; }
.ticker-track .t-sep { color: var(--primary); font-size: 0.5rem; opacity: 0.7; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(44px) scale(0.97); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-left { opacity: 0; transform: translateX(-52px) scale(0.97); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); will-change: opacity, transform; }
.reveal-left.visible { opacity: 1; transform: translateX(0) scale(1); }
.reveal-right { opacity: 0; transform: translateX(52px) scale(0.97); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); will-change: opacity, transform; }
.reveal-right.visible { opacity: 1; transform: translateX(0) scale(1); }

/* ===== ABOUT ===== */
.about {
  padding: 110px 0; position: relative; overflow: hidden;
  background-color: #f4f8ff;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(37,99,235,0.016) 20px, rgba(37,99,235,0.016) 21px);
}
.about::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; display: flex; justify-content: center; }
/* About section visual card */
.about-card-wrap { position: relative; width: 580px; height: 460px; display: flex; align-items: center; justify-content: center; }
.aov-card {
  position: relative; z-index: 2;
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.14);
  border-radius: 20px;
  padding: 26px 24px 20px;
  width: 272px;
  box-shadow: 0 20px 60px rgba(37,99,235,0.1), 0 4px 16px rgba(0,0,0,0.06);
  animation: card-float 5s ease-in-out infinite;
}
.aov-header { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.aov-logo { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.aov-name { display: block; font-size: 0.88rem; font-weight: 700; color: #0f172a; line-height: 1.2; }
.aov-loc { display: block; font-size: 0.65rem; color: #94a3b8; margin-top: 2px; }
.aov-divider { height: 1px; background: #f1f5f9; margin-bottom: 16px; }
.aov-stats { display: flex; align-items: center; gap: 0; margin-bottom: 16px; }
.aov-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.aov-stat strong { font-size: 1.15rem; font-weight: 800; color: #1e3a8a; }
.aov-stat span { font-size: 0.6rem; color: #94a3b8; text-align: center; text-transform: uppercase; letter-spacing: 0.05em; }
.aov-stat-div { width: 1px; height: 32px; background: #e2e8f0; flex-shrink: 0; }
.aov-footer-row { display: flex; gap: 6px; flex-wrap: wrap; }
.aov-pill { font-size: 0.62rem; font-weight: 600; padding: 3px 9px; border-radius: 99px; background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

/* Floating feature chips — pill style, no subtitle */
.aov-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 99px;
  padding: 7px 14px 7px 7px;
  font-size: 0.74rem; font-weight: 600; color: #0f172a;
  box-shadow: 0 6px 22px rgba(0,0,0,0.09);
  animation: card-float 4s ease-in-out infinite;
  white-space: nowrap;
}
.aov-chip-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aov-chip-icon svg { width: 13px; height: 13px; color: #2563eb; }
/* top-center, bottom-center: above and below card with no x-overlap */
.aov-chip-1 { top: 4%;  left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.aov-chip-3 { bottom: 4%; left: 50%; transform: translateX(-50%); animation-delay: 0.8s; }
/* left / right: vertically centered, pushed to outer edges of the wider wrap */
.aov-chip-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.5s; }
.aov-chip-4 { top: 50%; left: 0; transform: translateY(-50%);  animation-delay: 2.4s; }

.about-content .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.about-text { color: #334155; margin-bottom: 16px; line-height: 1.8; font-size: 1rem; }
.about-text strong { color: #0f172a; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.feature {
  display: flex; gap: 12px; align-items: flex-start;
  background: #ffffff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius); padding: 16px; transition: var(--t);
}
.feature:hover { border-color: rgba(37,99,235,0.3); background: #eff6ff; transform: translateY(-2px); }
.feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 18px; height: 18px; color: var(--primary); }
.feature h4 { font-size: 0.88rem; font-weight: 600; color: #0f172a; margin-bottom: 4px; }
.feature p { font-size: 0.78rem; color: #64748b; line-height: 1.5; }

/* ===== QUALITY ===== */
.quality-section {
  padding: 110px 0;
  background-color: #f4f8ff;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(37,99,235,0.016) 20px, rgba(37,99,235,0.016) 21px);
  position: relative; overflow: hidden;
}
.quality-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
}
.quality-section::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(8,145,178,0.04) 0%, transparent 55%), radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.quality-lead { font-size: 1.1rem; color: #334155; line-height: 1.7; margin-bottom: 16px; font-style: italic; }

.quality-stat-row { display: flex; gap: 0; margin-top: 32px; background: #ffffff; border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); overflow: hidden; }
.quality-stat { flex: 1; padding: 20px 16px; text-align: center; border-right: 1px solid rgba(0,0,0,0.08); position: relative; }
.quality-stat:last-child { border-right: none; }
.quality-stat::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent2));
  transform: scaleX(0); transition: transform 0.4s ease;
}
.quality-stat:hover::before { transform: scaleX(1); }
.qs-val { display: block; font-size: 2rem; font-weight: 900; color: #0f172a; line-height: 1; margin-bottom: 6px; }
.qs-unit { font-size: 1.1rem; color: #0891b2; font-weight: 700; }
.qs-label { font-size: 0.7rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.08em; }

.quality-pillars { display: flex; flex-direction: column; gap: 16px; }
.qpillar {
  display: flex; gap: 16px; align-items: flex-start;
  background: #ffffff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius); padding: 20px; transition: var(--t);
  position: relative; overflow: hidden;
}
.qpillar::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent2), var(--primary));
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s ease;
}
.qpillar:hover::before { transform: scaleY(1); }
.qpillar:hover { border-color: rgba(37,99,235,0.25); background: #eff6ff; transform: translateX(4px); }
.qpillar-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: rgba(8,145,178,0.08); border: 1px solid rgba(8,145,178,0.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: var(--t);
}
.qpillar:hover .qpillar-icon { background: rgba(8,145,178,0.15); transform: scale(1.08); }
.qpillar h4 { font-size: 0.92rem; font-weight: 700; color: #0f172a; margin-bottom: 5px; }
.qpillar p { font-size: 0.82rem; color: #64748b; line-height: 1.6; }

@media (max-width: 900px) { .quality-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 480px) { .quality-stat-row { flex-wrap: wrap; } .quality-stat { min-width: 50%; border-bottom: 1px solid rgba(0,0,0,0.08); } }

/* ===== PROCESS ===== */
.process {
  padding: 110px 0;
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(37,99,235,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  position: relative;
}
.process::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.process-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 52px; left: calc(100%/12); right: calc(100%/12); height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2), var(--primary));
  background-size: 200% 100%;
  animation: flow-line 3.5s linear infinite; z-index: 0;
}
.process-step { position: relative; z-index: 1; padding: 0 12px; text-align: center; }
.step-num {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; color: var(--primary);
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2);
  padding: 2px 8px; border-radius: 99px; display: inline-block; margin-bottom: 10px;
}
.step-icon {
  width: 64px; height: 64px; background: #ffffff; border: 2px solid rgba(37,99,235,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px; transition: var(--t); position: relative;
  box-shadow: 0 0 0 4px #f0f5ff;
}
.process-step:hover .step-icon { border-color: rgba(37,99,235,0.6); background: #eff6ff; transform: scale(1.1); animation: icon-pulse-ring 1.5s ease infinite; }
.process-step h3 { font-size: 0.9rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.process-step p { font-size: 0.78rem; color: #64748b; line-height: 1.55; }

/* ===== PRODUCTS ===== */
.products {
  padding: 110px 0;
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(37,99,235,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  position: relative;
}
.products::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card {
  position: relative; background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius); padding: 26px 22px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden; cursor: default; transform-style: preserve-3d;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--clr-line-a, var(--primary)), var(--clr-line-b, var(--accent)));
  opacity: 0.7; transition: opacity 0.3s ease;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 12px 40px rgba(37,99,235,0.12); }
.spotlight {
  position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), var(--clr-glow, rgba(37,99,235,0.08)), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none; border-radius: inherit;
}
.product-card:hover .spotlight { opacity: 1; }
.product-card::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-18deg); pointer-events: none; z-index: 2;
  transition: left 0s;
}
.product-card:hover::after { left: 150%; transition: left 0.85s cubic-bezier(0.4,0,0.2,1); }
.product-img-wrap {
  position: relative; margin: -26px -22px 18px; height: 200px; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(145deg, #f0f6ff 0%, #e8f0fe 60%, #f3eeff 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 18px 22px 14px;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.14));
}
.product-card:hover .product-img-wrap img { transform: scale(1.06) translateY(-3px); filter: drop-shadow(0 12px 28px rgba(37,99,235,0.18)); }
.product-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(37,99,235,0.05) 100%);
  pointer-events: none;
}
.product-card h3 { font-size: 0.97rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; position: relative; z-index: 1; }
.product-card p { font-size: 0.81rem; color: #64748b; line-height: 1.65; margin-bottom: 14px; position: relative; z-index: 1; }
.product-tags { display: flex; flex-wrap: wrap; gap: 5px; list-style: none; margin-bottom: 18px; position: relative; z-index: 1; }
.product-tags li {
  font-size: 0.7rem; font-weight: 500; color: var(--primary);
  background: rgba(37,99,235,0.07); border: 1px solid rgba(37,99,235,0.15);
  padding: 3px 9px; border-radius: 99px;
}
.product-cta {
  font-size: 0.84rem; font-weight: 600; color: var(--primary);
  text-decoration: none; transition: background 0.25s ease, color 0.25s ease;
  position: relative; z-index: 1;
  /* Full-width card footer */
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin: auto -22px -22px;
  padding: 13px 22px;
  border-top: 1px solid rgba(37,99,235,0.1);
  background: rgba(37,99,235,0.03);
}
.product-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
}

/* Product badge */
.product-badge {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  box-shadow: 0 2px 10px rgba(21,128,61,0.4);
}

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; overflow: hidden; padding: 80px 0; }
.cta-banner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 55%, #0891b2 100%);
  border-top: none;
  border-bottom: none;
}
.cta-banner-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: #fff; margin-bottom: 10px; }
.cta-text p { font-size: 0.95rem; color: rgba(255,255,255,0.75); max-width: 460px; }
.cta-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.cta-badge { text-align: center; }
.cta-badge strong { display: block; font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; }
.cta-badge span { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== INDUSTRIES ===== */
.industries {
  padding: 110px 0;
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(37,99,235,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); height: 190px;
  cursor: default; opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.industry-card.visible { opacity: 1; transform: translateY(0); }
.industry-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.26); }

.industry-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.industry-card:hover .industry-card-img { transform: scale(1.09); }

.industry-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,20,50,0.82) 0%, rgba(7,20,50,0.28) 55%, transparent 100%);
  transition: background 0.35s ease;
}
.industry-card:hover .industry-card-overlay {
  background: linear-gradient(to top, rgba(15,56,180,0.88) 0%, rgba(15,56,180,0.35) 60%, transparent 100%);
}

.industry-card span {
  position: absolute; bottom: 16px; left: 0; right: 0;
  text-align: center; font-size: 0.88rem; font-weight: 700;
  color: #ffffff; z-index: 2; letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ===== WHY US ===== */
.why-us {
  padding: 110px 0;
  background-color: #f4f8ff;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(37,99,235,0.016) 20px, rgba(37,99,235,0.016) 21px);
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-grid .why-card:nth-child(10) { grid-column: 1; }
.why-grid .why-card:nth-child(11) { grid-column: 2; }
.why-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius); padding: 32px 26px; transition: var(--t);
  position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: linear-gradient(180deg, var(--primary), var(--accent)); transition: height 0.45s ease;
}
.why-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(300px circle at var(--gx,-100px) var(--gy,-100px), rgba(37,99,235,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.why-card:hover::before { height: 100%; }
.why-card:hover::after { opacity: 1; }
.why-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 12px 36px rgba(37,99,235,0.1); }
.why-num { font-size: 2.6rem; font-weight: 900; color: rgba(37,99,235,0.12); line-height: 1; margin-bottom: 14px; }
.why-card h3 { font-size: 1.02rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.why-card p { font-size: 0.86rem; color: #64748b; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 110px 0;
  background-color: #f4f8ff;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(37,99,235,0.016) 20px, rgba(37,99,235,0.016) 21px);
  overflow: hidden;
}
.testi-track-wrap { overflow: hidden; position: relative; margin-bottom: 32px; }
.testi-track-wrap::before, .testi-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.testi-track-wrap::before { left: 0; background: linear-gradient(90deg, #f4f8ff, transparent); }
.testi-track-wrap::after { right: 0; background: linear-gradient(-90deg, #f4f8ff, transparent); }
.testi-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testi-card { flex: 0 0 calc(33.33% - 16px); background: #ffffff; border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius-lg); padding: 32px; transition: var(--t); position: relative; overflow: hidden; }
.testi-card::before { content: '"'; position: absolute; top: 16px; right: 20px; font-size: 5rem; font-family: 'Playfair Display', serif; color: rgba(37,99,235,0.08); line-height: 1; }
.testi-card:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(37,99,235,0.08); }
.testi-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 0.9rem; color: #64748b; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.88rem; color: #0f172a; }
.testi-author span { font-size: 0.75rem; color: #64748b; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 20px; }
.testi-btn { width: 40px; height: 40px; background: #f0f5ff; border: 1px solid rgba(37,99,235,0.15); border-radius: 50%; color: #334155; font-size: 1rem; cursor: pointer; transition: var(--t); display: flex; align-items: center; justify-content: center; }
.testi-btn:hover { background: var(--primary); border-color: transparent; color: #fff; }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot { width: 6px; height: 6px; border-radius: 3px; background: rgba(37,99,235,0.2); cursor: pointer; transition: all 0.3s ease; }
.testi-dot.active { background: var(--primary); width: 20px; }

/* ===== CONTACT ===== */
.contact {
  padding: 110px 0;
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(37,99,235,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  position: relative;
}
.contact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info .section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.contact-info > p { color: #64748b; margin-bottom: 36px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; background: #ffffff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius); transition: var(--t);
}
.contact-item:hover { border-color: rgba(37,99,235,0.3); background: #eff6ff; }
.contact-icon-wrap {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.contact-icon-wrap svg { width: 18px; height: 18px; color: var(--primary); }
.contact-item strong { display: block; font-size: 0.82rem; color: #0f172a; margin-bottom: 3px; }
.contact-item span { display: block; font-size: 0.86rem; color: #64748b; line-height: 1.7; }
.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  padding: 9px 16px; background: #f0f5ff; border: 1px solid rgba(37,99,235,0.15);
  border-radius: 8px; font-size: 0.83rem; font-weight: 500; color: #334155;
  text-decoration: none; transition: var(--t); display: flex; align-items: center; gap: 6px;
}
.social-btn:hover { color: #1d4ed8; border-color: rgba(37,99,235,0.35); background: #eff6ff; transform: translateY(-2px); }
.contact-form-wrap {
  background: #ffffff; border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.contact-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2));
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: #334155; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  background: #f8faff; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px; padding: 12px 15px; color: #0f172a;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; outline: none; transition: var(--t); resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #ffffff; color: #0f172a; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(37,99,235,0.5); background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0d1f3c 0%, #081428 100%);
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(59,130,246,0.22), inset 0 2px 0 rgba(59,130,246,0.06);
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding: 64px 0 48px; }
.footer-brand > p { font-size: 0.84rem; color: rgba(148,163,184,0.7); line-height: 1.75; max-width: 280px; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span {
  font-size: 0.7rem; font-weight: 600; color: #93c5fd;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.28);
  padding: 3px 10px; border-radius: 99px;
}
.footer-links h4 { font-size: 0.78rem; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li, .footer-links ul a { font-size: 0.84rem; color: rgba(148,163,184,0.7); text-decoration: none; transition: var(--t); }
.footer-links ul a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid rgba(59,130,246,0.12); gap: 16px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(148,163,184,0.55); }

/* Footer brand logo */
.footer-brand-logo {
  display: inline-flex; align-items: center; gap: 13px;
  text-decoration: none; margin-bottom: 20px;
  transition: opacity 0.22s;
}
.footer-brand-logo:hover { opacity: 0.82; }
.footer-logo-img {
  width: 52px; height: 52px; object-fit: contain; flex-shrink: 0;
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(255,255,255,0.15));
}
.footer-brand-text { display: flex; flex-direction: column; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 800;
  color: #ffffff; letter-spacing: -0.01em; line-height: 1.05;
}
.footer-brand-tagline {
  font-size: 0.68rem; font-weight: 500;
  color: rgba(148,163,184,0.6); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 4px;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 82px; right: 16px;
  background: #25d366; color: #fff; text-decoration: none;
  border-radius: 50px;
  height: 52px; min-width: 52px; max-width: 52px; padding: 0;
  display: flex; align-items: center; justify-content: center; gap: 0;
  font-size: 0.82rem; font-weight: 600;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); z-index: 998;
  overflow: hidden;
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float span { white-space: nowrap; opacity: 0; max-width: 0; overflow: hidden; transition: max-width 0.4s ease, opacity 0.3s ease; }
.whatsapp-float:hover { min-width: 52px; max-width: 200px; padding: 0 16px 0 12px; gap: 8px; box-shadow: 0 10px 32px rgba(37,211,102,0.55); transform: translateY(-2px); }
.whatsapp-float:hover span { opacity: 1; max-width: 120px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 20px; right: 16px;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none; border-radius: 50%; color: #fff; font-size: 1.1rem;
  cursor: pointer; opacity: 0; visibility: hidden; transition: var(--t); z-index: 999;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,99,235,0.5); }

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes flow-line { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }
@keyframes icon-pulse-ring {
  0%   { box-shadow: 0 0 0 4px #f0f5ff, 0 0 0 7px rgba(37,99,235,0.18); }
  50%  { box-shadow: 0 0 0 4px #f0f5ff, 0 0 0 14px rgba(37,99,235,0.04); }
  100% { box-shadow: 0 0 0 4px #f0f5ff, 0 0 0 7px rgba(37,99,235,0.18); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; max-width: 680px; text-align: center; padding-top: 100px; padding-bottom: 64px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { width: 360px; height: 460px; }
  .vis-card-main { width: 240px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .testi-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  /* Tablet spacing */
  .about, .quality-section, .process, .products, .industries,
  .why-us, .testimonials, .contact { padding: 80px 0; }
  .cta-banner { padding: 64px 0; }
  .section-header { margin-bottom: 48px; }
}
@media (max-width: 768px) {
  /* Full-screen mobile menu */
  .navbar { z-index: 10000; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: #ffffff;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 80px 0 40px; gap: 0;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links .nav-link {
    display: block;
    font-size: 1rem; font-weight: 500;
    padding: 16px 28px; color: #334155 !important;
    border-bottom: 1px solid #f1f5f9; border-radius: 0;
  }
  .nav-links .nav-link::after { display: none; }
  .nav-links .nav-link.active { color: #1d4ed8 !important; background: #eff6ff; }
  .nav-links .nav-link:hover { color: #1d4ed8 !important; background: #f8faff; }
  .nav-backdrop { display: none !important; }
  .hamburger { display: flex; position: relative; z-index: 10001; }
  .btn-nav { display: none; }

  /* Navbar logo */
  .logo-img { height: 44px; }
  .logo-main { font-size: 1rem; }
  .logo-sub { font-size: 0.65rem; }

  /* Section spacing */
  .about, .quality-section, .process, .products, .industries,
  .why-us, .testimonials, .contact { padding: 64px 0; }
  .cta-banner { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }

  /* Hero */
  .hero-inner { padding: 88px 20px 56px; gap: 36px; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-cta { margin-bottom: 28px; }
  .hero-visual { width: 300px; height: 380px; }
  .vis-chip { display: none; }

  /* Layouts */
  .products-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid .why-card:nth-child(10),
  .why-grid .why-card:nth-child(11) { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 14px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-top { gap: 28px; padding: 48px 0 32px; }
}
@media (max-width: 480px) {
  /* Section spacing */
  .about, .quality-section, .process, .products, .industries,
  .why-us, .testimonials, .contact { padding: 56px 0; }
  .cta-banner { padding: 36px 0; }
  .section-header { margin-bottom: 28px; }

  /* Container */
  .container { padding: 0 16px; }

  /* Hero — hide decorative spec card on small phones */
  .hero { min-height: 0; }
  .hero-inner { padding: 88px 16px 56px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-visual { display: none; }
  .hero-scroll-indicator { display: none; }

  /* Hero stats — clean 2x2 grid */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 16px 8px;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 12px 10px; }

  /* Layouts */
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 0 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 24px 20px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { justify-content: center; }
  .process-steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ===== INNER-PAGE RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pg-hero, .mach-hero, .cl-hero { padding: 120px 0 80px; }
}
@media (max-width: 768px) {
  .pg-hero, .mach-hero, .cl-hero { padding: 96px 0 60px; }
  .clients-section, .company-info-section, .process-detail { padding: 64px 0; }
  .mach-section { padding: 60px 0; }
  .mach-cta { padding: 60px 0; }
}
@media (max-width: 480px) {
  .pg-hero, .mach-hero, .cl-hero { padding: 84px 0 48px; }
  .clients-section, .company-info-section, .process-detail { padding: 56px 0; }
  .mach-section { padding: 48px 0; }
  .mach-cta { padding: 48px 0; }
  .info-table td { padding: 12px 16px; font-size: 0.82rem; }
  .info-table td:first-child { width: 42%; }
  .clients-quote { padding: 24px 20px; }
  .pg-cta-strip { padding: 28px 20px; }
}

/* ===== PLANT MEDIA (images & videos) ===== */

/* Full-width video section — drop a <video> or <iframe> inside */
.plant-video-section {
  position: relative; overflow: hidden;
  background: #0d1f3c;
  padding: 0;
}
.plant-video-section video,
.plant-video-section iframe {
  width: 100%; display: block;
  max-height: 600px; object-fit: cover;
}
.plant-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,31,60,0.35) 0%, transparent 40%, transparent 60%, rgba(13,31,60,0.55) 100%);
  display: flex; align-items: center; justify-content: center;
  z-index: 2; pointer-events: none;
}
.plant-video-overlay.has-cta { pointer-events: auto; }

/* Responsive 16:9 embed (YouTube / Vimeo) */
.video-embed-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.video-embed-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* Image & video grid for plant gallery */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.media-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.media-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.media-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: #0d1f3c;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.media-card img,
.media-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.media-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.18); }
.media-card:hover img,
.media-card:hover video { transform: scale(1.05); }
.media-card-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(13,31,60,0.85), transparent);
  color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.02em;
  transform: translateY(4px); opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.media-card:hover .media-card-caption { transform: translateY(0); opacity: 1; }

/* Full-bleed parallax image divider — add data-parallax to activate via JS */
.img-parallax {
  position: relative; overflow: hidden; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.img-parallax img {
  position: absolute; inset: -15% 0;
  width: 100%; height: 130%; object-fit: cover;
  will-change: transform;
}
.img-parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.72) 0%, rgba(37,99,235,0.45) 100%);
}
.img-parallax-content { position: relative; z-index: 2; text-align: center; padding: 60px 24px; color: #fff; }

/* Play button overlay for video thumbnails */
.play-btn-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; cursor: pointer;
}
.play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.95); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.play-btn svg { width: 24px; height: 24px; color: #1d4ed8; margin-left: 3px; }
.play-btn-overlay:hover .play-btn { transform: scale(1.12); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

@media (max-width: 768px) {
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .img-parallax { min-height: 280px; }
}
@media (max-width: 480px) {
  .media-grid, .media-grid.cols-2, .media-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ===== CHATBOT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 144px;
  right: 16px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-toggle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}
.chat-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,99,235,0.55); }
.chat-toggle .chat-icon-close { display: none; }
.chat-toggle.open .chat-icon-open { display: none; }
.chat-toggle.open .chat-icon-close { display: block; }

.chat-window {
  width: 340px;
  max-height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: #fff; letter-spacing: 0.03em;
}
.chat-bot-name { font-size: 0.88rem; font-weight: 700; color: #fff; }
.chat-status { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; color: rgba(255,255,255,0.8); margin-top: 2px; }
.chat-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 6px #4ade80; animation: chatPulse 2s ease-in-out infinite; }
@keyframes chatPulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
.chat-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.8); font-size: 1.4rem; line-height: 1;
  padding: 2px 4px; border-radius: 4px; transition: color 0.2s, background 0.2s;
}
.chat-close:hover { color: #fff; background: rgba(255,255,255,0.15); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8fafc;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }

.chat-msg {
  max-width: 86%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 0.825rem;
  line-height: 1.55;
  word-break: break-word;
  animation: chatMsgIn 0.2s ease both;
}
@keyframes chatMsgIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }
.chat-msg-bot {
  background: #fff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.chat-msg-user {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-typing {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 14px;
}
.chat-typing span {
  width: 7px; height: 7px;
  background: #94a3b8;
  border-radius: 50%;
  animation: chatBounce 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatBounce { 0%,80%,100% { transform:translateY(0); } 40% { transform:translateY(-6px); } }

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px 4px;
  background: #f8fafc;
  flex-shrink: 0;
}
.chat-qr-btn {
  background: #fff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.chat-qr-btn:hover { background: #2563eb; border-color: #2563eb; color: #fff; }

.chat-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #e2e8f0;
  background: #fff;
  flex-shrink: 0;
}
#chatInput {
  flex: 1;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  background: #f8fafc;
  color: #1e293b;
  transition: border-color 0.2s;
}
#chatInput:focus { border-color: #93c5fd; background: #fff; }
#chatSend {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
#chatSend:hover { transform: scale(1.08); box-shadow: 0 3px 12px rgba(37,99,235,0.4); }

@media (max-width: 480px) {
  .back-to-top    { bottom: 16px; right: 16px; }
  .whatsapp-float { bottom: 78px; right: 16px; }
  .chat-widget    { bottom: 140px; right: 16px; }
  .chat-window { width: calc(100vw - 32px); max-height: 70vh; }
}

/* ===== TABLET IMPROVEMENTS (600px – 900px) ===== */
@media (min-width: 481px) and (max-width: 768px) {
  /* 2-col products on mid-phones so cards aren't huge */
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hero stats stay flex but wrap nicely */
  .hero-stats { justify-content: center; }
}

/* ===== MOBILE FORM UX ===== */
@media (max-width: 768px) {
  /* Min touch target height for inputs */
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 16px; /* prevents iOS auto-zoom on focus */
  }
  .form-group textarea { min-height: 100px; }
  /* Full-width nav CTA visible on landscape tablet */
  .btn-nav { display: none; }
}

/* ===== PRODUCT CTA SVG ===== */
.product-cta span { display: inline-flex; align-items: center; }
.product-cta span svg { transition: transform 0.25s ease; }
.product-cta:hover span svg { transform: translateX(5px); }

/* ===== CTA BANNER DIRECT CALL LINE ===== */
.cta-direct {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-top: 14px; text-align: center; width: 100%;
}
.cta-direct a {
  color: rgba(255,255,255,0.9); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.cta-direct a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.7); }
