/* ============================================
   SignSoon.com — Premium Signage B2B Website
   Design: Elegant Light + Gold Accent + Craftsmanship
   ============================================ */

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

:root {
  /* ── Premium Gold Palette ── */
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-bright: #f0d878;
  --gold-deep: #a8841a;
  --gold-bronze: #b8860b;
  --gold-champagne: #d4af37;
  --gold-soft: rgba(201, 162, 39, 0.08);
  --gold-glow: rgba(201, 162, 39, 0.15);

  /* ── Neutrals ── */
  --ink: #1a1a1a;
  --ink-2: #2d2d2d;
  --ink-3: #444444;
  --ink-4: #666666;
  --ink-5: #888888;
  --ink-6: #aaaaaa;
  --gray-line: #e8e8e8;
  --gray-bg: #f7f6f3;
  --gray-bg-2: #f0efeb;
  --cream: #faf8f5;
  --cream-2: #f5f2ec;
  --white: #ffffff;
  --warm-white: #fdfcfa;

  /* ── Section Backgrounds ── */
  --bg-primary: #fdfcfa;
  --bg-section: #f7f6f3;
  --bg-dark: #1a1814;
  --bg-dark-2: #232017;

  /* ── Gradients ── */
  --grad-gold: linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #b8860b 100%);
  --grad-gold-text: linear-gradient(135deg, #a8841a 0%, #c9a227 30%, #e8c547 60%, #b8860b 100%);
  --grad-gold-soft: linear-gradient(135deg, rgba(201,162,39,0.06) 0%, rgba(232,197,71,0.06) 100%);
  --grad-warm: linear-gradient(180deg, #faf8f5 0%, #f5f2ec 100%);
  --grad-dark: linear-gradient(180deg, #1a1814 0%, #232017 100%);

  /* ── Shadows — Layered & Soft ── */
  --shadow-xs: 0 1px 3px rgba(26,24,20,0.04);
  --shadow-sm: 0 2px 8px rgba(26,24,20,0.05), 0 1px 2px rgba(26,24,20,0.03);
  --shadow-md: 0 6px 24px rgba(26,24,20,0.06), 0 2px 8px rgba(26,24,20,0.03);
  --shadow-lg: 0 16px 48px rgba(26,24,20,0.08), 0 4px 16px rgba(26,24,20,0.04);
  --shadow-xl: 0 24px 64px rgba(26,24,20,0.1), 0 8px 24px rgba(26,24,20,0.05);
  --shadow-2xl: 0 32px 80px rgba(26,24,20,0.12), 0 12px 32px rgba(26,24,20,0.06);
  --shadow-gold: 0 8px 32px rgba(201,162,39,0.12), 0 2px 8px rgba(201,162,39,0.06);
  --shadow-gold-lg: 0 16px 48px rgba(201,162,39,0.15), 0 4px 16px rgba(201,162,39,0.08);

  /* ── Radius ── */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;

  /* ── Transitions ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.4s var(--ease);
  --t-slow: 0.6s var(--ease-out);

  /* ── Layout ── */
  --container: 1280px;

  /* ── Fonts ── */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink-3);
  background: var(--bg-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold-light); color: var(--white); }
::-moz-selection { background: var(--gold-light); color: var(--white); }

/* RTL */
[dir="rtl"] { direction: rtl; text-align: right; }
[dir="rtl"] .nav-links, [dir="rtl"] .hero-content, [dir="rtl"] .about-content { text-align: right; }
[dir="rtl"] .feature-icon, [dir="rtl"] .process-step-number { margin-right: 0; margin-left: 1rem; }

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

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

/* ═══════════════ HEADER ═══════════════ */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--gray-line);
  transition: var(--t);
}

.header.scrolled {
  background: rgba(253, 252, 250, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid transparent;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 46px; height: 46px;
  background: var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold-soft);
  opacity: 0.6;
}

.logo-icon span { position: relative; z-index: 2; }
.logo span {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-4);
  transition: var(--t);
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--gold-deep); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0; height: 2px;
  background: var(--grad-gold);
  transition: var(--t);
  border-radius: 1px;
}

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

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

/* Language Switcher */
.lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--gray-line);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-4);
  transition: var(--t);
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  box-shadow: var(--shadow-gold);
}

.lang-flag { font-size: 1.1rem; line-height: 1; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  min-width: 180px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--t);
}

