/* ═══════════════════════════════════════════════
   LUMA SMART — style.css
   Light premium theme · Gold & Cream
   Font: Playfair Display (serif) + Plus Jakarta Sans
═══════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --cream: #f7f4ee;
  --warm-white: #fdfcf8;
  --charcoal: #1a1c20;
  --charcoal2: #2a2d33;
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --gold-pale: #f5e6c0;
  --green: #2a7a4a;
  --green-light: #e8f5ee;
  --text: #1a1c20;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: rgba(26,28,32,0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --max-w: 1140px;
  --nav-h: 72px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }
input, textarea, select { font-family: inherit; }

/* ─── UTILITY ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.gap-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 30px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.25s; border: none;
  text-decoration: none; line-height: 1;
}
.btn-primary {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 20px rgba(200,146,42,0.35);
}
.btn-primary:hover {
  background: #b07e22; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.45);
}
.btn-secondary {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { background: var(--cream); border-color: var(--charcoal); }
.btn-white {
  background: #fff; color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-lg { padding: 20px 40px; font-size: 17px; }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── SECTION LABELS ─── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 18px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-muted); max-width: 580px; line-height: 1.7;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.animate-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ═════════════════════════════════════════════
   FLOATING WHATSAPP
═════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 12px;
}
.whatsapp-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.25s;
  cursor: pointer;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-tooltip {
  background: var(--charcoal); color: #fff; font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; transform: translateX(10px); transition: all 0.2s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ═════════════════════════════════════════════
   NAVIGATION
═════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(253,252,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 900; letter-spacing: -0.5px; color: var(--charcoal);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-size: 14px; font-weight: 600; color: var(--charcoal);
  display: flex; align-items: center; gap: 7px;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--charcoal);
  border-radius: 2px; transition: all 0.3s; display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 998;
  background: var(--warm-white); padding: 32px 24px;
  transform: translateX(100%); transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul a {
  display: block; padding: 14px 16px;
  font-size: 18px; font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: var(--text-muted); border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav ul a:hover { color: var(--charcoal); background: var(--cream); }
.mobile-nav .mobile-cta { margin-top: 24px; }
.mobile-nav .mobile-phone {
  display: flex; align-items: center; gap: 8px;
  padding: 16px; font-size: 17px; font-weight: 600; color: var(--text-muted);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 480px) {
  .btn.btn-sm.btn-primary { display: none; }
}

/* ═════════════════════════════════════════════
   HERO
═════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
  background: var(--warm-white);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 20%, rgba(200,146,42,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(42,122,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold); padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 68px); font-weight: 900;
  line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 18px; color: var(--text-muted); max-width: 480px;
  line-height: 1.7; margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; animation: fadeUp 0.7s 0.15s ease both; }
.hero-mockup {
  background: var(--charcoal); border-radius: 28px;
  padding: 32px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-mockup::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1e2228 0%, #0f1215 100%);
}
.mockup-header {
  position: relative; display: flex;
  justify-content: space-between; align-items: center;
}
.mockup-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: #fff; font-weight: 700;
}
.mockup-time {
  font-size: 24px; font-weight: 700; color: var(--gold-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mockup-rooms {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 10px; flex: 1;
}
.room-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.3s, border-color 0.3s;
}
.room-card.active {
  background: rgba(200,146,42,0.12); border-color: rgba(200,146,42,0.3);
}
.room-icon { font-size: 22px; }
.room-name { font-size: 12px; color: rgba(255,255,255,0.5); }
.room-status { font-size: 13px; font-weight: 600; color: #fff; }
.room-card.active .room-status { color: var(--gold-light); }
.room-toggle {
  width: 34px; height: 20px; border-radius: 10px;
  background: rgba(255,255,255,0.1); position: relative;
  cursor: pointer; margin-top: auto; transition: background 0.3s;
}
.room-card.active .room-toggle { background: var(--gold); }
.room-toggle::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: all 0.3s;
}
.room-card.active .room-toggle::after { left: 16px; background: #fff; }
.mockup-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.badge-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; font-size: 18px;
}
.badge-text { color: var(--charcoal); line-height: 1.3; }
.badge-text strong { display: block; font-size: 15px; color: var(--green); }

/* ═════════════════════════════════════════════
   STATS BAR
═════════════════════════════════════════════ */
.stats-bar {
  background: var(--charcoal); padding: 48px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 20px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 900; color: var(--gold-light);
  line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.stat-sublabel { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ═════════════════════════════════════════════
   SERVICES
═════════════════════════════════════════════ */
.services { padding: 96px 0; background: var(--warm-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.3);
}
.service-card.featured {
  background: var(--charcoal); color: #fff; border-color: transparent;
}
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--gold-pale); display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin-bottom: 22px;
}
.service-card.featured .service-icon { background: rgba(200,146,42,0.2); }
.service-card h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  margin-bottom: 12px; line-height: 1.25;
}
.service-card p {
  font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px;
}
.service-card.featured p { color: rgba(255,255,255,0.6); }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 100px;
  background: rgba(200,146,42,0.1); color: var(--gold);
}
.service-card.featured .service-tag {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
}

