:root {
  --bg: #181818;
  --bg-alt: #161616;
  --bg-alt-2: #1b1b1b;
  --bg-footer: #141414;
  --text: #d2d2d2;
  --text-soft: #b8b3a6;
  --text-mute: #a9a398;
  --text-faint: #8a8371;
  --text-faintest: #6e6858;
  --heading: #f5f2ea;
  --heading-2: #f1eee6;
  --gold: #c4a96a;
  --gold-dark: #8e764a;
  --border-gold: rgba(196, 169, 106, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #1f1f1f; }

h1, h2, h3 { font-family: 'Sora', sans-serif; margin: 0; }

a { color: inherit; }

button { font-family: inherit; }

img { max-width: 100%; display: block; }

@keyframes wcFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wcFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
@keyframes wcGlow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes wcSpinnerBounce { 0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; } 40% { transform: scale(1); opacity: 1; } }

/* ---------- loading screen ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(196, 169, 106, 0.1), transparent 60%),
    #101010;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
body.loading-active { overflow: hidden; }
.loading-content { text-align: center; padding: 0 24px; animation: wcFadeUp 0.8s ease both; }
.loading-logo { height: 60px; width: auto; max-width: 100%; object-fit: contain; margin: 0 auto 26px; animation: wcFloat 3s ease-in-out infinite; }
.loading-title {
  font-family: 'Sora', sans-serif; font-size: clamp(20px, 3vw, 28px); font-weight: 800;
  color: var(--heading); margin-bottom: 10px; text-wrap: balance;
}
.loading-subtitle { font-size: 14px; color: var(--text-mute); margin-bottom: 32px; letter-spacing: 0.3px; }
.loading-spinner { display: flex; gap: 9px; justify-content: center; }
.loading-spinner span {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: inline-block;
  animation: wcSpinnerBounce 1s ease-in-out infinite;
}
.loading-spinner span:nth-child(2) { animation-delay: 0.15s; }
.loading-spinner span:nth-child(3) { animation-delay: 0.3s; }

/* ---------- background video: assets/videos/Code.mp4, with a frosted-glass treatment ---------- */
.bg-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.bg-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* gaussian blur on the footage itself; scale hides the blurred edge fringe */
  filter: blur(7px) saturate(1.05) brightness(0.9);
  transform: scale(1.1);
}
.bg-video-wrap::before {
  /* frosted glass layer */
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(24, 24, 24, 0.28);
}
.bg-video-wrap::after {
  /* dark contrast layer + soft gold lighting, so text/buttons stay legible */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 15%, rgba(196, 169, 106, 0.16), transparent 55%),
    linear-gradient(160deg, rgba(20, 20, 20, 0.72), rgba(15, 15, 15, 0.85));
}
.bg-video-wrap.video-unavailable { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  padding: 16px 28px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1f1f1f;
  box-shadow: 0 10px 30px rgba(196, 169, 106, 0.28);
}
.btn-gold:hover { box-shadow: 0 14px 40px rgba(196, 169, 106, 0.5); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--heading-2);
  border: 1px solid rgba(210, 210, 210, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--heading-2);
  border: 1px solid rgba(196, 169, 106, 0.5);
}
.btn-outline:hover { background: rgba(196, 169, 106, 0.1); }
.btn-block { width: 100%; padding: 15px; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-inner { max-width: 1280px; margin: 0 auto; }
.section-inner-narrow { max-width: 1000px; }
.section-inner-tight { max-width: 800px; }
.center { text-align: center; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2, h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; color: var(--heading); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(20, 20, 20, 0.72);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}
.brand { text-decoration: none; display: flex; align-items: center; }
.brand-logo { height: 44px; width: auto; max-width: 100%; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s ease;
}
.main-nav a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.lang-switch {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 169, 106, 0.25);
  border-radius: 20px;
  padding: 4px;
}
.lang-btn {
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  color: var(--text-mute);
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn.active { background: var(--gold); color: #1f1f1f; }

.header-cta { padding: 11px 20px; font-size: 13px; }

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(196, 169, 106, 0.4);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(10px);
  padding: 100px 32px 40px;
  display: none;
  flex-direction: column;
  gap: 26px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--heading-2);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}