.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--t);
  border-bottom: 1px solid var(--gray-bg);
  color: var(--ink-4);
}

.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--cream); color: var(--gold-deep); }
.lang-option.active { background: var(--gold-soft); color: var(--gold-deep); }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--r-sm);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  border: none;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--ink);
  color: var(--gold-light);
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  background: var(--ink-2);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(201,162,39,0.2);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-gold:hover::after { left: 100%; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(232,197,71,0.4);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-small { padding: 10px 22px; font-size: 0.8rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--grad-warm);
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,162,39,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 15% 70%, rgba(184,134,11,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative grid */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

/* Floating orbs — subtle gold */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

.hero-orb-1 {
  top: 15%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,197,71,0.1) 0%, transparent 70%);
  animation: orb-float-1 12s ease-in-out infinite;
}

.hero-orb-2 {
  bottom: 10%;
  left: 3%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  animation: orb-float-2 14s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -20px) scale(1.15); }
}

/* Hero mesh placeholder */
.hero-mesh { display: none; }
.hero-orb-3 { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ink);
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  background: var(--white);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-light);
  animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--gold-light); }
  50% { opacity: 0.6; box-shadow: 0 0 18px var(--gold), 0 0 28px rgba(201,162,39,0.3); }
}

.hero-badge-divider {
  width: 1px; height: 14px;
  background: rgba(201,162,39,0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--ink-4);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 600px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-line);
}

.stat-item { text-align: left; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.76rem;
  color: var(--ink-5);
  margin-top: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-6);
  font-size: 0.66rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 50%;
  background: var(--gold-deep);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ═══════════════ SECTION COMMON ═══════════════ */
.section { padding: 130px 0; position: relative; }

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
  position: relative;
  padding: 0 32px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; background: linear-gradient(-90deg, transparent, var(--gold)); }

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .accent {
  font-style: italic;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--ink-5);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(201,162,39,0.04) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(184,134,11,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text .subtitle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--ink-4);
  line-height: 1.9;
  font-size: 0.98rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-3);
}

.about-feature-icon {
  width: 36px; height: 36px;
  background: var(--grad-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

/* About visual */
.about-visual { position: relative; }

.about-visual::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  background: var(--grad-gold-soft);
  border-radius: var(--r-lg);
  z-index: 0;
}

.about-visual::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--r-md);
  z-index: 0;
}

.about-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 2;
  border: 1px solid var(--gray-line);
}

/* Gold corner accent */
.about-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: var(--grad-gold);
  border-radius: 0 var(--r-xl) 0 var(--r-xl);
  opacity: 0.08;
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-bg);
}

.about-card-icon {
  width: 62px; height: 62px;
  background: var(--grad-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: var(--shadow-gold);
}

.about-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.about-card-sub { font-size: 0.84rem; color: var(--ink-5); margin-top: 3px; }

.about-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--cream);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-bg);
  transition: var(--t);
}

.about-stat-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,162,39,0.15);
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label {
  font-size: 0.72rem;
  color: var(--ink-5);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ═══════════════ PRODUCTS ═══════════════ */
.products-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,162,39,0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(184,134,11,0.03) 0%, transparent 40%);
  pointer-events: none;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t-slow);
  border: 1px solid var(--gray-bg);
  position: relative;
}

/* Gold top border animation */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t-slow);
  z-index: 3;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(201,162,39,0.04);
  border-color: rgba(201,162,39,0.15);
}

.product-card:hover::before { transform: scaleX(1); }

.product-image {
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-bg);
}

.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product-card:hover .product-image img { transform: scale(1.1); }

.product-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 80px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--gold-deep);
  z-index: 2;
  border: 1px solid rgba(201,162,39,0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-body { padding: 28px; }

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.product-body p {
  font-size: 0.9rem;
  color: var(--ink-5);
  line-height: 1.7;
  margin-bottom: 22px;
}

.product-actions { display: flex; gap: 10px; }

/* ═══════════════ WHY CHOOSE US ═══════════════ */
.why {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,162,39,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(184,134,11,0.02) 0%, transparent 50%);
  pointer-events: none;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  border: 1px solid var(--gray-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(201,162,39,0.03);
  border-color: rgba(201,162,39,0.12);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: white;
  background: var(--grad-gold);
  box-shadow: var(--shadow-gold);
  transition: var(--t);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: 23px;
  transition: var(--t);
}

.feature-card:hover .feature-icon {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: var(--shadow-gold-lg);
}

.feature-card:hover .feature-icon::after {
  inset: -10px;
  border-color: rgba(201,162,39,0.2);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--ink-5);
  line-height: 1.7;
}

