/* ================================================
   ThermoRoo Marketing Site – marketing.css
   Light + dark-hero theme
   ================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --clr-orange:        #f97316;
  --clr-orange-dark:   #ea580c;
  --clr-orange-light:  #fed7aa;

  /* Hero / dark surfaces */
  --clr-dark-bg:       #0d1117;
  --clr-dark-surface:  #161b22;
  --clr-dark-card:     #1c2230;
  --clr-dark-border:   #30384a;
  --clr-dark-text:     #e6edf3;
  --clr-dark-muted:    #8b949e;

  /* Light surfaces */
  --clr-white:         #ffffff;
  --clr-light-bg:      #f8fafc;
  --clr-light-card:    #ffffff;
  --clr-light-border:  #e2e8f0;
  --clr-light-text:    #0f172a;
  --clr-light-muted:   #64748b;

  /* Semantic */
  --clr-green:         #4ade80;
  --clr-blue:          #60a5fa;
  --clr-red:           #f87171;
  --clr-yellow:        #fbbf24;

  /* Nav */
  --nav-h:             64px;

  /* Spacing */
  --sp-section:        96px;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.18);
  --shadow-dark: 0 24px 80px rgba(0,0,0,.6);

  /* Transition */
  --t: .2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-light-text);
  background: var(--clr-white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
strong { font-weight: 700; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--t);
  white-space: nowrap;
  font-size: 14px;
  padding: 10px 22px;
  line-height: 1;
}

.btn-primary {
  background: var(--clr-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.btn-primary:hover {
  background: var(--clr-orange-dark);
  box-shadow: 0 6px 28px rgba(249,115,22,.5);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid currentColor;
  color: var(--clr-light-text);
  background: transparent;
}
.btn-outline:hover {
  background: var(--clr-light-text);
  color: var(--clr-white);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--clr-light-text);
}
.btn-ghost:hover {
  background: var(--clr-light-bg);
}

.btn-lg {
  font-size: 16px;
  padding: 14px 30px;
}

/* ---------- Section base ---------- */
.section {
  padding: var(--sp-section) 0;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  background: rgba(249,115,22,.1);
  padding: 4px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--clr-light-text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--clr-light-muted);
  line-height: 1.6;
}

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ================================================
   COOKIE / GDPR BANNER