.lang-switch-mobile { margin-top: 12px; }
.lang-switch-mobile .lang-btn { flex: 1; border: 1px solid rgba(196, 169, 106, 0.4); padding: 10px; font-size: 13px; }
.mobile-menu .btn { margin-top: 8px; padding: 16px; font-size: 15px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  gap: 60px;
  flex-wrap: wrap;
  overflow: hidden;
}
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-blob-1 {
  top: -10%; right: -5%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196, 169, 106, 0.16), transparent 70%);
  filter: blur(10px);
}
.hero-blob-2 {
  bottom: -15%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 159, 138, 0.12), transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, var(--bg-alt) 88%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  flex: 1 1 480px;
  min-width: 300px;
  z-index: 2;
  animation: wcFadeUp 0.9s ease both;
}
.hero-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 169, 106, 0.1);
  border: 1px solid rgba(196, 169, 106, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--heading);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  flex: 1 1 440px;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  perspective: 1400px;
}
.mockup-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 380px;
  transition: transform 0.15s ease-out;
}
.mockup {
  position: absolute;
  background: linear-gradient(160deg, #2a2a2a, #181818);
  border: 1px solid rgba(196, 169, 106, 0.25);
}
.mockup-screen {
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
  background: #1e1e1e;
}
.mockup-preview-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mockup-desktop {
  left: 0; top: 20px; width: 70%; height: 260px;
  border-radius: 12px; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  padding: 14px; animation: wcFloat 6s ease-in-out infinite;
}
.mockup-desktop .mockup-screen { border-radius: 6px; }
.mockup-tablet {
  /* landscape frame to match tablet.jpeg's real 1600x1000 (1.6:1) screenshot without cropping it into a sliver */
  right: 3%; top: 6px; width: 220px; height: 138px; border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); padding: 10px;
  animation: wcFloat 7s ease-in-out infinite 0.4s;
}
.mockup-tablet .mockup-screen { border-radius: 7px; }
.mockup-phone {
  right: 10%; bottom: -10px; width: 88px; height: 180px; border-radius: 18px;
  border-color: rgba(196, 169, 106, 0.35);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.5); padding: 9px;
  animation: wcFloat 5s ease-in-out infinite 0.8s;
}
.mockup-phone .mockup-screen { border-radius: 8px; }
.mockup-glow {
  position: absolute; left: -20px; bottom: 40px; width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 169, 106, 0.6), transparent 70%);
  animation: wcGlow 3s ease-in-out infinite;
}

/* ---------- soft depth between sections ---------- */
.highlights, .services, .pricing, .portfolio, .reviews, .process, .about, .faq, .contact {
  position: relative;
  box-shadow:
    inset 0 50px 50px -50px rgba(0, 0, 0, 0.4),
    inset 0 -50px 50px -50px rgba(0, 0, 0, 0.4);
}

/* ---------- highlights ---------- */
.highlights { padding: 40px 40px 100px; position: relative; z-index: 2; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}
.highlight-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(196, 169, 106, 0.16);
  border-radius: 16px;
  padding: 30px 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.highlight-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35); border-color: rgba(196, 169, 106, 0.5); }