/* ═══════════════ PROCESS ═══════════════ */
.process {
  background: var(--bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,162,39,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184,134,11,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.process::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(201,162,39,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 80%);
}

.process .section-title { color: white; }
.process .section-title em,
.process .section-title .accent {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.process .section-subtitle { color: rgba(255,255,255,0.4); }
.process .section-eyebrow { color: var(--gold-light); }
.process .section-eyebrow::before,
.process .section-eyebrow::after { background: linear-gradient(90deg, transparent, var(--gold)); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.process-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: var(--t);
  position: relative;
  backdrop-filter: blur(8px);
}

/* Gold corner accent */
.process-step::after {
  content: '';
  position: absolute;
  bottom: 12px; right: 12px;
  width: 24px; height: 24px;
  border-bottom: 1.5px solid rgba(201,162,39,0.2);
  border-right: 1.5px solid rgba(201,162,39,0.2);
  border-radius: 0 0 var(--r-lg) 0;
  transition: var(--t);
}

.process-step:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,162,39,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.25), 0 0 32px rgba(201,162,39,0.06);
}

.process-step:hover::after { border-color: rgba(232,197,71,0.4); }

.process-step-number {
  width: 56px; height: 56px;
  background: var(--grad-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.process-step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 18px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
  letter-spacing: -0.2px;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ═══════════════ CONTACT ═══════════════ */
.contact {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(201,162,39,0.04) 0%, transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(184,134,11,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.contact-info { padding: 0; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  border: 1px solid var(--gray-bg);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: rgba(201,162,39,0.15);
}

.contact-item-icon {
  width: 52px; height: 52px;
  background: var(--grad-gold);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.contact-item-label {
  font-size: 0.72rem;
  color: var(--ink-5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item-value {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 600;
  margin-top: 6px;
}

.contact-item-value a { color: var(--gold-deep); transition: var(--t); }
.contact-item-value a:hover { color: var(--gold-bronze); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-bg);
  position: relative;
  overflow: hidden;
}

/* Gold corner accent */
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--grad-gold);
  border-radius: 0 var(--r-xl) 0 var(--r-xl);
  opacity: 0.06;
  pointer-events: none;
}

.contact-form-wrapper::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,162,39,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.form-group { margin-bottom: 22px; position: relative; z-index: 1; }

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  border: 1.5px solid var(--gray-line);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  transition: var(--t);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-6);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--white);
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  display: none;
  padding: 16px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--r-sm);
  color: #059669;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 16px;
}

.form-success.show { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.4);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.4), rgba(184,134,11,0.3), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.footer-brand h3 span {
  font-style: italic;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 380px;
  color: rgba(255,255,255,0.35);
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.04);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.35);
  transition: var(--t);
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-social a:hover {
  background: var(--grad-gold);
  color: white;
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}

.footer-col ul li { margin-bottom: 14px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  transition: var(--t);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.84rem;
  position: relative;
  z-index: 2;
}

.footer-bottom-links { display: flex; gap: 28px; }

.footer-bottom-links a {
  color: rgba(255,255,255,0.25);
  transition: var(--t);
}

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

/* ═══════════════ FLOATING ELEMENTS ═══════════════ */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--t);
  z-index: 999;
  border: 1px solid var(--gray-line);
}

.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,162,39,0.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--t);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.55); }
}

/* ═══════════════ ANIMATIONS ═══════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .about-visual { margin-top: 40px; }
  .contact-content { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 2.3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; width: 100%;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 18px;
    border-bottom: 1px solid var(--gray-line);
  }

  .hero { min-height: auto; padding: 130px 0 90px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-value { font-size: 1.8rem; }
  .hero-scroll-hint { display: none; }
  .hero-orb-1, .hero-orb-2 { display: none; }

  .section { padding: 80px 0; }
  .section-title { font-size: 1.9rem; }

  .products-grid,
  .features-grid,
  .process-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-content { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .contact-form-wrapper { padding: 32px; }
  .about-card { padding: 28px; }

  .scroll-top, .whatsapp-float {
    width: 46px; height: 46px; font-size: 1.1rem;
  }

  .container { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .about-card-stats { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.72rem; padding: 7px 14px; }
  .hero-badge-divider, .hero-badge span:last-child { display: none; }
}