================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a2234;
  border-top: 1px solid var(--clr-dark-border);
  box-shadow: 0 -8px 40px rgba(0,0,0,.4);
  padding: 16px 24px;
  transform: translateY(0);
  transition: transform .35s ease;
}
.cookie-banner.hidden { transform: translateY(120%); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 260px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-text svg { flex-shrink: 0; margin-top: 2px; color: #94a3b8; }
.cookie-link { color: var(--clr-orange); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-reject,
.cookie-accept {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--t);
  cursor: pointer;
}
.cookie-reject {
  background: transparent;
  border: 1px solid #475569;
  color: #94a3b8;
}
.cookie-reject:hover { border-color: #94a3b8; color: #e2e8f0; }
.cookie-accept {
  background: var(--clr-orange);
  color: #fff;
  border: 1px solid transparent;
}
.cookie-accept:hover { background: var(--clr-orange-dark); }

/* ================================================
   NAVIGATION
================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(48,56,74,.6);
  transition: background var(--t), box-shadow var(--t);
}

.site-header.header-scrolled {
  background: rgba(13,17,23,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--clr-dark-text);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  flex-shrink: 0;
  transition: opacity var(--t);
}
.nav-logo:hover { opacity: .85; }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-dark-muted);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav-links li a:hover {
  color: var(--clr-dark-text);
  background: rgba(255,255,255,.07);
}

/* Right controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-app-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-dark-muted);
  padding: 7px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(48,56,74,.8);
  transition: all var(--t);
}
.nav-app-link:hover {
  color: var(--clr-dark-text);
  border-color: var(--clr-dark-border);
  background: rgba(255,255,255,.06);
}

.nav-cta {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--clr-orange);
  padding: 8px 18px;
  border-radius: var(--r-full);
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.nav-cta:hover {
  background: var(--clr-orange-dark);
  box-shadow: 0 6px 20px rgba(249,115,22,.5);
  transform: translateY(-1px);
}

/* Language selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  color: var(--clr-dark-muted);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(48,56,74,.8);
  background: transparent;
  transition: all var(--t);
  cursor: pointer;
}
.lang-btn:hover {
  color: var(--clr-dark-text);
  background: rgba(255,255,255,.07);
  border-color: var(--clr-dark-border);
}

.lang-flag { font-size: 16px; line-height: 1; }
.lang-code { letter-spacing: .06em; }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a2234;
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  min-width: 160px;
  z-index: 100;
}
.lang-dropdown.open { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-dark-muted);
  cursor: pointer;
  transition: all var(--t);
}
.lang-option:hover,
.lang-option.lang-active {
  background: rgba(249,115,22,.1);
  color: var(--clr-orange);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.nav-hamburger:hover { background: rgba(255,255,255,.07); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--clr-dark-text);
  border-radius: 2px;
  transition: all var(--t);
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0d1117;
  border-top: 1px solid var(--clr-dark-border);
  padding: 12px 0 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-dark-muted);
  transition: color var(--t), background var(--t);
}
.mobile-nav a:hover { color: var(--clr-dark-text); background: rgba(255,255,255,.05); }
.mobile-cta {
  margin: 12px 24px 0;
  text-align: center;
  background: var(--clr-orange) !important;
  color: #fff !important;
  border-radius: var(--r-full);
  padding: 13px 24px !important;
  font-weight: 700 !important;
}

/* ================================================
   HERO SECTION
================================================ */
.hero {
  position: relative;
  background: var(--clr-dark-bg);
  color: var(--clr-dark-text);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  overflow: hidden;
}

/* Subtle grid pattern */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 50%, transparent 100%);
}

/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(249,115,22,.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.3);
  color: #fb923c;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-orange);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--clr-dark-text);
  margin-bottom: 20px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--clr-orange) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--clr-dark-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-subtitle strong { color: var(--clr-dark-text); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-actions .btn-outline {
  color: var(--clr-dark-muted);
  border-color: rgba(139,148,158,.5);
}
.hero-actions .btn-outline:hover {
  color: var(--clr-dark-text);
  border-color: var(--clr-dark-muted);
  background: rgba(255,255,255,.06);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-dark-muted);
}
.trust-item svg { color: var(--clr-green); }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.hero-phone-stack {
  position: relative;
  width: 240px;
  height: 500px;
}

.hero-phone {
  position: absolute;
  background: #1c2230;
  border-radius: 30px;
  border: 1.5px solid #30384a;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.hero-phone--main {
  width: 220px;
  top: 0;
  left: 10px;
  z-index: 2;
}

.hero-phone-screen {
  padding: 12px;
  background: var(--clr-dark-card);
}

.hps-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hps-header { margin-bottom: 8px; }

.hps-alert-banner {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,146,60,.08);
  border: 1px solid rgba(251,146,60,.2);
  border-radius: var(--r-sm);
  padding: 6px 8px;
  margin-bottom: 8px;
}

.hps-gauge-card {
  background: var(--clr-dark-surface);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--r-md);
  padding: 10px;
  margin-bottom: 6px;
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,34,52,.92);
  border: 1px solid #30384a;
  border-radius: var(--r-md);
  padding: 10px 14px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float-card 4s ease-in-out infinite;
}
.hero-float-card--1 { top: 30px;  right: -40px; animation-delay: 0s; }
.hero-float-card--2 { bottom: 100px; left: -50px; animation-delay: 1.4s; }
.hero-float-card--3 { bottom: 30px;  right: -30px; animation-delay: .7s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hfc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hfc-dot--ok    { background: var(--clr-green); box-shadow: 0 0 8px var(--clr-green); }
.hfc-dot--alert { background: var(--clr-red);   box-shadow: 0 0 8px var(--clr-red); }

.hfc-label {
  font-size: 10px;
  color: var(--clr-dark-muted);
  margin: 0 0 1px;
  white-space: nowrap;
}
.hfc-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-dark-text);
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}
.hfc-ok    { color: var(--clr-green); font-size: 10px; }
.hfc-alert { color: var(--clr-red);   font-size: 10px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--clr-orange), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================
   LOGO BAR
================================================ */
.logo-bar {
  background: var(--clr-light-bg);
  border-top: 1px solid var(--clr-light-border);
  border-bottom: 1px solid var(--clr-light-border);
  padding: 24px 0;
}

