/* ============================================
   TITAN PAW — Commercial Web
   Elite professional B2B design
   ============================================ */

:root {
  --navy-900: #0A1F2E;
  --navy-800: #102B3E;
  --navy-700: #1A3A52;
  --cyan-400: #4FD1E0;
  --cyan-500: #00B8D4;
  --cyan-600: #0096B8;
  --cream-50: #FAF8F4;
  --cream-100: #F5F1EA;
  --warm-200: #E8DFCD;
  --gray-700: #3A4756;
  --gray-500: #6B7785;
  --gray-300: #C9D1DB;
  --gold: #C9A961;
  --leaf: #4A7C59;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(10,31,46,0.06);
  --shadow-md: 0 8px 24px rgba(10,31,46,0.10);
  --shadow-lg: 0 20px 50px rgba(10,31,46,0.15);
  --shadow-xl: 0 30px 80px rgba(10,31,46,0.20);

  --t-fast: 0.2s cubic-bezier(.4,0,.2,1);
  --t-mid: 0.35s cubic-bezier(.4,0,.2,1);
  --t-slow: 0.6s cubic-bezier(.16,1,.3,1);

  --max-w: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream-50);
  color: var(--navy-900);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10,31,46,0.06);
  transition: all var(--t-mid);
}
.nav.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.brand-logo {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  border-radius: 10px;
  display: grid; place-items: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,184,212,0.4);
}
.brand-text { font-family: 'Inter', sans-serif; }
.brand-text span { color: var(--cyan-600); font-weight: 800; }

.nav-links {
  display: flex; gap: 32px;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--gray-700);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a:hover { color: var(--cyan-600); }

.nav-right { display: flex; align-items: center; gap: 18px; }

.lang-switch {
  display: flex; gap: 4px;
  background: rgba(10,31,46,0.06);
  border-radius: 999px;
  padding: 4px;
  font-size: 0.78rem;
  font-weight: 600;
}
.lang-switch button {
  border: none; background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--gray-700);
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--t-fast);
}
.lang-switch button.active {
  background: var(--navy-900);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: all var(--t-mid);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--cream-50);
  box-shadow: 0 4px 14px rgba(10,31,46,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,31,46,0.35);
  background: var(--cyan-600);
}
.btn-accent {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  color: white;
  box-shadow: 0 6px 20px rgba(0,184,212,0.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,184,212,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}
.btn-outline:hover {
  background: var(--navy-900);
  color: var(--cream-50);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  padding: 10px 16px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(79,209,224,0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,97,0.12), transparent 50%),
    linear-gradient(180deg, var(--cream-50), var(--cream-100));
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='%230A1F2E' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0,184,212,0.10);
  color: var(--cyan-600);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  border: 1px solid rgba(0,184,212,0.22);
}
.hero-tag strong {
  background: linear-gradient(135deg, var(--cyan-500), var(--navy-900));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,184,212,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,184,212,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(0,184,212,0); }
}

.hero h1 {
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--gray-700);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(10,31,46,0.08);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}
.stat-num span { color: var(--cyan-600); }
.stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}
.hero-visual:hover img { transform: scale(1.04); }
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,31,46,0.15), rgba(0,184,212,0.10));
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  border-radius: 12px;
  display: grid; place-items: center;
  color: white; font-size: 1.4rem;
}
.hero-badge-txt {
  font-size: 0.84rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.hero-badge-txt strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

/* ============================================
   SECTION GENERIC
   ============================================ */
section { padding: 100px 0; position: relative; }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin-bottom: 18px;
}
.section-title { margin-bottom: 20px; max-width: 740px; }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 680px;
  margin-bottom: 60px;
  line-height: 1.65;
}

/* ============================================
   WORLD / PAW WORLDWIDE
   ============================================ */
