/* ===================================================
   LEO VOSS WEBDESIGN — Premium Agency CSS
   =================================================== */

/* --- Variables --- */
:root {
  --primary: #1a2744;
  --primary-dark: #111c33;
  --secondary: #2d4070;
  --accent: #c9a84c;
  --accent-light: #e4c97a;
  --accent-dark: #a8882e;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* --- Typography --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p { line-height: 1.75; color: var(--text-muted); }

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 7rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { color: var(--primary); margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: #fff;
}
.btn-dark:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26,39,68,0.3);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.nav-logo:hover .nav-logo-mark { transform: rotate(-5deg) scale(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle a {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.lang-toggle a.active {
  background: var(--accent);
  color: var(--primary);
}
.nav-cta { padding: 0.6rem 1.4rem; font-size: 0.875rem; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links-mobile { display: none; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links-mobile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary); z-index: 999; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
  .nav-links-mobile.open { transform: translateX(0); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links-mobile.open { transform: translateX(0); }
  .nav-links-mobile a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    padding: 0.5rem 2rem;
  }
  .nav-links-mobile .lang-toggle-mobile {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .nav-links-mobile .lang-toggle-mobile a {
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
  }
  .nav-right .lang-toggle { display: none; }
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(45,64,112,0.8) 0%, transparent 70%),
              radial-gradient(ellipse 60% 70% at 80% 70%, rgba(201,168,76,0.12) 0%, transparent 60%),
              linear-gradient(135deg, #0f1a33 0%, #1a2744 50%, #1f3060 100%);
}
.spotlight {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease-out, top 0.15s ease-out;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge span { animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
}
.hero h1 .line2 {
  display: block;
  color: var(--accent);
}
.typed-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  min-height: 2.5rem;
}
.typed-static { color: rgba(255,255,255,0.7); margin-right: 0.4rem; }
.typed-text { color: var(--accent); font-weight: 700; }
.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1.3em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.8s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Trust Counters */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  background: rgba(255,255,255,0.04);
  padding: 2rem 1rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-hint 2.5s infinite;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================================================
   PROBLEM → SOLUTION
   =================================================== */
.problem-solution { background: var(--bg-light); }
.ps-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ps-panel {
  padding: 3.5rem;
  }
.ps-problems { border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.ps-solutions { border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }
.ps-problems { background: #fff; }
.ps-solutions { background: var(--primary); }
.ps-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ps-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ps-problems .ps-icon { background: #fee2e2; }
.ps-solutions .ps-icon { background: rgba(201,168,76,0.2); }
.ps-panel-header h3 { font-size: 1.25rem; font-weight: 700; }
.ps-problems .ps-panel-header h3 { color: #dc2626; }
.ps-solutions .ps-panel-header h3 { color: var(--accent); }
.ps-items { display: flex; flex-direction: column; gap: 1rem; }
.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.ps-problems .ps-item { background: #fef2f2; }
.ps-solutions .ps-item { background: rgba(255,255,255,0.05); }
.ps-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ps-problems .ps-item-icon { background: #fee2e2; color: #dc2626; }
.ps-solutions .ps-item-icon { background: rgba(201,168,76,0.2); color: var(--accent); }
.ps-item-text { font-size: 0.9rem; line-height: 1.5; }
.ps-problems .ps-item-text { color: var(--text); }
.ps-solutions .ps-item-text { color: rgba(255,255,255,0.8); }
.ps-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  z-index: 20;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

/* ===================================================
   PORTFOLIO
   =================================================== */
.portfolio { background: var(--bg-white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--primary);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-card-preview {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.portfolio-iframe-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: top left;
}
.portfolio-iframe-wrapper iframe {
  max-width: none;
  width: 1280px;
  height: 960px;
  transform: scale(0.3125);
  transform-origin: top left;
  pointer-events: none;
  border: none;
  loading: lazy;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.95) 0%, rgba(26,39,68,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover .portfolio-iframe-wrapper { transform: scale(1.03); transition: transform 0.5s ease; }
.portfolio-category {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}
.portfolio-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  align-self: flex-start;
}
.portfolio-btn:hover { background: var(--accent-light); transform: translateY(-1px); }
.portfolio-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.portfolio-center { text-align: center; }

/* ===================================================
   PROCESS
   =================================================== */
.process { background: var(--bg-light); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.666% + 1rem);
  right: calc(16.666% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-icon-wrapper {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 2rem;
}
.step-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.06;
  transform: scale(1.3);
}
.step-icon {
  width: 112px;
  height: 112px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 32px rgba(26,39,68,0.15);
  border: 3px solid var(--accent);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover .step-icon {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,39,68,0.2), 0 0 0 8px rgba(201,168,76,0.1);
}
.step-number {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  border: 2px solid #fff;
}
.process-step h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9rem; max-width: 240px; margin: 0 auto; }

/* ===================================================
   PRICING
   =================================================== */
.pricing { background: var(--bg-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 2px solid var(--border);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26,39,68,0.12);
  border-color: var(--accent);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--primary);
  box-shadow: 0 20px 60px rgba(26,39,68,0.3);
}
.pricing-card.featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(26,39,68,0.4), 0 0 40px rgba(201,168,76,0.15);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  animation: shimmer-badge 3s infinite;
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
}
@keyframes shimmer-badge {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.pricing-currency { font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.pricing-amount { font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--primary); }
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.pricing-card.featured .pricing-desc {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.1);
}
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.pricing-feature .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--accent);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-feature .check { background: rgba(201,168,76,0.25); }
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-align: center;
}
.pricing-card:not(.featured) .pricing-cta {
  background: var(--bg-light);
  color: var(--primary);
  border: 2px solid var(--border);
}
.pricing-card:not(.featured) .pricing-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}
.pricing-card.featured .pricing-cta {
  background: var(--accent);
  color: var(--primary);
}
.pricing-card.featured .pricing-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials { background: var(--bg-light); }
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 0.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1rem;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-info { flex: 1; }
.testimonial-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  color: var(--primary);
}
.testimonial-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ===================================================
   FAQ
   =================================================== */
.faq { background: var(--bg-white); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: var(--accent); box-shadow: 0 4px 20px rgba(201,168,76,0.12); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
  gap: 1rem;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question-text { font-weight: 600; font-size: 1rem; color: var(--primary); line-height: 1.4; }
.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  background: #fff;
}
.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact { background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; font-size: 0.9rem; }
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover:not(:disabled) {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.35);
}
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(26,39,68,0.3);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.form-submit.loading .spinner { display: block; }
.form-submit.loading .submit-text { display: none; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #f0fdf4;
  border-radius: var(--radius-md);
  border: 2px solid #86efac;
  margin-top: 1rem;
}
.form-success.visible { display: block; }
.form-success p { color: #15803d; font-weight: 600; font-size: 1rem; }
.contact-info { padding: 1rem 0; }
.contact-info h3 { color: var(--primary); font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-info > p { margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.contact-detail:hover { box-shadow: var(--shadow-md); }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text { font-size: 0.85rem; }
.contact-detail-label { font-weight: 700; color: var(--primary); margin-bottom: 0.15rem; }
.contact-detail-value { color: var(--text-muted); }
.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.trust-badge span { font-size: 1rem; }

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: var(--primary);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-banner h2 { color: #fff; margin-bottom: 1.25rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.5rem; position: relative; }
.cta-banner .btn { position: relative; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { }
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 300px; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }

/* ===================================================
   ANIMATIONS & SCROLL EFFECTS
   =================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.from-left {
  transform: translateX(-60px);
}
.animate-on-scroll.from-right {
  transform: translateX(60px);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* Parallax data attribute handled via JS */
[data-parallax] { will-change: transform; }

/* ===================================================
   RESPONSIVE
   =================================================== */
.nav-links-mobile { display: none; }

@media (max-width: 1024px) {
  .ps-grid {
  position: relative; grid-template-columns: 1fr; }
  .ps-divider { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card { order: 0; }
  .pricing-card.featured { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 1.25rem 0.5rem; }
  .ps-panel { padding: 2.5rem 1.75rem; }
  .portfolio-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 2rem; }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-timeline::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .testimonial-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-trust { flex-direction: column; }
  .nav-right .btn { display: none; }
}

/* ===================================================
   PARTICLE CANVAS
   =================================================== */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===================================================
   MISC
   =================================================== */
::selection { background: rgba(201,168,76,0.3); color: var(--primary); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Glow on hover utility */
.glow-hover {
  transition: box-shadow var(--transition);
}
.glow-hover:hover {
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3), 0 16px 48px rgba(201,168,76,0.2);
}

/* --- Process / Workflow --- */
.process { background: var(--bg-light); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}
.process-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--accent);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--accent);
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.process-connector {
  position: absolute;
  top: 28px;
  right: -1rem;
  width: calc(2rem);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(201,168,76,0.3));
  z-index: 1;
}
.process-step:last-child .process-connector { display: none; }
.process-cta {
  text-align: center;
  margin-top: 3rem;
}
.process-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
}