.logo-bar-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-light-muted);
  margin-bottom: 16px;
}

.logo-bar-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-bar-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-light-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-bar-sep {
  color: var(--clr-light-border);
  font-size: 18px;
}

/* ================================================
   FEATURES SECTION
================================================ */
.features-section { background: var(--clr-white); }

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

.feature-card {
  background: var(--clr-light-card);
  border: 1px solid var(--clr-light-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(249,115,22,.3);
}
.feature-card--highlight {
  background: linear-gradient(135deg, #fff9f5 0%, #ffffff 60%);
  border-color: rgba(249,115,22,.2);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,115,22,.1);
  color: var(--clr-orange);
  border-radius: var(--r-md);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-light-text);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--clr-light-muted);
  line-height: 1.65;
}

/* Feature mini screenshot */
.feature-screenshot {
  margin-top: 20px;
}

.fs-phone-mini {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-dark-border);
  border-radius: 12px;
  overflow: hidden;
}

.fs-screen {
  padding: 10px;
}

/* ================================================
   USE CASES SECTION
================================================ */
.use-cases-section {
  background: var(--clr-light-bg);
}

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

.use-case-card {
  background: var(--clr-light-card);
  border: 1px solid var(--clr-light-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow var(--t), transform var(--t);
}
.use-case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.uc-emoji {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.uc-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-light-text);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.uc-body p {
  font-size: 14px;
  color: var(--clr-light-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.uc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.uc-list li {
  font-size: 13px;
  color: var(--clr-light-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.uc-list li::before {
  content: '→';
  color: var(--clr-orange);
  flex-shrink: 0;
  font-weight: 700;
}

/* ================================================
   APP SHOWCASE
================================================ */
.app-showcase-section { background: var(--clr-white); }

.app-showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.app-tab {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-light-muted);
  border: 1px solid var(--clr-light-border);
  background: transparent;
  cursor: pointer;
  transition: all var(--t);
}
.app-tab:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}
.app-tab.active {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.3);
}

.app-tab-pane {
  display: none;
}
.app-tab-pane.active {
  display: block;
}

.app-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-split-text { }

.app-split-text h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--clr-light-text);
  margin-bottom: 14px;
}

.app-split-text p {
  font-size: 16px;
  color: var(--clr-light-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--clr-light-text);
}

.afl-icon {
  width: 22px;
  height: 22px;
  background: rgba(249,115,22,.1);
  color: var(--clr-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
}

.app-split-visual { display: flex; justify-content: center; }

/* App screen mockup */
.app-screen-mockup {
  background: var(--clr-dark-bg);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-dark);
}

.asm-bar {
  background: var(--clr-dark-surface);
  border-bottom: 1px solid var(--clr-dark-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.asm-dots {
  display: flex;
  gap: 5px;
}
.asm-dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.asm-dots span:nth-child(1) { background: #f87171; }
.asm-dots span:nth-child(2) { background: #fbbf24; }
.asm-dots span:nth-child(3) { background: #4ade80; }

.asm-url {
  flex: 1;
  background: var(--clr-dark-card);
  border-radius: var(--r-sm);
  padding: 4px 12px;
  font-size: 11px;
  color: var(--clr-dark-muted);
  font-family: 'JetBrains Mono', monospace;
}

.asm-content {
  display: flex;
  height: 320px;
}

.asm-sidebar {
  width: 56px;
  background: var(--clr-dark-surface);
  border-right: 1px solid var(--clr-dark-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 16px;
}

.asm-sidebar-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-dark-muted);
  transition: all var(--t);
}
.asm-sidebar-icon.active {
  background: rgba(249,115,22,.15);
  color: var(--clr-orange);
}

.asm-main {
  flex: 1;
  padding: 16px;
  overflow: hidden;
  background: var(--clr-dark-bg);
}

/* ================================================
   PRODUCTS SECTION
================================================ */
.products-section { background: var(--clr-light-bg); }

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

.product-card {
  background: var(--clr-light-card);
  border: 1px solid var(--clr-light-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.product-image-wrap {
  background: var(--clr-light-bg);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  position: relative;
  border-bottom: 1px solid var(--clr-light-border);
}

.product-img-placeholder svg {
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.12));
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--clr-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: .04em;
}

.product-info {
  padding: 28px;
}

.product-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 6px;
}

.product-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--clr-light-text);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  color: var(--clr-light-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.product-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-light-border);
}
.product-spec:last-child { border-bottom: none; padding-bottom: 0; }
.product-spec-label { color: var(--clr-light-muted); }
.product-spec-value { font-weight: 600; color: var(--clr-light-text); }

/* Plain li > span pattern used for product specs */
.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-light-border);
}
.product-specs li:last-child { border-bottom: none; }
.product-specs li span:first-child { color: var(--clr-light-muted); }
.product-specs li span:last-child { font-weight: 600; color: var(--clr-light-text); }

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.product-price {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--clr-light-text);
}

