/* ================================================================
   WEBIVELO — Luxury White Edition
   Single-file production stylesheet
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === ROOT VARIABLES === */
:root {
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F5EDE0;
  --cream-soft: #FAF4EA;
  --cocoa-900: #1C0E07;
  --cocoa-800: #2C1A0E;
  --cocoa-700: #4A2E1A;
  --cocoa-600: #6B4226;
  --cocoa-400: #A07850;
  --cocoa-200: #D4B898;
  --cocoa-100: #EADBC4;
  --gold: #C4A24A;
  --gold-light: #E0C070;
  --gold-dark: #A08030;
  --gold-soft: rgba(196, 162, 74, 0.12);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --section-pad: clamp(80px, 10vw, 130px);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(44, 26, 14, 0.08);
  --shadow-md: 0 8px 40px rgba(44, 26, 14, 0.12);
  --shadow-lg: 0 20px 60px rgba(44, 26, 14, 0.16);
  --shadow-xl: 0 30px 80px rgba(44, 26, 14, 0.2);
  --shadow-gold: 0 8px 40px rgba(196, 162, 74, 0.3);
  --shadow-gold-lg: 0 20px 60px rgba(196, 162, 74, 0.35);

  --border-soft: 1px solid rgba(44, 26, 14, 0.08);
  --border-medium: 1px solid rgba(44, 26, 14, 0.12);
  --border-gold: 1px solid rgba(196, 162, 74, 0.4);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cocoa-800);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--cocoa-900);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cocoa-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { color: var(--cocoa-700); }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
}

section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* === SECTION BACKGROUNDS === */
.section-white { background: var(--white); }
.section-off-white { background: var(--off-white); }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--cocoa-900);
  color: rgba(245, 237, 224, 0.85);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(245, 237, 224, 0.72); }

/* === UTILITY === */
.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gold-italic {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.eyebrow.light {
  color: var(--gold-light);
}

.eyebrow.light::before {
  background: var(--gold-light);
}

.eyebrow.centered {
  justify-content: center;
}

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

.section-header h2 {
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.075rem;
  color: var(--cocoa-600);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.section-sub.light { color: rgba(245, 237, 224, 0.72); }
.section-header.light .eyebrow { color: var(--gold-light); }
.section-header.light h2 { color: var(--white); }

.section-cta {
  text-align: center;
  margin-top: 64px;
}

/* === BUTTONS === */
.btn-gold,
.btn-outline,
.btn-outline-dark,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  color: var(--cocoa-900);
  box-shadow: 0 6px 24px rgba(196, 162, 74, 0.35);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
}

.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(196, 162, 74, 0.5);
}

.btn-gold:hover::before { transform: translateX(100%); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--cocoa-900);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border-color: var(--cocoa-900);
  color: var(--cocoa-900);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cocoa-900);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--cocoa-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold svg,
.btn-outline svg,
.btn-outline-dark svg,
.btn-outline-light svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn-gold:hover svg,
.btn-outline:hover svg,
.btn-outline-dark:hover svg,
.btn-outline-light:hover svg { transform: translateX(4px); }

/* === LOADER === */
#loader {
  position: fixed;
  inset: 0;
  background: var(--cocoa-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.loader-bar {
  width: 180px;
  height: 1px;
  background: rgba(196, 162, 74, 0.2);
  margin: 20px auto;
  overflow: hidden;
  position: relative;
}

.loader-fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: loaderSweep 1.2s ease-in-out infinite;
}

@keyframes loaderSweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(200%); }
}

.loader-sub {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(196, 162, 74, 0.5);
}

/* === CUSTOM CURSOR === */
@media (pointer: fine) {
  body { cursor: none; }

  a, button, input, textarea, select, label, [role="button"] { cursor: none; }

  #cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transition: transform 0.15s ease, opacity 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }

  #cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }

  body.cursor-hover #cursor {
    transform: translate(-50%, -50%) scale(1.6);
    background: rgba(196, 162, 74, 0.1);
  }
}

@media (pointer: coarse) {
  #cursor, #cursor-dot { display: none; }
}