.world {
  background: linear-gradient(180deg, white 0%, var(--cream-50) 100%);
  position: relative;
  overflow: hidden;
}
.world::before {
  content: '';
  position: absolute;
  top: 20%; right: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,184,212,0.08), transparent 60%);
  pointer-events: none;
}
.world::after {
  content: '';
  position: absolute;
  bottom: 0%; left: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,169,97,0.06), transparent 60%);
  pointer-events: none;
}
.world-head { text-align: center; max-width: 780px; margin: 0 auto 60px; position: relative; z-index: 1; }
.world-head .section-tag,
.world-head .section-title,
.world-head .section-sub {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.world-head .section-title { margin-bottom: 18px; }
.world-head .section-sub { margin-bottom: 0; }

.world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.world-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px 22px;
  background: white;
  border: 1px solid rgba(10,31,46,0.07);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--t-mid);
  color: inherit;
  text-decoration: none;
}
.world-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--cyan-400), var(--cyan-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}
.world-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,184,212,0.25);
}
.world-card:hover::before { transform: scaleX(1); }
.world-flag {
  font-size: 1.9rem;
  line-height: 1;
}
.world-body { flex: 1; }
.world-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.world-region,
.world-cat {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.world-region {
  background: rgba(10,31,46,0.06);
  color: var(--gray-700);
}
.world-cat { color: white; }
.cat-agri { background: var(--leaf); }
.cat-med  { background: #B45456; }
.cat-res  { background: var(--navy-700); }
.cat-ind  { background: var(--gold); color: #4a3a14; }

.world-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--navy-900);
}
.world-card p {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.world-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan-600);
  margin-top: 4px;
  transition: gap var(--t-fast);
}
.world-card:hover .world-link { gap: 8px; }

@media (max-width: 980px) {
  .world-grid { grid-template-columns: 1fr; }
}
@media (min-width: 981px) and (max-width: 1199px) {
  .world-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits { background: white; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  padding: 40px 32px;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10,31,46,0.06);
  transition: all var(--t-mid);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--cyan-400), var(--cyan-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,184,212,0.15), rgba(0,184,212,0.05));
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--cyan-600);
  margin-bottom: 24px;
}
.benefit-card h3 { margin-bottom: 12px; }
.benefit-card p { color: var(--gray-700); font-size: 0.96rem; }

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,184,212,0.06), transparent 70%);
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.process-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid; place-items: center;
  padding: 12px;
}
.process-visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 22px 44px rgba(10,31,46,0.12));
}

/* ===== TITAN dome animation cycle (8s) =====
   Phase 0 (0-25%):  water clear, sun normal      → state AGUA
   Phase 1 (25-50%): sun bright, beam strong       → state SOL
   Phase 2 (50-75%): glow, particles, water shift  → state ACTIVA
   Phase 3 (75-100%): drop falls                    → state PAW
*/
.t-sun-disc {
  transform-origin: 200px 80px;
  transform-box: fill-box;
  animation: t-sun 8s ease-in-out infinite;
}
@keyframes t-sun {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  25%      { opacity: 1; transform: scale(1.10); }
  50%, 75% { opacity: 1; transform: scale(1.05); }
}

.t-sun-halo {
  animation: t-halo 8s ease-in-out infinite;
}
@keyframes t-halo {
  0%, 100% { opacity: 0.45; }
  25%      { opacity: 0.95; }
  50%      { opacity: 0.85; }
  75%      { opacity: 0.6; }
}

.t-sun-sparkle circle {
  animation: t-sparkle 4s ease-in-out infinite;
}
.t-sun-sparkle circle:nth-child(2) { animation-delay: 0.7s; }
.t-sun-sparkle circle:nth-child(3) { animation-delay: 1.4s; }
.t-sun-sparkle circle:nth-child(4) { animation-delay: 2.1s; }
@keyframes t-sparkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.4); }
}

.t-beam {
  opacity: 0.15;
  animation: t-beam 8s ease-in-out infinite;
}
@keyframes t-beam {
  0%       { opacity: 0.15; }
  25%      { opacity: 0.75; }
  50%      { opacity: 0.6; }
  75%      { opacity: 0.3; }
  100%     { opacity: 0.15; }
}