.product-price-note {
  font-size: 13px;
  color: var(--clr-light-muted);
}

.product-actions {
  display: flex;
  gap: 10px;
}
.product-actions .btn-primary { flex: 1; justify-content: center; }

.products-note {
  text-align: center;
  font-size: 14px;
  color: var(--clr-light-muted);
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(249,115,22,.06);
  border: 1px solid rgba(249,115,22,.15);
  border-radius: var(--r-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   PRICING SECTION
================================================ */
.pricing-section { background: var(--clr-white); }

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.billing-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-light-muted);
  transition: color var(--t);
}
.billing-label.active { color: var(--clr-light-text); }

.pricing-toggle {
  position: relative;
  width: 50px;
  height: 27px;
  background: var(--clr-light-border);
  border-radius: var(--r-full);
  cursor: pointer;
  border: none;
  transition: background var(--t);
}
.pricing-toggle.annual { background: var(--clr-orange); }
.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t);
}
.pricing-toggle.annual::after { transform: translateX(23px); }

.save-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(74,222,128,.15);
  color: #16a34a;
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: .03em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--clr-light-card);
  border: 1px solid var(--clr-light-border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pricing-card--featured {
  background: var(--clr-dark-bg);
  border: 2px solid var(--clr-orange);
  color: var(--clr-dark-text);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(249,115,22,.25);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-3px);
}

.plan-popular-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--clr-orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-light-muted);
  margin-bottom: 10px;
}
.pricing-card--featured .plan-name { color: var(--clr-dark-muted); }

.plan-price {
  margin-bottom: 6px;
}

.plan-price-amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.plan-price-per {
  font-size: 16px;
  color: var(--clr-light-muted);
  margin-left: 4px;
}
.pricing-card--featured .plan-price-per { color: var(--clr-dark-muted); }

.plan-price-note {
  font-size: 13px;
  color: var(--clr-light-muted);
  margin-bottom: 24px;
  min-height: 20px;
}
.pricing-card--featured .plan-price-note { color: var(--clr-dark-muted); }

.plan-desc {
  font-size: 14px;
  color: var(--clr-light-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}
.pricing-card--featured .plan-desc { color: #94a3b8; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--clr-light-text);
}
.pricing-card--featured .plan-features li { color: var(--clr-dark-text); }

.pf-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(74,222,128,.15);
  color: var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 900;
}

.pf-included .pf-check { background: rgba(74,222,128,.15); color: var(--clr-green); }
.pf-excluded {
  color: var(--clr-light-muted) !important;
  text-decoration: line-through;
  opacity: .6;
}
.pf-excluded .pf-check {
  background: rgba(100,116,139,.1);
  color: var(--clr-light-muted);
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--t);
}

.plan-cta--primary {
  background: var(--clr-orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(249,115,22,.4);
}
.plan-cta--primary:hover {
  background: var(--clr-orange-dark);
  box-shadow: 0 8px 28px rgba(249,115,22,.55);
  transform: translateY(-1px);
}

.plan-cta--outline {
  border: 1.5px solid var(--clr-light-border);
  color: var(--clr-light-text);
}
.plan-cta--outline:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  background: rgba(249,115,22,.06);
}

.pricing-hardware-note {
  margin-top: 40px;
}

.phn-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(249,115,22,.06);
  border: 1px solid rgba(249,115,22,.18);
  border-radius: var(--r-md);
  padding: 18px 24px;
  max-width: 680px;
  margin: 0 auto;
  color: var(--clr-light-text);
}
.phn-inner svg { flex-shrink: 0; color: var(--clr-orange); }
.phn-inner strong { font-weight: 700; display: block; margin-bottom: 4px; }
.phn-inner p { font-size: 14px; color: var(--clr-light-muted); margin: 0; }