/* ═════════════════════════════════════════════
   HOW IT WORKS
═════════════════════════════════════════════ */
.how { padding: 96px 0; background: var(--cream); }
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-top: 60px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 20px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.how-step:last-child { border-bottom: none; }
.how-step:hover .step-circle { background: var(--gold); color: #fff; }
.step-circle {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-pale); border: 2px solid rgba(200,146,42,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 17px; color: var(--gold); transition: all 0.25s;
}
.how-step-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.how-step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.how-visual {
  background: var(--charcoal); border-radius: var(--radius);
  padding: 40px; min-height: 420px; display: flex; flex-direction: column;
  justify-content: space-between; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.how-visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,0.15), transparent 70%);
}
.how-visual-title {
  font-family: 'Playfair Display', serif; font-size: 22px;
  color: #fff; font-weight: 700; position: relative;
}
.how-devices {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative;
}
.device {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 18px;
}
.device-icon { font-size: 28px; margin-bottom: 8px; }
.device-name { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.device-val { font-size: 18px; font-weight: 700; color: #fff; }
.device.on .device-val { color: var(--gold-light); }
.how-cta-row { position: relative; }

/* ═════════════════════════════════════════════
   PRICING
═════════════════════════════════════════════ */
.pricing { padding: 96px 0; background: var(--warm-white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  background: var(--charcoal); border-color: var(--gold); color: #fff;
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 16px; border-radius: 100px; letter-spacing: 1px; white-space: nowrap;
}
.plan-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.pricing-card.featured .plan-tag { color: var(--gold-light); }
.plan-name {
  font-family: 'Playfair Display', serif; font-size: 24px;
  font-weight: 700; margin-bottom: 6px; line-height: 1.15;
}
.plan-for {
  font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.pricing-card.featured .plan-for {
  color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.1);
}
.plan-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-price {
  font-family: 'Playfair Display', serif; font-size: 38px;
  font-weight: 900; line-height: 1;
}
.plan-currency { font-size: 18px; font-weight: 600; color: var(--text-muted); }
.pricing-card.featured .plan-currency { color: rgba(255,255,255,0.6); }
.plan-from { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-card.featured .plan-from { color: rgba(255,255,255,0.4); }
.plan-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; flex: 1; margin-bottom: 28px;
}
.plan-features li {
  font-size: 14px; display: flex; align-items: flex-start;
  gap: 10px; line-height: 1.5;
}
.check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check svg { width: 10px; height: 10px; stroke: var(--green); stroke-width: 2.5; fill: none; }
.pricing-card.featured .check { background: rgba(200,146,42,0.2); }
.pricing-card.featured .check svg { stroke: var(--gold-light); }
.plus-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(200,146,42,0.15); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
  font-size: 12px; font-weight: 700; color: var(--gold);
}
.plan-cta {
  display: block; text-align: center; padding: 15px;
  border-radius: 100px; font-size: 15px; font-weight: 700;
  transition: all 0.25s; cursor: pointer; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pricing-card:not(.featured) .plan-cta { background: var(--charcoal); color: #fff; }
.pricing-card:not(.featured) .plan-cta:hover { opacity: 0.85; }
.pricing-card.featured .plan-cta {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 20px rgba(200,146,42,0.4);
}
.pricing-card.featured .plan-cta:hover { background: #b07e22; }

/* Add-ons */
.addons-row {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; margin-top: 24px;
}
.addons-title {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; margin-bottom: 20px;
}
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.addon {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px; transition: border-color 0.2s;
}
.addon:hover { border-color: rgba(200,146,42,0.4); }
.addon-icon { font-size: 22px; margin-bottom: 8px; }
.addon-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.addon-price {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: var(--gold); margin-bottom: 4px;
}
.addon-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ROI note */
.roi-note {
  background: var(--green-light); border: 1px solid rgba(42,122,74,0.2);
  border-radius: var(--radius-sm); padding: 18px 24px;
  margin-top: 20px; display: flex; gap: 14px; align-items: flex-start;
}
.roi-icon { font-size: 22px; flex-shrink: 0; }
.roi-text { font-size: 14px; color: var(--green); line-height: 1.6; }
.roi-text strong { font-weight: 700; }

/* ═════════════════════════════════════════════
   TESTIMONIALS
═════════════════════════════════════════════ */
.testimonials { padding: 96px 0; background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 0.3s; box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; }
.star { color: var(--gold-light); font-size: 16px; }
.testimonial-text {
  font-size: 15px; line-height: 1.7; color: var(--text-muted); flex: 1; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; }
.author-city { font-size: 12px; color: var(--text-light); }
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 20px; margin-top: 40px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow-sm);
}
.google-badge .g-stars { color: #fbbc04; font-size: 16px; }

/* ═════════════════════════════════════════════
   ABOUT
═════════════════════════════════════════════ */
.about { padding: 96px 0; background: var(--warm-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-visual { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--charcoal2) 0%, var(--charcoal) 100%);
  overflow: hidden; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.about-photo-placeholder {
  width: 100%; padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff; position: relative;
}
.about-photo-name {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
}
.about-photo-role { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.about-photo-icon {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #2a2d33, #0f1215);
}
.about-photo-icon-inner { text-align: center; color: rgba(255,255,255,0.15); }
.about-photo-icon-inner div:first-child { font-size: 72px; }
.about-photo-icon-inner div:last-child {
  font-family: 'Playfair Display', serif; font-size: 18px; margin-top: 8px;
}
.about-cert {
  position: absolute; top: 24px; right: -20px;
  background: #fff; border-radius: 14px; padding: 16px 18px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; color: var(--text-muted);
}
.about-cert strong { font-size: 14px; color: var(--charcoal); }
.about-content h2 { margin-bottom: 12px; }
.about-content p {
  font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px;
}
.about-highlights { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.about-highlight {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px;
  background: var(--cream); border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.highlight-icon { font-size: 22px; flex-shrink: 0; }
.highlight-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.highlight-body p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ═════════════════════════════════════════════
   TECHNOLOGIES
═════════════════════════════════════════════ */
.tech { padding: 72px 0; background: var(--cream); border-top: 1px solid var(--border); }
.tech-eyebrow { text-align: center; margin-bottom: 48px; }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tech-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 22px; text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tech-card:hover { border-color: rgba(200,146,42,0.3); box-shadow: var(--shadow-sm); }
.tech-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.tech-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.tech-icon { font-size: 28px; margin-bottom: 10px; }

/* ═════════════════════════════════════════════
   FAQ
═════════════════════════════════════════════ */
.faq { padding: 96px 0; background: var(--warm-white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 56px; align-items: start;
}
.faq-item {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(200,146,42,0.3); }
.faq-item.open { border-color: var(--gold); }
.faq-question {
  padding: 22px 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; user-select: none;
}
.faq-q-text { font-size: 15px; font-weight: 600; line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px; color: var(--text-muted); transition: all 0.25s; line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(45deg);
}
.faq-answer {
  display: none; padding: 0 24px 22px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ═════════════════════════════════════════════
   CONTACT FORM
═════════════════════════════════════════════ */
.contact { padding: 96px 0; background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-method:hover { border-color: rgba(200,146,42,0.3); box-shadow: var(--shadow-sm); }
.contact-method-icon { font-size: 22px; flex-shrink: 0; }
.contact-method strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-method span { font-size: 13px; color: var(--text-muted); }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden;
}
.contact-form { padding: 40px; }
.form-title {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group label span { color: var(--gold); }
.form-input, .form-textarea {
  width: 100%; padding: 13px 16px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,0.1);
}
.form-textarea { resize: vertical; min-height: 90px; }
.radio-group, .checkbox-group {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.radio-label, .checkbox-label {
  display: flex !important; align-items: center; gap: 6px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 8px 16px;
  font-size: 13px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 0 !important;
}
.radio-label:hover, .checkbox-label:hover {
  border-color: rgba(200,146,42,0.4); background: var(--gold-pale);
}
.radio-label input, .checkbox-label input { accent-color: var(--gold); }
.form-consent { margin-bottom: 20px; }
.form-consent .checkbox-label {
  background: transparent; border: none; padding: 0; border-radius: 0;
  font-size: 13px; color: var(--text-muted);
}
.form-consent a { color: var(--gold); text-decoration: underline; }
.form-submit-btn {
  width: 100%; padding: 18px; border-radius: 100px;
  background: var(--gold); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(200,146,42,0.35);
  transition: all 0.25s; cursor: pointer; border: none;
}
.form-submit-btn:hover {
  background: #b07e22; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.45);
}
.form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note {
  text-align: center; font-size: 13px; color: var(--text-light); margin-top: 14px;
}
.form-success {
  background: var(--green-light); border: 1px solid rgba(42,122,74,0.25);
  border-radius: var(--radius-sm); padding: 28px; text-align: center; margin-top: 16px;
}
.form-success .success-icon { font-size: 40px; display: block; margin-bottom: 10px; }
.form-success strong { display: block; font-size: 18px; margin-bottom: 8px; color: var(--green); }
.form-success p { font-size: 14px; color: var(--text-muted); }
.field-error {
  display: block; font-size: 12px; color: #dc2626; margin-top: 6px;
}
.form-input.error, .form-textarea.error { border-color: #dc2626; }

/* ═════════════════════════════════════════════
   FINAL CTA
═════════════════════════════════════════════ */
.final-cta {
  padding: 96px 0; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 20% 50%, rgba(200,146,42,0.12), transparent),
    radial-gradient(ellipse 500px 300px at 80% 50%, rgba(42,122,74,0.08), transparent);
  pointer-events: none;
}
.final-cta-inner {
  text-align: center; position: relative; max-width: 680px; margin: 0 auto;
}
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px;
}
.final-cta h2 em { font-style: normal; color: var(--gold-light); }
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.55); margin-bottom: 40px; line-height: 1.7; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.final-trust { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.final-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); }
.final-trust-item svg { width: 16px; height: 16px; color: var(--gold); }

/* ═════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════ */
footer {
  background: #0f1114; color: rgba(255,255,255,0.5);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900;
  color: #fff; margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ═════════════════════════════════════════════
   BACK TO TOP
═════════════════════════════════════════════ */
.back-to-top {
  position: fixed; left: 28px; bottom: 28px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: all 0.2s;
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ═════════════════════════════════════════════
   FOCUS / ACCESSIBILITY
═════════════════════════════════════════════ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ═════════════════════════════════════════════
   RESPONSIVE — TABLET
═════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero-inner, .how-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-cert { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
}

@media (max-width: 720px) {
  .services-grid, .tech-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 60px; }
  .services, .how, .pricing, .testimonials, .about, .faq, .final-cta, .contact { padding: 64px 0; }
  .whatsapp-float { bottom: 16px; right: 16px; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