.t-glow {
  transform-origin: 200px 345px;
  transform-box: fill-box;
  animation: t-glow 8s ease-in-out infinite;
}
@keyframes t-glow {
  0%, 25%   { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 1; transform: scale(1); }
  75%       { opacity: 0.85; transform: scale(0.95); }
  90%, 100% { opacity: 0; transform: scale(0.6); }
}

.t-particles circle {
  animation: t-particle 8s ease-in-out infinite;
}
.t-particles .t-p1 { animation-delay: 0s; }
.t-particles .t-p2 { animation-delay: -0.4s; }
.t-particles .t-p3 { animation-delay: -0.8s; }
.t-particles .t-p4 { animation-delay: -1.2s; }
.t-particles .t-p5 { animation-delay: -0.2s; }
.t-particles .t-p6 { animation-delay: -0.6s; }
@keyframes t-particle {
  0%, 35%     { opacity: 0; transform: translateY(0); }
  50%         { opacity: 0.95; transform: translateY(-4px); }
  60%         { opacity: 0.85; transform: translateY(-9px); }
  75%, 100%   { opacity: 0; transform: translateY(-14px); }
}

.t-water-paw {
  animation: t-water-paw 8s ease-in-out infinite;
}
@keyframes t-water-paw {
  0%, 35%   { opacity: 0; }
  55%       { opacity: 0.6; }
  70%, 90%  { opacity: 0.9; }
  100%      { opacity: 0; }
}

.t-drop {
  opacity: 0;
  animation: t-drop 8s ease-in-out infinite;
}
@keyframes t-drop {
  0%, 65%   { opacity: 0; transform: translate(200px, 462px) scale(0.3); }
  72%       { opacity: 1; transform: translate(200px, 480px) scale(1); }
  88%       { opacity: 1; transform: translate(200px, 540px) scale(0.95); }
  95%, 100% { opacity: 0; transform: translate(200px, 580px) scale(0.7); }
}

.t-state-label,
.t-states circle {
  transition: all 0.4s ease;
}
.t-states circle.active {
  fill: #06B6D4;
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(6,182,212,0.5));
}

@media (prefers-reduced-motion: reduce) {
  .t-sun-disc, .t-sun-halo, .t-sun-sparkle circle,
  .t-beam, .t-glow, .t-particles circle,
  .t-water-paw, .t-drop {
    animation: none;
  }
  .t-drop { opacity: 1; transform: translate(200px, 490px); }
}

.process-steps { list-style: none; counter-reset: step; }
.process-step {
  position: relative;
  padding: 24px 0 24px 72px;
  counter-increment: step;
  border-bottom: 1px solid rgba(10,31,46,0.08);
  transition: all var(--t-fast);
}
.process-step:last-child { border-bottom: none; }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 24px;
  width: 52px; height: 52px;
  background: white;
  border: 1.5px solid rgba(10,31,46,0.12);
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  transition: all var(--t-mid);
}
.process-step:hover::before {
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-900);
  transform: scale(1.05);
}
.process-step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.process-step p { color: var(--gray-700); font-size: 0.96rem; }

/* ============================================
   APPLICATIONS / TABS
   ============================================ */
.applications { background: var(--navy-900); color: var(--cream-50); }
.applications .section-title { color: var(--cream-50); }
.applications .section-tag { color: var(--cyan-400); }
.applications .section-sub { color: rgba(245,241,234,0.75); }

.tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.08);
}
.tab-btn {
  padding: 12px 26px;
  background: transparent;
  border: none;
  color: rgba(245,241,234,0.7);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-fast);
  letter-spacing: 0.02em;
}
.tab-btn:hover { color: white; }
.tab-btn.active {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  color: white;
  box-shadow: 0 4px 14px rgba(0,184,212,0.3);
}

.tab-panel {
  display: none;
  animation: fadeUp 0.6s var(--t-slow);
}
.tab-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tab-image {
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.tab-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.tab-image:hover img { transform: scale(1.05); }

.tab-info h3 {
  color: var(--cream-50);
  margin-bottom: 20px;
  font-size: 2rem;
}
.tab-info > p {
  color: rgba(245,241,234,0.80);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.tab-points { list-style: none; margin-bottom: 32px; }
.tab-points li {
  padding: 14px 0;
  display: flex;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,241,234,0.85);
}
.tab-points li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  background: rgba(0,184,212,0.18);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D4FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}
.tab-points li strong {
  color: var(--cream-50);
  display: block;
  font-weight: 600;
}