/* ================================================
   TESTIMONIALS
================================================ */
.testimonials-section { background: var(--clr-light-bg); }

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

.testimonial-card {
  background: var(--clr-light-card);
  border: 1px solid var(--clr-light-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow var(--t), transform var(--t);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars span {
  color: var(--clr-yellow);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--clr-light-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ta-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: var(--clr-light-bg);
  border: 2px solid var(--clr-light-border);
}

.ta-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-light-text);
}
.ta-info span {
  font-size: 12px;
  color: var(--clr-light-muted);
}

/* ================================================
   FAQ
================================================ */
.faq-section { background: var(--clr-white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--clr-light-card);
  border: 1px solid var(--clr-light-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] { border-color: rgba(249,115,22,.35); }
.faq-item[open] .faq-q { color: var(--clr-orange); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-light-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--t), background var(--t);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-q:hover { background: var(--clr-light-bg); }

.faq-q-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-light-muted);
  font-size: 16px;
  font-weight: 700;
  transition: all var(--t);
}
.faq-item[open] .faq-q-icon {
  background: var(--clr-orange);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--clr-light-muted);
  line-height: 1.75;
}

/* ================================================
   CONTACT
================================================ */
.contact-section { background: var(--clr-light-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--clr-light-text);
  margin-bottom: 12px;
}
.contact-info p {
  font-size: 15px;
  color: var(--clr-light-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--clr-light-text);
}

.cd-icon {
  width: 36px;
  height: 36px;
  background: rgba(249,115,22,.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  flex-shrink: 0;
}

.contact-form {
  background: var(--clr-white);
  border: 1px solid var(--clr-light-border);
  border-radius: var(--r-xl);
  padding: 36px;
}

.cf-group {
  margin-bottom: 20px;
}
.cf-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-light-text);
  margin-bottom: 7px;
}
.cf-group input,
.cf-group textarea,
.cf-group select {
  width: 100%;
  padding: 11px 14px;
  background: var(--clr-light-bg);
  border: 1px solid var(--clr-light-border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--clr-light-text);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.cf-group textarea {
  resize: vertical;
  min-height: 110px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-submit {
  width: 100%;
  padding: 14px;
  background: var(--clr-orange);
  color: #fff;
  border: none;
  border-radius: var(--r-full);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 4px 18px rgba(249,115,22,.35);
}
.cf-submit:hover {
  background: var(--clr-orange-dark);
  box-shadow: 0 6px 24px rgba(249,115,22,.5);
  transform: translateY(-1px);
}

.cf-success {
  display: none;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.3);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
  color: #16a34a;
  font-weight: 600;
  font-size: 15px;
  margin-top: 14px;
}
.cf-success.show { display: block; }

/* ================================================
   PRIVACY SECTION
================================================ */
.privacy-section { background: var(--clr-white); }

.privacy-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-wrap h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.privacy-wrap .updated {
  font-size: 13px;
  color: var(--clr-light-muted);
  margin-bottom: 36px;
}
.privacy-wrap h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-light-text);
  margin: 28px 0 10px;
}
.privacy-wrap p {
  font-size: 15px;
  color: var(--clr-light-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.privacy-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.privacy-wrap ul li {
  font-size: 15px;
  color: var(--clr-light-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}

/* ================================================
   FOOTER
================================================ */
.site-footer {
  background: var(--clr-dark-bg);
  color: var(--clr-dark-text);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--clr-dark-muted);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(48,56,74,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-dark-muted);
  font-size: 14px;
  transition: all var(--t);
}
.footer-social a:hover {
  background: rgba(249,115,22,.15);
  border-color: rgba(249,115,22,.3);
  color: var(--clr-orange);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-dark-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #6b7280;
  padding: 4px 0;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--clr-dark-text); }

.footer-bottom {
  border-top: 1px solid var(--clr-dark-border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--clr-dark-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--clr-dark-muted);
  transition: color var(--t);
}
.footer-bottom-links a:hover { color: var(--clr-dark-text); }

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--clr-dark-text);
  margin-bottom: 14px;
}

/* ================================================
   RESPONSIVE
================================================ */