/* === NAV === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(44, 26, 14, 0.08);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.06);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cocoa-900);
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.nav-logo .logo-w {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cocoa-600);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover {
  color: var(--cocoa-900);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta .btn-gold {
  padding: 12px 24px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(44, 26, 14, 0.12);
  transition: background 0.3s var(--ease);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--cocoa-900);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) { opacity: 0; }

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 32px 24px 40px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 20px 40px rgba(44,26,14,0.08);
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.mobile-link {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cocoa-700);
  border-bottom: 1px solid rgba(44,26,14,0.07);
  transition: color 0.3s var(--ease);
}

.mobile-link:hover { color: var(--gold-dark); }

.mobile-meta {
  font-size: 0.8rem;
  color: var(--cocoa-400);
  margin-top: 20px;
  text-align: center;
}

body.menu-open { overflow: hidden; }

/* === HERO === */
#hero {
  min-height: 100vh;
  padding: 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 162, 74, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 237, 224, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 120px clamp(20px, 4vw, 48px) 80px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cocoa-900);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-title .gold-italic {
  display: inline-block;
  font-size: 0.96em;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cocoa-700);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-n {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-sym {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat p {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cocoa-600);
  margin: 0;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(196, 162, 74, 0.4), transparent);
}

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

.browser-mock {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: var(--white);
  border: 1px solid rgba(44, 26, 14, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  transform-origin: center;
}

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

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--off-white);
  border-bottom: 1px solid rgba(44, 26, 14, 0.08);
}

.browser-bar .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(44, 26, 14, 0.15);
}

.browser-bar .dot:nth-child(1) { background: #FF6058; }
.browser-bar .dot:nth-child(2) { background: #FFBE2E; }
.browser-bar .dot:nth-child(3) { background: #28C842; }

.browser-bar .url-bar {
  margin-left: 12px;
  font-size: 0.75rem;
  color: var(--cocoa-400);
  letter-spacing: 0.02em;
  background: rgba(44,26,14,0.06);
  padding: 3px 10px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}

.browser-body {
  padding: 32px 28px 36px;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream-soft) 100%);
  min-height: 320px;
  position: relative;
}

.mock-hero-strip {
  height: 60px;
  background: linear-gradient(135deg, var(--cocoa-900) 0%, var(--cocoa-700) 100%);
  border-radius: 6px;
  margin-bottom: 16px;
}

.mock-heading {
  height: 18px;
  width: 75%;
  background: var(--cocoa-900);
  border-radius: 4px;
  margin-bottom: 10px;
}

.mock-sub {
  height: 10px;
  width: 100%;
  background: rgba(44, 26, 14, 0.12);
  border-radius: 4px;
  margin-bottom: 6px;
}

.mock-sub.short { width: 65%; }

.mock-btn-row {
  display: flex;
  gap: 8px;
  margin: 14px 0;
}

.mock-btn {
  height: 24px;
  width: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.mock-btn.ghost {
  background: transparent;
  border: 1px solid rgba(44,26,14,0.2);
}

.mock-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.mock-card {
  height: 50px;
  border-radius: 6px;
  background: rgba(44, 26, 14, 0.07);
  border: 1px solid rgba(44,26,14,0.08);
}

.hero-badge-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(196, 162, 74, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-badge-float:not(.badge-2) {
  top: 10%;
  left: -8%;
  animation: floatY 5s ease-in-out infinite;
}

.hero-badge-float.badge-2 {
  bottom: 14%;
  right: -6%;
  animation: floatY 6s ease-in-out infinite 1s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-badge-float .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-badge-float .badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-badge-float > div strong {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cocoa-900);
  display: block;
}

.hero-badge-float > div p {
  font-size: 0.68rem;
  color: var(--cocoa-400);
  letter-spacing: 0.05em;
  margin: 0;
}

/* Hero ticker */
.hero-ticker {
  position: relative;
  margin-top: clamp(60px, 8vw, 100px);
  padding: 22px 0;
  border-top: 1px solid rgba(196, 162, 74, 0.25);
  border-bottom: 1px solid rgba(196, 162, 74, 0.25);
  overflow: hidden;
  background: var(--off-white);
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cocoa-600);
  letter-spacing: 0.02em;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.ticker-track .sep {
  color: var(--gold);
  font-style: normal;
  font-size: 0.9em;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === SERVICES === */
#services {
  background: var(--white);
}

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

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(44, 26, 14, 0.1);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 162, 74, 0.5);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.service-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(196, 162, 74, 0.18), rgba(196, 162, 74, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-price {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cocoa-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--cocoa-600);
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--cocoa-600);
  line-height: 1.5;
}

.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cocoa-900);
  letter-spacing: 0.02em;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
  align-self: flex-start;
}

