/* ===== TOKENS ===== */
:root {
  --bg: #F8F7F4;
  --bg-warm: #F2F0EB;
  --surface: #FFFFFF;
  --ink: #111111;
  --ink-2: #555555;
  --ink-3: #999999;
  --gold: #C8A96E;
  --gold-bg: #F5EFE4;
  --wa: #25D366;
  --wa-dark: #1EA952;
  --border: rgba(17,17,17,0.08);
  --border-2: rgba(17,17,17,0.14);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.06), 0 24px 80px rgba(0,0,0,0.12);
  --r: 14px;
  --r-sm: 8px;
  --r-xs: 5px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --pad: clamp(20px, 4vw, 40px);
  --sec: clamp(72px, 8vw, 120px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--ink); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; font-size: inherit; }

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--sec) 0; }
.section--warm { background: var(--bg-warm); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  padding: 0.85rem 1.75rem; border-radius: 100px;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
  border: none;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-nav { background: var(--ink); color: #fff; padding: 0.6rem 1.3rem; font-size: 0.78rem; }
.btn-nav:hover { background: #2a2a2a; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--r-sm); padding: 1rem; }

/* ===== ANIMATIONS ===== */
[data-anim] { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-anim][data-delay="1"] { transition-delay: 0.1s; }
[data-anim][data-delay="2"] { transition-delay: 0.2s; }
[data-anim][data-delay="3"] { transition-delay: 0.3s; }
[data-anim][data-delay="4"] { transition-delay: 0.4s; }
[data-anim].visible { opacity: 1; transform: none; }

@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes badgeFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-6px) rotate(1deg); } }
@keyframes badgeFloat2 { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-8px) rotate(-1deg); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes waTyping { 0%,80%,100% { transform: scale(0); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 var(--pad);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
#nav.scrolled {
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 110px; filter: brightness(0); opacity: 0.88; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.82rem; color: var(--ink-2); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 4px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: currentColor; transition: all 0.3s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 100vw);
  background: var(--surface); z-index: 200; padding: 5rem 2rem 2.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.08);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--bg-warm); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background 0.2s;
}
.mobile-close:hover { background: var(--border); }
.mobile-nav { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1rem; }
.mobile-nav a { font-size: 1.1rem; padding: 0.9rem 0; color: var(--ink); border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-cta { margin-top: 2rem; text-align: center; justify-content: center; border-radius: var(--r-sm); }
.mobile-overlay-bg {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mobile-overlay-bg.open { opacity: 1; pointer-events: all; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; padding: 120px var(--pad) 80px;
  display: flex; align-items: center;
}
.hero-wrap {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: center;
}
.hero-left { max-width: 580px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2); background: var(--surface); border: 1px solid var(--border-2);
  padding: 0.4rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.8rem;
}
.badge-dot { width: 6px; height: 6px; background: var(--wa); border-radius: 50%; animation: pulse 2s ease infinite; }

.hero-h1 {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-p { font-size: 1.05rem; color: var(--ink-2); line-height: 1.75; max-width: 460px; margin-bottom: 2.2rem; }

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.01em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Hero Visual */
.hero-right { position: relative; padding-bottom: 40px; }

.browser-frame {
  position: relative; z-index: 1;
  background: var(--surface); border-radius: var(--r);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
  animation: heroFloat 7s ease-in-out infinite;
}
.browser-chrome {
  background: var(--bg-warm); padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.traffic-lights { display: flex; gap: 5px; }
.tl { width: 10px; height: 10px; border-radius: 50%; }
.tl-r { background: #FF6059; }
.tl-y { background: #FEBC2E; }
.tl-g { background: #2DC938; }
.browser-url {
  flex: 1; background: var(--surface); border-radius: 4px;
  padding: 3px 10px; font-size: 10px; color: var(--ink-3);
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--border);
}

.browser-screen { padding: 0; background: var(--bg); }
.ms-nav {
  background: var(--surface); padding: 8px 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.ms-logo-bar { width: 50px; height: 9px; background: var(--ink); border-radius: 2px; opacity: 0.15; }
.ms-nav-items { display: flex; gap: 10px; }
.ms-nav-items span { width: 24px; height: 6px; background: var(--ink); border-radius: 2px; opacity: 0.1; }

.ms-hero-area {
  background: var(--surface); padding: 16px 14px 14px;
  border-bottom: 1px solid var(--border);
}
.ms-pill { width: 60px; height: 7px; background: var(--gold); border-radius: 4px; margin-bottom: 10px; opacity: 0.6; }
.ms-line { height: 7px; background: var(--ink); border-radius: 3px; margin-bottom: 6px; opacity: 0.12; }
.ms-line--h1 { width: 75%; opacity: 0.2; height: 9px; }
.ms-line--h2 { width: 60%; opacity: 0.15; height: 9px; }
.ms-line--sub { width: 88%; }
.ms-line--sub2 { width: 65%; margin-bottom: 12px; }
.ms-btns-row { display: flex; gap: 7px; }
.ms-btn { height: 14px; border-radius: 7px; }
.ms-btn--fill { width: 55px; background: var(--ink); opacity: 0.8; }
.ms-btn--outline { width: 45px; background: transparent; border: 1px solid var(--border-2); }

.ms-cards {
  display: flex; gap: 8px; padding: 12px 14px;
}
.ms-card {
  flex: 1; background: var(--surface); border-radius: var(--r-xs);
  border: 1px solid var(--border); padding: 8px;
}
.ms-card-icon { width: 14px; height: 14px; background: var(--gold-bg); border-radius: 3px; margin-bottom: 6px; }
.ms-card-lines span { display: block; height: 5px; background: var(--ink); border-radius: 2px; opacity: 0.1; margin-bottom: 3px; }
.ms-card-lines span:first-child { width: 80%; }
.ms-card-lines span:last-child { width: 55%; }

/* Phone Mockup */
.phone-frame {
  position: absolute; bottom: 0; right: -24px; z-index: 2;
  width: 96px; background: #1C1C1E; border-radius: 18px;
  padding: 10px 6px 8px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), var(--shadow-lg);
}
.phone-notch { width: 30px; height: 5px; background: #333; border-radius: 3px; margin: 0 auto 7px; }
.phone-screen { background: var(--surface); border-radius: 10px; overflow: hidden; padding: 5px 5px 6px; }
.pm-bar { height: 5px; background: var(--ink); opacity: 0.1; border-radius: 2px; margin-bottom: 5px; }
.pm-content { padding: 2px 0; }
.pm-line { height: 4px; background: var(--ink); border-radius: 2px; margin-bottom: 3px; }
.pm-line--h { opacity: 0.18; width: 80%; height: 5px; }
.pm-line--h2 { opacity: 0.12; width: 60%; }
.pm-line--sub { opacity: 0.08; width: 90%; }
.pm-btn-mini { width: 40px; height: 8px; background: var(--ink); border-radius: 4px; opacity: 0.7; margin-top: 5px; }

/* Floating Badges */
.float-badge {
  position: absolute; background: var(--surface);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md); z-index: 3;
  border: 1px solid var(--border);
}
.fb-1 { top: 16%; left: -40px; animation: badgeFloat 5s ease-in-out infinite; }
.fb-2 { bottom: 12%; left: -20px; animation: badgeFloat2 6.5s ease-in-out infinite 0.8s; }
.fb-icon { font-size: 1.2rem; }
.fb-content { display: flex; flex-direction: column; gap: 1px; }
.fb-label { font-size: 0.68rem; color: var(--ink-3); letter-spacing: 0.03em; }
.fb-value { font-size: 0.82rem; font-weight: 600; color: var(--ink); }

/* ===== TICKER ===== */
.ticker-bar {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0.9rem 0; background: var(--surface);
}
.ticker-track { overflow: hidden; }
.ticker-content {
  display: flex; gap: 2rem; align-items: center;
  white-space: nowrap; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-content span { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.ticker-content .tc-sep { color: var(--gold); font-size: 0.7rem; }

/* ===== SECTION HEADERS ===== */
.sec-head { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.sec-head.centered { text-align: center; }
.sec-label {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.sec-h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 1rem;
}
.sec-sub { font-size: 1rem; color: var(--ink-2); max-width: 540px; line-height: 1.7; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.svc-card { background: var(--surface); padding: clamp(2rem, 3vw, 2.8rem); display: flex; flex-direction: column; gap: 0; transition: background 0.2s; }
.svc-card:hover { background: #FDFCFA; }
.svc-card--dark { background: var(--ink); }
.svc-card--dark:hover { background: #1e1e1e; }
.svc-card--dark .svc-cat,
.svc-card--dark .svc-title,
.svc-card--dark .svc-desc,
.svc-card--dark .svc-list li { color: rgba(255,255,255,0.85); }
.svc-card--dark .svc-cat { color: var(--gold); }
.svc-card--dark .svc-list li::before { color: var(--gold); }
.svc-card--dark .svc-link { color: var(--gold); }
.svc-card--dark .svc-icon { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

.svc-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--gold-bg); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.svc-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.svc-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: 0.7rem; }
.svc-desc { font-size: 0.88rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 1.5rem; }
.svc-list { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.svc-list li { font-size: 0.85rem; color: var(--ink-2); display: flex; align-items: center; gap: 0.5rem; }
.svc-list li::before { content: '·'; color: var(--gold); font-weight: 700; font-size: 1rem; line-height: 1; }
.svc-link { margin-top: auto; font-size: 0.82rem; font-weight: 500; color: var(--ink-2); display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s, gap 0.2s; }
.svc-link:hover { color: var(--ink); gap: 8px; }
.svc-link span { transition: transform 0.2s; }
.svc-link:hover span { transform: translateX(2px); }

/* ===== BENTO GRID ===== */
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bento-item {
  background: var(--surface); border-radius: var(--r);
  border: 1px solid var(--border); padding: 1.6rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  overflow: hidden; transition: box-shadow 0.25s, transform 0.25s;
}
.bento-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.bento-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.bento-wide .bento-text { display: flex; flex-direction: column; gap: 0.5rem; }
.bento-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.bento-item > p { font-size: 0.84rem; color: var(--ink-2); line-height: 1.65; }
.bento-text p { font-size: 0.84rem; color: var(--ink-2); line-height: 1.65; }

/* WhatsApp Demo */
.wa-demo { border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--border); font-size: 0.78rem; }
.wa-header { background: #128C7E; color: white; padding: 8px 12px; display: flex; align-items: center; gap: 8px; }
.wa-avatar { width: 28px; height: 28px; background: rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 600; flex-shrink: 0; }
.wa-name { font-weight: 600; font-size: 0.8rem; }
.wa-status { font-size: 0.68rem; opacity: 0.85; margin-left: auto; }
.wa-body { background: #ECE5DD; padding: 10px; display: flex; flex-direction: column; gap: 5px; }
.wa-bubble { max-width: 85%; padding: 6px 9px; border-radius: 8px; font-size: 0.75rem; line-height: 1.4; position: relative; }
.wa-in { background: white; border-radius: 0 8px 8px 8px; color: #111; align-self: flex-start; }
.wa-out { background: #D9FDD3; border-radius: 8px 0 8px 8px; color: #111; align-self: flex-end; }
.wa-typing-dot { display: flex; gap: 3px; padding: 8px 10px; background: white; border-radius: 0 8px 8px 8px; width: fit-content; }
.wa-typing-dot span { width: 5px; height: 5px; background: #aaa; border-radius: 50%; animation: waTyping 1.4s infinite; }
.wa-typing-dot span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing-dot span:nth-child(3) { animation-delay: 0.4s; }

/* Reviews Demo */
.reviews-demo { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0.5rem 0; }
.rv-score { font-family: var(--font-serif); font-size: 3rem; font-weight: 400; color: var(--ink); line-height: 1; }
.rv-stars { font-size: 1.2rem; color: #FBBC04; letter-spacing: 2px; }
.rv-count { font-size: 0.72rem; color: var(--ink-3); }
.rv-bars { width: 100%; margin-top: 0.8rem; display: flex; flex-direction: column; gap: 4px; }
.rv-bar-row { display: flex; align-items: center; gap: 7px; font-size: 0.68rem; color: var(--ink-3); }
.rv-bar { flex: 1; height: 5px; background: var(--bg-warm); border-radius: 3px; overflow: hidden; }
.rv-fill { height: 100%; background: #FBBC04; border-radius: 3px; }

/* Chat Demo */
.chat-demo { display: flex; flex-direction: column; gap: 8px; font-size: 0.76rem; }
.cd-msg { display: flex; gap: 6px; align-items: flex-start; }
.cd-bot { }
.cd-user { flex-direction: row-reverse; }
.cd-av { width: 22px; height: 22px; background: var(--ink); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.5rem; font-weight: 600; flex-shrink: 0; }
.cd-text { background: var(--bg-warm); padding: 7px 10px; border-radius: 10px; line-height: 1.45; color: var(--ink-2); max-width: 85%; }
.cd-user .cd-text { background: var(--ink); color: white; }

/* Booking Demo */
.booking-demo { display: flex; flex-direction: column; gap: 8px; font-size: 0.72rem; }
.bd-month { font-weight: 600; font-size: 0.8rem; color: var(--ink); }
.bd-cal { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; }
.bd-d { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-size: 0.68rem; }
.bd-head { font-weight: 600; color: var(--ink-3); font-size: 0.62rem; }
.bd-past { color: var(--ink-3); background: var(--bg-warm); }
.bd-d:not(.bd-head):not(.bd-past):not(.bd-sel) { background: rgba(200,169,110,0.08); color: var(--ink); cursor: pointer; }
.bd-sel { background: var(--ink); color: white; font-weight: 600; }
.bd-slots { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 4px; }
.bd-s { padding: 3px 8px; border-radius: 100px; font-size: 0.65rem; cursor: pointer; }
.bd-taken { background: var(--bg-warm); color: var(--ink-3); text-decoration: line-through; }
.bd-free { background: rgba(200,169,110,0.12); color: var(--ink); }
.bd-active { background: var(--ink); color: white; }

/* Form Demo */
.form-demo { display: flex; flex-direction: column; gap: 8px; }
.fd-field { display: flex; flex-direction: column; gap: 3px; }
.fd-label { font-size: 0.62rem; color: var(--ink-3); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.fd-input { background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--r-xs); padding: 5px 8px; font-size: 0.73rem; color: var(--ink-2); }
.fd-typing { border-color: var(--gold); background: var(--gold-bg); }
.fd-textarea { min-height: 36px; }
.fd-cursor { display: inline-block; width: 1px; height: 0.8em; background: var(--gold); animation: blink 1.1s infinite; margin-left: 1px; vertical-align: middle; }
.fd-btn { background: var(--ink); color: white; border-radius: var(--r-xs); padding: 7px 12px; font-size: 0.72rem; font-weight: 500; text-align: center; cursor: pointer; }

/* Map Demo */
.map-demo { border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--border); }
.map-bg { position: relative; height: 80px; background: #E8F0E9; overflow: hidden; }
.map-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.map-pin { position: absolute; top: 25px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; }
.map-pin-head { width: 14px; height: 14px; background: #E53935; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); border: 2px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.map-pin-shadow { width: 8px; height: 3px; background: rgba(0,0,0,0.15); border-radius: 50%; margin-top: 2px; }
.map-info { padding: 8px 10px; display: flex; flex-direction: column; gap: 2px; background: white; }
.map-info strong { font-size: 0.73rem; color: var(--ink); }
.map-info span { font-size: 0.68rem; color: var(--ink-3); }
.map-link { color: #1A73E8 !important; cursor: pointer; }

/* ===== CASE STUDY ===== */
.cs-card {
  background: var(--surface); border-radius: var(--r);
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center;
  padding: clamp(2.5rem, 4vw, 4rem);
  box-shadow: var(--shadow-sm);
}
.cs-badge { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.cs-title { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem; }
.cs-desc { font-size: 0.9rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 1.75rem; }
.cs-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.cs-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--ink-2); }
.cs-features li svg { color: var(--gold); flex-shrink: 0; }

/* CS Browser Mockup */
.cs-right { position: relative; }
.cs-browser { background: var(--surface); border-radius: 12px; box-shadow: var(--shadow-md), 0 0 0 1px var(--border); overflow: hidden; }
.cs-bar { background: var(--bg-warm); padding: 8px 12px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.cs-url { flex: 1; background: white; border-radius: 4px; border: 1px solid var(--border); padding: 3px 10px; font-size: 10px; color: var(--ink-3); text-align: center; }
.cs-screen { padding: 0; line-height: 0; }
.cs-screenshot { width: 100%; height: auto; display: block; }

/* Emi mockup inside browser */
.emi-nav { background: #111; padding: 8px 14px; display: flex; align-items: center; justify-content: space-between; }
.emi-logo { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; }
.emi-logo strong { color: white; font-weight: 700; }
.emi-nav-links { font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.emi-hero { background: #1a1a1a; padding: 18px 14px; }
.emi-badge-pill { display: inline-block; background: rgba(200,169,110,0.2); color: var(--gold); font-size: 0.6rem; letter-spacing: 0.08em; padding: 3px 8px; border-radius: 100px; margin-bottom: 8px; }
.emi-h { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: white; line-height: 1.2; margin-bottom: 5px; }
.emi-sub { font-size: 0.65rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; margin-bottom: 12px; }
.emi-cta-row { display: flex; gap: 7px; }
.emi-btn { font-size: 0.65rem; padding: 5px 12px; border-radius: 4px; font-weight: 500; cursor: pointer; }
.emi-btn-p { background: var(--gold); color: #111; }
.emi-btn-s { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }

/* CS Phone */
.cs-phone {
  position: absolute; bottom: -24px; right: -20px; z-index: 2;
  width: 88px; background: #1C1C1E; border-radius: 16px;
  padding: 8px 5px 6px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), var(--shadow-lg);
}
.cs-phone-notch { width: 28px; height: 5px; background: #333; border-radius: 3px; margin: 0 auto 6px; }
.cs-phone-screen { background: #1a1a1a; border-radius: 8px; overflow: hidden; padding: 6px; }
.cp-content { display: flex; flex-direction: column; gap: 4px; }
.cp-logo { font-size: 0.45rem; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; margin-bottom: 2px; }
.cp-h { height: 5px; background: rgba(255,255,255,0.7); border-radius: 2px; }
.cp-h { width: 75%; }
.cp-h2 { width: 55%; opacity: 0.5; }
.cp-sub { height: 4px; background: rgba(255,255,255,0.25); border-radius: 2px; width: 90%; }
.cp-btn { height: 9px; width: 40px; background: var(--gold); border-radius: 4px; margin-top: 3px; }

/* ===== PROCESS ===== */
.process {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0;
  align-items: start;
}
.ps-step { padding: 0 1.5rem; text-align: center; }
.ps-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 400; color: var(--border-2); line-height: 1; margin-bottom: 1rem; }
.ps-line { width: 32px; height: 1.5px; background: var(--gold); margin: 0 auto 1.25rem; border-radius: 1px; }
.ps-step h3 { font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: 0.65rem; }
.ps-step p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.7; }
.ps-arrow { display: flex; align-items: flex-start; padding-top: 1.5rem; color: var(--gold); opacity: 0.6; }

/* ===== CONTACT ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.contact-h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.2; color: var(--ink); margin: 0.75rem 0 1rem; }
.contact-sub { font-size: 0.92rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 2.25rem; }

.contact-channels { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.cc-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}
.cc-item:hover { padding-left: 0.5rem; }
.cc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cc-wa { background: rgba(37,211,102,0.1); color: var(--wa-dark); }
.cc-email { background: var(--gold-bg); color: var(--gold); }
.cc-ig { background: rgba(225,48,108,0.08); color: #E1306C; }
.cc-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.cc-label { font-size: 0.78rem; font-weight: 500; color: var(--ink); }
.cc-val { font-size: 0.75rem; color: var(--ink-3); }
.cc-arr { font-size: 0.9rem; color: var(--ink-3); transition: transform 0.2s; }
.cc-item:hover .cc-arr { transform: translateX(4px); color: var(--ink); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-group label { font-size: 0.75rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0.02em; }
.cf-opt { font-weight: 400; color: var(--ink-3); }
.cf-group input, .cf-group textarea {
  background: var(--bg-warm); border: 1.5px solid transparent;
  border-radius: var(--r-sm); padding: 0.8rem 1rem;
  color: var(--ink); font-size: 0.9rem; transition: border-color 0.2s, background 0.2s;
  outline: none; resize: none;
}
.cf-group input:focus, .cf-group textarea:focus { border-color: var(--gold); background: var(--gold-bg); }
.cf-group input::placeholder, .cf-group textarea::placeholder { color: var(--ink-3); }

.cf-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cf-chip input { display: none; }
.cf-chip span {
  display: inline-block; font-size: 0.78rem; padding: 0.45rem 1rem;
  background: var(--bg-warm); border: 1.5px solid transparent; border-radius: 100px;
  cursor: pointer; transition: all 0.18s; color: var(--ink-2);
}
.cf-chip input:checked + span { background: var(--gold-bg); border-color: var(--gold); color: var(--ink); font-weight: 500; }
.cf-chip span:hover { border-color: var(--border-2); }

.cf-note { font-size: 0.74rem; color: var(--ink-3); text-align: center; }

/* ===== FOOTER ===== */
#footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: clamp(3rem, 5vw, 5rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-logo { height: 28px; filter: invert(1); opacity: 0.5; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fn-col { display: flex; flex-direction: column; gap: 0.65rem; }
.fn-head { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.25rem; }
.fn-col a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.fn-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90;
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--wa); color: white;
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.12);
  font-size: 0.82rem; font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.1); }

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

/* Tablet */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .fb-1 { left: -10px; }
  .fb-2 { left: -10px; }
  .cs-card { gap: 2.5rem; }
  .process { grid-template-columns: 1fr; gap: 0; }
  .ps-arrow { display: none; }
  .ps-step { text-align: left; padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
  .ps-line { margin: 0 0 1.25rem; }
  .process { border-top: 1px solid var(--border); }
}

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

  /* Nav */
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  #hero { padding: 100px var(--pad) 60px; min-height: auto; }
  .hero-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-right { padding-bottom: 20px; }
  .float-badge { display: none; }
  .phone-frame { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Bento */
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; grid-template-columns: 1fr; }

  /* CS */
  .cs-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 1.75rem; }
  .cs-phone { display: none; }
  .cs-right { padding-bottom: 0; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .cf-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* WA Float */
  .wa-float span { display: none; }
  .wa-float { padding: 0.85rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