/* ---- Tablet 1024px ---- */
@media (max-width: 1024px) {
  :root { --sp-section: 72px; }

  .features-grid,
  .use-cases-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { display: none; }

  .hero-content { max-width: 100%; text-align: center; }
  .hero-actions,
  .hero-trust { justify-content: center; }

  .app-split { grid-template-columns: 1fr; gap: 40px; }
  .app-split-visual { order: -1; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-3px); }

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

  .products-grid { grid-template-columns: 1fr; max-width: 480px; }

  .pricing-hardware-note { grid-template-columns: 1fr 1fr; }
}

/* ---- Mobile 768px ---- */
@media (max-width: 768px) {
  :root { --sp-section: 56px; }

  .nav-links { display: none; }
  .nav-app-link { display: none; }
  .nav-hamburger { display: flex; }

  .features-grid,
  .use-cases-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 64px;
  }
  .hero-title { font-size: clamp(30px, 8vw, 44px); }
  .hero-subtitle { font-size: 16px; }

  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }

  .pricing-hardware-note { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cf-row { grid-template-columns: 1fr; }

  .app-showcase-tabs { gap: 6px; }
  .app-tab { font-size: 13px; padding: 8px 14px; }

  .section-title { font-size: clamp(24px, 6vw, 34px); }
  .section-sub { font-size: 16px; }

  .logo-bar-track { justify-content: flex-start; }
  .logo-bar-sep { display: none; }
}

/* ---- Small mobile 480px ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

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

  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-reject,
  .cookie-accept { flex: 1; text-align: center; }

  .contact-form { padding: 24px 20px; }
  .pricing-card { padding: 24px 20px; }
  .feature-card { padding: 22px 18px; }
  .testimonial-card { padding: 22px 18px; }
  .product-info { padding: 22px 18px; }
}

/* ================================================
   PRICING TOGGLE (pt-* classes used in HTML)
================================================ */
.pt-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-light-muted);
}
.pt-thumb { display: none; } /* visual handled by ::after on .pricing-toggle */
.pt-save {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: rgba(74,222,128,.15);
  color: #16a34a;
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-left: 6px;
}

/* Plan price block */
.pricing-card-header { margin-bottom: 16px; }

.plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-currency {
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-light-text);
  align-self: flex-start;
  margin-top: 6px;
}
.pricing-card--featured .plan-currency { color: var(--clr-dark-text); }

.plan-price {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--clr-light-text);
}
.pricing-card--featured .plan-price { color: var(--clr-dark-text); }

.plan-price--custom {
  font-size: 36px;
  letter-spacing: -.03em;
}

.plan-period {
  font-size: 16px;
  color: var(--clr-light-muted);
  margin-left: 2px;
}
.pricing-card--featured .plan-period { color: var(--clr-dark-muted); }

.plan-billed-note {
  font-size: 13px;
  color: var(--clr-dark-muted);
  margin-bottom: 16px;
  min-height: 20px;
}

.plan-note {
  font-size: 12px;
  color: var(--clr-dark-muted);
  text-align: center;
  margin-top: 12px;
}

/* ================================================
   CONTACT — alternate class names used in HTML
================================================ */
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--clr-light-text);
  margin-bottom: 14px;
}
.contact-detail-item:last-child { margin-bottom: 0; }

.cdi-icon {
  width: 36px;
  height: 36px;
  background: rgba(249,115,22,.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  flex-shrink: 0;
}

.contact-app-link {
  margin-top: 28px;
}

.cf-privacy {
  font-size: 12px;
  color: var(--clr-light-muted);
  margin-top: 10px;
  line-height: 1.5;
}
.cf-privacy a { color: var(--clr-orange); }

/* ================================================
   PRIVACY — updated note
================================================ */
.privacy-updated {
  font-size: 13px;
  color: var(--clr-light-muted);
  margin-bottom: 36px;
}

/* ================================================
   FOOTER — misc classes
================================================ */
.footer-tagline {
  font-size: 13px;
  color: var(--clr-dark-muted);
  margin-top: 4px;
}

.footer-lang {
  font-size: 13px;
  color: var(--clr-dark-muted);
}

/* Testimonial avatar (text initials fallback) */
.ta-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  background: var(--clr-orange);
  border: 2px solid rgba(255,255,255,.15);
}

/* ================================================
   UTILITY: Visually hidden (accessibility)
================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