.service-cta::after {
  content: '→';
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.service-cta:hover {
  color: var(--gold-dark);
  gap: 12px;
}

.service-cta:hover::after { transform: translateX(4px); }

/* Process steps */
.process-section {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(44, 26, 14, 0.1);
}

.process-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  color: var(--cocoa-900);
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 240px;
  padding: 0 24px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196,162,74,0.15), rgba(196,162,74,0.05));
  border: 1.5px solid rgba(196,162,74,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.step-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cocoa-900);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--cocoa-600);
  line-height: 1.65;
}

.process-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  padding: 0 4px;
  margin-bottom: 56px;
}

/* === ABOUT === */
#about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-left h2 { margin-bottom: 24px; }

.about-left p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cocoa-700);
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-full);
  border: 1px solid rgba(196, 162, 74, 0.25);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cocoa-700);
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.a-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.a-num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.a-stat p {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cocoa-600);
  margin: 0;
}

.founders-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 162, 74, 0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.founder-avatar {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

.founder-avatar.founder-r {
  background: radial-gradient(circle at 30% 30%, var(--cocoa-700), var(--cocoa-900));
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(196,162,74,0.35);
}

.founder-avatar.founder-j {
  background: radial-gradient(circle at 30% 30%, var(--cocoa-600), var(--cocoa-800));
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(196,162,74,0.25);
}

.founder-ring {
  display: none;
}

.founder-card h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--cocoa-900);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
}

.founder-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--cocoa-600);
}

.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.tl-item {
  position: relative;
  padding-bottom: 22px;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(196, 162, 74, 0.4);
}

.tl-year {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  display: block;
}

.tl-content h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cocoa-900);
  margin-bottom: 4px;
}

.tl-content p {
  font-size: 0.9rem;
  color: var(--cocoa-700);
  line-height: 1.6;
}

/* === PORTFOLIO === */
#portfolio { background: var(--white); }

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid rgba(44, 26, 14, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cocoa-700);
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--cocoa-900);
  border-color: var(--gold);
  font-weight: 600;
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid rgba(44, 26, 14, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.p-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.p-thumb.g1 { background: linear-gradient(135deg, #F5EDE0, #E0C070); }
.p-thumb.g2 { background: linear-gradient(135deg, #FAF4EA, #C4A24A); }
.p-thumb.g3 { background: linear-gradient(135deg, #2C1A0E, #6B4226); }
.p-thumb.g4 { background: linear-gradient(135deg, #D4B898, #A07850); }
.p-thumb.g5 { background: linear-gradient(135deg, #1C0E07, #A08030); }
.p-thumb.g6 { background: linear-gradient(135deg, #EADBC4, #C4A24A); }

.p-mock {
  width: 82%;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.4s var(--ease);
}

.portfolio-item:hover .p-mock { transform: rotate(0); }

.pm-top {
  height: 20px;
  background: var(--off-white);
  border-bottom: 1px solid rgba(44,26,14,0.08);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
}

.pm-top::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #FF6058;
  box-shadow: 9px 0 0 #FFBE2E, 18px 0 0 #28C842;
}

.pm-lines {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pm-lines div {
  height: 6px;
  border-radius: 3px;
  background: rgba(44, 26, 14, 0.1);
  width: 100%;
}

.pm-lines div:first-child { width: 60%; background: var(--gold); height: 8px; }
.pm-lines div:last-child { width: 75%; }
.pm-lines div.short { width: 40%; }

.p-info {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.p-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--cocoa-900);
  font-weight: 600;
}

.p-info span {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cocoa-400);
}

.p-view-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.p-view-btn:hover {
  color: var(--cocoa-900);
  gap: 10px;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 14, 7, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

#lightbox[hidden] { display: none !important; }

.lightbox-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.lightbox-thumb {
  overflow: hidden;
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  min-height: 420px;
}

.lb-browser {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lb-bar {
  background: #252535;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lb-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.lbd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.lbd.r { background: #FF5F57; }
.lbd.y { background: #FFBD2E; }
.lbd.g { background: #28CA42; }

.lb-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
}

.lb-site {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lightbox-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.lightbox-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
  display: block;
}

.lightbox-body h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cocoa-900);
  margin-bottom: 8px;
}

.lightbox-body p {
  color: var(--cocoa-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

.lightbox-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(44,26,14,0.1);
}

.lightbox-services li {
  font-size: 0.88rem;
  color: var(--cocoa-600);
}

.lightbox-meta {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(44, 26, 14, 0.1);
  margin-top: 8px;
}

.lightbox-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lightbox-meta-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cocoa-400);
}

.lightbox-meta-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cocoa-900);
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(44, 26, 14, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.lightbox-close:hover {
  background: var(--gold);
  transform: rotate(90deg);
}

/* === PRICING === */
#pricing { background: var(--cream); }

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

.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cocoa-600);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(44,26,14,0.15);
  border-radius: var(--radius-full);
  transition: background 0.35s var(--ease);
}

.toggle-track::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease);
}

.toggle-switch input:checked + .toggle-track { background: var(--gold); }
.toggle-switch input:checked + .toggle-track::before { transform: translateX(24px); }

.save-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing-toggle button {
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cocoa-600);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease);
  position: relative;
}

.pricing-toggle button.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--cocoa-900);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(196, 162, 74, 0.25);
}

.pricing-toggle .save-badge {
  position: absolute;
  top: -10px;
  right: -8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--cocoa-900);
  color: var(--gold-light);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(44, 26, 14, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 1.5px solid var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-soft) 100%);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--cocoa-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 16px rgba(196, 162, 74, 0.4);
}

.pc-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cocoa-900);
  font-weight: 700;
  margin-bottom: 6px;
}