.highlight-icon {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.highlight-icon span { width: 14px; height: 14px; background: var(--gold); display: block; }
.highlight-card h3 { font-size: 18px; font-weight: 700; color: var(--heading-2); margin: 0 0 10px; }
.highlight-card p { font-size: 14px; line-height: 1.6; color: var(--text-mute); margin: 0; }

/* ---------- services ---------- */
.services { padding: 60px 40px 100px; background: linear-gradient(180deg, var(--bg-alt), var(--bg-alt-2)); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(210, 210, 210, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover { border-color: rgba(196, 169, 106, 0.45); background: rgba(196, 169, 106, 0.05); }
.service-icon {
  width: 38px; height: 38px; border: 1.5px solid #a89f8a; transform: rotate(45deg);
  margin-bottom: 22px; display: flex; align-items: center; justify-content: center;
}
.service-icon span { width: 10px; height: 10px; background: var(--gold); transform: rotate(-45deg); display: block; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--heading-2); margin: 0 0 10px; }
.service-card p { font-size: 14px; line-height: 1.65; color: var(--text-mute); margin: 0; }

/* ---------- pricing ---------- */
.pricing { padding: 90px 40px; }
.pricing h2 { margin: 0 0 50px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; text-align: left; }
.price-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(210, 210, 210, 0.15);
  border-radius: 20px;
  padding: 38px 34px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.price-card-featured {
  background: linear-gradient(160deg, rgba(196, 169, 106, 0.08), rgba(255, 255, 255, 0.02));
  border-color: rgba(196, 169, 106, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}
.price-card h3 { font-size: 20px; font-weight: 700; color: var(--heading-2); margin: 0 0 6px; }
.price-card .price { margin: 14px 0 24px; }
.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1f1f1f; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px; margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(196, 169, 106, 0.35);
}
.price-old {
  font-size: 15px; color: var(--text-faint); text-decoration: line-through;
  font-weight: 600; margin-bottom: 4px;
}
.price-now {
  font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; color: var(--gold);
  text-shadow: 0 0 18px rgba(196, 169, 106, 0.3);
}
.feature-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.feature-list div { display: flex; gap: 10px; align-items: baseline; font-size: 14px; color: #c8c3b8; }
.feature-list span { color: var(--gold); }
.pricing-note { margin-top: 34px; font-size: 13px; color: var(--text-faint); max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- promo countdown ---------- */
.promo-countdown { display: flex; align-items: center; gap: 8px; }
.promo-unit { display: flex; flex-direction: column; align-items: center; line-height: 1; }

.promo-countdown-compact {
  background: rgba(196, 169, 106, 0.08);
  border: 1px solid rgba(196, 169, 106, 0.28);
  border-radius: 20px;
  padding: 6px 14px;
}
.promo-countdown-compact .promo-countdown-label { color: var(--text-mute); font-weight: 600; font-size: 11px; white-space: nowrap; }
.promo-countdown-compact .promo-countdown-timer { display: flex; gap: 7px; font-family: 'Sora', sans-serif; }
.promo-countdown-compact .promo-unit b { font-size: 13px; color: var(--gold); }
.promo-countdown-compact .promo-unit small { font-size: 8px; color: var(--text-faint); font-weight: 600; text-transform: uppercase; }
.promo-countdown-compact .promo-countdown-timer.promo-ended { color: var(--text-faint); font-size: 11px; font-weight: 700; }

.promo-countdown-large {
  flex-direction: column; align-items: center; gap: 14px;
  margin: 26px auto 44px;
}
.promo-countdown-large .promo-countdown-label {
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mute);
}
.promo-countdown-large .promo-countdown-timer { display: flex; gap: 14px; }
.promo-countdown-large .promo-unit {
  min-width: 64px; padding: 12px 10px;
  background: linear-gradient(160deg, rgba(196, 169, 106, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(196, 169, 106, 0.3);
  border-radius: 12px;
}
.promo-countdown-large .promo-unit b { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: var(--gold); }
.promo-countdown-large .promo-unit small { font-size: 10.5px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.promo-countdown-large .promo-countdown-timer.promo-ended {
  font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-faint); font-style: italic;
}

/* ---------- portfolio ---------- */
.portfolio { padding: 90px 40px; background: linear-gradient(180deg, var(--bg-alt-2), var(--bg-alt)); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(210, 210, 210, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease-out;
  will-change: transform;
}
.portfolio-card:hover {
  border-color: rgba(196, 169, 106, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.portfolio-thumb { display: block; height: 190px; overflow: hidden; position: relative; }
.portfolio-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.08); }
.portfolio-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 50%);
  pointer-events: none;
}
.portfolio-body { padding: 24px; }
.portfolio-category { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.portfolio-body h3 { font-size: 17px; font-weight: 700; color: var(--heading-2); margin: 0 0 8px; }
.portfolio-body p { font-size: 13.5px; line-height: 1.6; color: var(--text-mute); margin: 0 0 18px; }
.portfolio-link { font-size: 13px; font-weight: 700; color: var(--gold); text-decoration: none; transition: color 0.25s ease; }
.portfolio-link:hover { color: var(--heading-2); }

.portfolio-more { display: flex; justify-content: center; margin-top: 46px; }
.projects-wa-button {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1f1f1f; border: none; padding: 15px 30px; border-radius: 30px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  box-shadow: 0 10px 30px rgba(196, 169, 106, 0.35);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.projects-wa-button:hover { box-shadow: 0 14px 40px rgba(196, 169, 106, 0.55); transform: translateY(-3px); }
.projects-wa-icon {
  width: 22px; height: 22px; border-radius: 50%; background: #1f1f1f; color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .projects-wa-button { width: 100%; justify-content: center; }
}

/* ---------- reviews / carousel ---------- */
.reviews { padding: 90px 0; position: relative; }
.reviews .section-head { padding: 0 40px; }
.carousel-wrap { position: relative; padding: 0 60px; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20, 20, 20, 0.85); border: 1px solid rgba(196, 169, 106, 0.35);
  color: var(--gold); font-size: 18px; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.carousel-arrow:hover { background: var(--gold); color: #1f1f1f; }
.carousel-arrow-left { left: 10px; }
.carousel-arrow-right { right: 10px; }
.carousel-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-behavior: auto;
  cursor: grab; padding: 6px 0; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; }
.review-card {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(210, 210, 210, 0.1);
  border-radius: 16px;
  padding: 26px;
  user-select: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: translateZ(0);
}
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.review-stars { display: flex; gap: 2px; }
.review-stars span { color: var(--gold); font-size: 14px; }
.review-flag { font-size: 18px; }
.review-text { font-size: 14px; line-height: 1.65; color: #c8c3b8; margin: 0 0 14px; min-height: 88px; }
.review-toggle {
  background: none; border: none; padding: 0; margin: 0 0 16px;
  color: var(--gold); font-size: 12px; font-weight: 700; cursor: pointer; text-decoration: underline;
}
.review-footer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(210, 210, 210, 0.1); padding-top: 16px;
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; color: #1f1f1f; font-size: 14px;
  flex-shrink: 0;
}
.review-name { font-size: 13.5px; font-weight: 700; color: var(--heading-2); }
.review-meta { font-size: 11.5px; color: var(--text-faint); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(196, 169, 106, 0.35); display: inline-block; }

/* ---------- process ---------- */
.process { padding: 90px 40px; background: linear-gradient(180deg, var(--bg-alt), var(--bg-alt-2)); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px; }
.process-step { text-align: center; padding: 8px; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; color: var(--gold); font-size: 18px;
  margin: 0 auto 18px;
}
.process-step h3 { font-size: 16px; font-weight: 700; color: var(--heading-2); margin: 0 0 8px; }
.process-step p { font-size: 13px; line-height: 1.6; color: var(--text-mute); margin: 0; }

/* ---------- about ---------- */
.about { padding: 90px 40px; }
.about-text { font-size: 16px; line-height: 1.8; color: var(--text-soft); margin: 0 0 50px; text-wrap: pretty; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; }
.stat-card { border: 1px solid rgba(196, 169, 106, 0.2); border-radius: 14px; padding: 26px 14px; }
.stat-value { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--gold); margin-bottom: 6px; }
.stat-label { font-size: 12.5px; color: var(--text-mute); }

/* ---------- faq ---------- */
.faq { padding: 90px 40px; background: linear-gradient(180deg, var(--bg-alt-2), var(--bg-alt)); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(210, 210, 210, 0.12); border-radius: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.02); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; padding: 20px 22px; text-align: left; cursor: pointer;
  color: var(--heading-2); font-size: 15px; font-weight: 700; font-family: 'Manrope', sans-serif;
}
.faq-question .icon { color: var(--gold); font-size: 18px; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { margin: 0; padding: 0 22px 20px; font-size: 14px; line-height: 1.65; color: var(--text-mute); }

/* ---------- contact form ---------- */
.contact { padding: 90px 40px; }
.quote-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(210, 210, 210, 0.12);
  border-radius: 20px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 12.5px; color: var(--text-mute); font-weight: 600; }
.form-field input, .form-field textarea {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(210, 210, 210, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--heading-2);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field textarea:focus { outline: 1px solid var(--gold); }
.service-toggle { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  padding: 10px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer;
  background: transparent; color: var(--text-mute); border: 1px solid rgba(196, 169, 106, 0.4);
  transition: background 0.2s ease, color 0.2s ease;
}
.pill.active { background: var(--gold); color: #1f1f1f; }

/* ---------- final cta ---------- */
.final-cta {
  padding: 100px 40px; text-align: center;
  background: linear-gradient(160deg, var(--bg-alt-2), var(--bg-footer));
  box-shadow:
    inset 0 1px 0 rgba(196, 169, 106, 0.08),
    inset 0 60px 60px -55px rgba(0, 0, 0, 0.5),
    inset 0 -60px 60px -55px rgba(0, 0, 0, 0.5);
  position: relative; overflow: hidden;
}
.final-cta-glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(circle, rgba(196, 169, 106, 0.12), transparent 70%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--bg-footer) 90%);
  pointer-events: none;
  z-index: 1;
}
.final-cta h2 { font-size: clamp(26px, 4vw, 42px); margin: 0 0 20px; position: relative; z-index: 2; text-wrap: pretty; }
.final-cta p { font-size: 16px; color: var(--text-soft); max-width: 560px; margin: 0 auto 36px; position: relative; z-index: 2; text-wrap: pretty; }
.final-cta .btn { position: relative; z-index: 2; }

/* ---------- footer ---------- */
.site-footer { padding: 60px 40px 30px; background: var(--bg-footer); }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo { height: 40px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: var(--text-faint); max-width: 320px; }
.footer-title { font-size: 13px; font-weight: 700; color: var(--heading-2); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; }
.footer-col a, .footer-col div a {
  color: var(--text-mute); text-decoration: none; font-size: 13.5px;
  display: block; margin-bottom: 10px; transition: color 0.25s ease;
}
.footer-col a:hover, .footer-col div a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--text-faintest);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--text-faintest); text-decoration: none; font-size: 12.5px; transition: color 0.25s ease; }
.footer-social a:hover { color: var(--gold); }

/* ---------- floating whatsapp ---------- */
.floating-wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1f1f1f; border: none; padding: 15px 20px; border-radius: 30px;
  font-weight: 700; font-size: 13.5px; cursor: pointer;
  box-shadow: 0 10px 30px rgba(196, 169, 106, 0.4);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.floating-wa:hover { box-shadow: 0 14px 40px rgba(196, 169, 106, 0.6); transform: translateY(-2px); }
.floating-wa-icon {
  width: 22px; height: 22px; border-radius: 50%; background: #1f1f1f; color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .loading-logo, .loading-spinner span, .mockup-desktop, .mockup-tablet, .mockup-phone, .mockup-glow {
    animation: none !important;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  [data-desktop-nav] { display: none !important; }
  .mobile-toggle { display: flex !important; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .form-row { grid-template-columns: 1fr; }
  .site-header { padding: 10px 20px; }
  .hero, .services, .pricing, .portfolio, .process, .about, .faq, .contact { padding-left: 20px; padding-right: 20px; }
  .hero-content, .hero-visual { flex-basis: 100%; min-width: 0; }
  .hero-visual { margin-top: 10px; }
  .mockup-stack { max-width: 320px; height: 254px; margin: 0 auto; }
  .mockup-desktop { top: 13px; height: 173px; border-radius: 8px; padding: 9px; }
  .mockup-tablet { top: 4px; width: 147px; height: 92px; border-radius: 9px; padding: 7px; }
  .mockup-phone { bottom: -7px; width: 59px; height: 120px; border-radius: 12px; padding: 6px; }
  .reviews .section-head { padding: 0 20px; }
  .carousel-wrap { padding: 0 38px; }
  .carousel-arrow { width: 34px; height: 34px; font-size: 15px; }
  .carousel-arrow-left { left: 0; }
  .carousel-arrow-right { right: 0; }
  .carousel-track { gap: 14px; }
  .review-card { flex: 0 0 82vw; max-width: 300px; padding: 20px; }
  .review-text { min-height: 0; font-size: 13.5px; }
}
@media (max-width: 420px) {
  .mockup-stack { max-width: 240px; height: 190px; }
  .mockup-desktop { top: 10px; height: 130px; border-radius: 6px; padding: 7px; }
  .mockup-tablet { top: 3px; width: 110px; height: 69px; border-radius: 7px; padding: 5px; }
  .mockup-phone { bottom: -5px; width: 44px; height: 90px; border-radius: 9px; padding: 5px; }
}