.tab-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}
.tab-metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cyan-400);
}
.tab-metric-lbl {
  font-size: 0.76rem;
  color: rgba(245,241,234,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================
   COMPARISON
   ============================================ */
.compare { background: white; }
.compare-table {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,31,46,0.08);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  padding: 22px 32px;
  border-bottom: 1px solid rgba(10,31,46,0.06);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  background: var(--navy-900);
  color: var(--cream-50);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.compare-row.head > div:last-child {
  color: var(--cyan-400);
  display: flex; align-items: center; gap: 8px;
}
.compare-feat { font-weight: 500; color: var(--navy-900); }
.compare-trad { color: var(--gray-500); }
.compare-titan { color: var(--cyan-600); font-weight: 600; }
.compare-row:not(.head):nth-child(even) { background: white; }

/* ============================================
   TESTIMONIAL / CASE
   ============================================ */
.cases {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--cream-50);
  position: relative;
}
.cases .section-title { color: var(--cream-50); }
.cases .section-tag { color: var(--cyan-400); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--t-mid);
}
.case-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.case-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream-50);
  margin-bottom: 28px;
  position: relative;
  padding-top: 30px;
}
.case-quote::before {
  content: '"';
  position: absolute;
  top: -10px; left: -8px;
  font-size: 5rem;
  color: var(--cyan-400);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
}
.case-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.case-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  display: grid; place-items: center;
  font-weight: 700;
  color: white;
}
.case-meta strong {
  display: block;
  color: var(--cream-50);
  font-weight: 600;
  font-size: 0.95rem;
}
.case-meta span {
  color: rgba(245,241,234,0.6);
  font-size: 0.85rem;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: var(--cream-50);
  padding: 120px 0;
}
.cta-box {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,184,212,0.15), transparent 60%);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,97,0.10), transparent 60%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: var(--cream-50); margin-bottom: 20px; }
.cta-box p {
  color: rgba(245,241,234,0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-box .btn-primary {
  background: var(--cream-50);
  color: var(--navy-900);
}
.cta-box .btn-primary:hover {
  background: var(--cyan-400);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact { background: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { color: var(--gray-700); margin-bottom: 36px; font-size: 1.05rem; line-height: 1.7; }
.contact-line {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(10,31,46,0.08);
  align-items: center;
}
.contact-line:last-child { border-bottom: 1px solid rgba(10,31,46,0.08); }
.contact-line-icon {
  width: 44px; height: 44px;
  background: var(--cream-100);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--cyan-600);
  flex-shrink: 0;
}
.contact-line-info { font-size: 0.95rem; color: var(--gray-700); }
.contact-line-info strong { display: block; color: var(--navy-900); font-weight: 600; }

.contact-form {
  background: var(--cream-50);
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10,31,46,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1.5px solid rgba(10,31,46,0.10);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
  color: var(--navy-900);
  transition: all var(--t-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(0,184,212,0.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: start;
  margin: 12px 0 24px;
  font-size: 0.85rem;
  color: var(--gray-700);
}
.form-consent input { margin-top: 3px; }
.contact-form .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.foot-brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 16px; }
.foot-tag { color: rgba(245,241,234,0.6); line-height: 1.6; margin-bottom: 24px; font-size: 0.92rem; }
.foot-col h4 { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--cyan-400); margin-bottom: 20px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a { color: rgba(245,241,234,0.65); font-size: 0.92rem; transition: color var(--t-fast); }
.foot-col a:hover { color: var(--cream-50); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,241,234,0.5);
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-grid, .process-grid, .tab-content, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .benefit-grid, .case-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 80px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .nav-links { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .tab-bar { overflow-x: auto; width: 100%; }
  .cta-box { padding: 50px 30px; }
  .contact-form { padding: 28px; }
  section { padding: 70px 0; }
}