.pc-compare {
  font-size: 0.78rem;
  color: var(--cocoa-500);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(196, 162, 74, 0.08);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

.pc-compare strong {
  color: var(--cocoa-800);
}

.pricing-card.featured .pc-compare {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .pc-compare strong {
  color: #fff;
}

.pc-desc {
  font-size: 0.9rem;
  color: var(--cocoa-600);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pc-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pc-dollar {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 600;
  align-self: flex-start;
  margin-top: 12px;
}

.pc-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cocoa-900);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pc-period {
  font-size: 0.88rem;
  color: var(--cocoa-400);
  font-weight: 500;
}

.pc-billing-note {
  font-size: 0.78rem;
  color: var(--cocoa-400);
  margin-bottom: 28px;
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--cocoa-700);
}

.pc-features li.yes::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 1px;
}

.pc-features li.no {
  color: var(--cocoa-400);
  text-decoration: line-through;
}

.pc-features li.no::before {
  content: '✗';
  color: var(--cocoa-200);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
  text-decoration: none;
}

.pc-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* === COMMUNITY === */
#community {
  background: var(--cocoa-900);
  position: relative;
  overflow: hidden;
}

#community::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 162, 74, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

#community::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196, 162, 74, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

#community .container { position: relative; z-index: 1; }

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.community-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.community-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
}

.comm-cause {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(196, 162, 74, 0.12);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.community-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.community-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.7);
  margin-bottom: 16px;
}

.community-card .comm-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.community-pledge {
  text-align: center;
  padding: 48px 36px;
  background: linear-gradient(180deg, rgba(196, 162, 74, 0.08), rgba(196, 162, 74, 0.02));
  border: 1px solid rgba(196, 162, 74, 0.25);
  border-radius: var(--radius-lg);
  position: relative;
}

.pledge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.pledge-num {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(196, 162, 74, 0.3);
  margin-bottom: 12px;
}

.comm-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.pledge-count {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pledge-pct {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pledge-divider {
  width: 48px;
  height: 1px;
  background: rgba(196,162,74,0.4);
  margin: 16px auto;
}

.community-pledge > p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245, 237, 224, 0.85);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

.pledge-sub {
  font-size: 0.85rem !important;
  font-style: normal !important;
  color: rgba(245, 237, 224, 0.55) !important;
  margin-top: 12px !important;
}

.community-cta {
  text-align: center;
  margin-top: 72px;
}

.community-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.community-cta p {
  color: rgba(245, 237, 224, 0.7);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* === TESTIMONIALS === */
#testimonials {
  background: var(--white);
}

.first-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 56px 0 48px;
}

.fc-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(196, 162, 74, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 26, 14, 0.1);
}

.fc-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.fc-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cocoa-900);
  margin-bottom: 12px;
}

.fc-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--cocoa-700);
  margin: 0;
}

.first-client-cta {
  text-align: center;
}

.fc-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--cocoa-400);
  letter-spacing: 0.04em;
}

/* === FAQ === */
#faq { background: var(--cream); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(44, 26, 14, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq-item.open {
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cocoa-900);
  text-align: left;
  background: transparent;
  transition: color 0.3s var(--ease);
}

.faq-q:hover { color: var(--gold-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.4s var(--ease);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cocoa-600);
}

.faq-a[hidden] { display: none; }

/* === CONTACT === */
#contact {
  background: var(--cocoa-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196, 162, 74, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

#contact .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.contact-info > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 237, 224, 0.72);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 237, 224, 0.72);
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cd-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(196, 162, 74, 0.12);
  border: 1px solid rgba(196, 162, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.88rem;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 237, 224, 0.8);
  transition: all 0.3s var(--ease);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cocoa-900);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-field select option {
  background: var(--cocoa-900);
  color: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 237, 224, 0.4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(196, 162, 74, 0.18);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 32px 20px;
  color: var(--white);
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(196,162,74,0.2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.form-error {
  text-align: center;
  padding: 14px;
  margin-top: 12px;
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
  border-radius: var(--radius-sm);
  color: #ff8080;
  font-size: 0.88rem;
}

/* === FOOTER === */
#footer {
  background: var(--cocoa-900);
  border-top: 1px solid rgba(196, 162, 74, 0.15);
  padding: 64px 0 32px;
  color: rgba(245, 237, 224, 0.65);
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.6);
  margin-bottom: 20px;
  max-width: 320px;
}

.charity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(196, 162, 74, 0.1);
  border: 1px solid rgba(196, 162, 74, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.charity-badge::before {
  content: '♥';
  color: var(--gold);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-brand > p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.6);
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.fs-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,237,224,0.7);
  transition: all 0.3s var(--ease);
}

.fs-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cocoa-900);
  transform: translateY(-3px);
}

.fs-btn svg { width: 16px; height: 16px; }

.nl-form {
  display: flex;
  gap: 0;
  margin-top: 12px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.nl-form input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}

.nl-form input::placeholder { color: rgba(245,237,224,0.35); }

.nl-form button {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--cocoa-900);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  border: none;
}

.nl-form button:hover { background: var(--gold-light); }

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.65);
  transition: color 0.3s var(--ease), padding 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 237, 224, 0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.45);
  letter-spacing: 0.02em;
}

.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.5);
  transition: color 0.3s var(--ease);
}

.footer-bottom a:hover { color: var(--gold); }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cocoa-900);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(196, 162, 74, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 162, 74, 0.5);
}

.back-to-top[hidden] { display: none; }

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* === MAGNETIC === */
.magnetic {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
  will-change: transform;
}

/* === RESPONSIVE — TABLET (<= 992px) === */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; margin-top: 24px; }
  .browser-mock { max-width: 460px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-6px); }

  .about-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

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

  .lightbox-panel { grid-template-columns: 1fr; max-height: 92vh; }
}

/* === RESPONSIVE — MOBILE (<= 768px) === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-grid { padding: 100px clamp(20px, 4vw, 36px) 60px; grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-stats { gap: 18px; }
  .stat-divider { display: none; }
  .hero-badge-float:not(.badge-2) { left: 0; top: -4%; }
  .hero-badge-float.badge-2 { right: 0; bottom: -4%; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .about-tags { flex-direction: column; }
  .founder-card { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-tagline { margin-left: auto; margin-right: auto; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }

  .first-client-grid { grid-template-columns: 1fr; gap: 18px; }

  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

/* === RESPONSIVE — SMALL MOBILE (<= 480px) === */
@media (max-width: 480px) {
  .nav-inner { padding: 16px 20px; }
  .nav-logo { font-size: 1.4rem; }

  section { padding: 70px 0; }

  .section-header { margin-bottom: 44px; }

  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline,
  .hero-btns .btn-outline-dark { width: 100%; }

  .btn-gold,
  .btn-outline,
  .btn-outline-dark,
  .btn-outline-light {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .service-card { padding: 28px 22px; }
  .pricing-card { padding: 32px 24px; }
  .pc-amount { font-size: 2.8rem; }

  .community-card { padding: 24px 22px; }
  .community-pledge { padding: 36px 24px; }

  .lightbox-body { padding: 32px 24px; }
  .lightbox-thumb { min-height: 280px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

  .faq-q { padding: 18px 22px; font-size: 0.98rem; }
  .faq-a { padding: 0 22px 18px; }

  .ticker-track { font-size: 1.05rem; gap: 36px; }
  .ticker-track span { gap: 36px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .browser-mock,
  .hero-badge-float,
  .ticker-track {
    animation: none !important;
  }
}

/* === PRINT === */
@media print {
  #navbar, #loader, #cursor, #cursor-dot, .back-to-top,
  .hero-ticker { display: none !important; }

  body { background: white; color: black; }

  section { padding: 20px 0; page-break-inside: avoid; }
}
