﻿/**
 * Wedimak – Main Stylesheet
 * File: assets/css/style.css
 * ─────────────────────────────────────────────────────────────
 * Table of Contents
 *  1.  CSS Custom Properties (Theme Tokens)
 *  2.  Reset & Base
 *  3.  Preloader
 *  4.  Top Bar
 *  5.  Main Header
 *  6.  Pill Navigation
 *  7.  Header Right (Theme btn, CTA, Hamburger)
 *  8.  Mobile Drawer
 *  9.  Responsive Breakpoints
 *  10. Hero Section
 *  11. Hero Background (Blobs, Rings, Dots, Plus)
 *  12. Hero Content & Badge
 *  13. Keyframe Animations
 *  14. GSAP Entrance / Reveal States
 * ─────────────────────────────────────────────────────────────
 */


/* ─────────────────────────────────────────────────────────────
   1. CSS Custom Properties
───────────────────────────────────────────────────────────── */
:root {
  --page-bg:       #eef0fc;
  --text-primary:  #111130;
  --text-secondary:#5a5a82;
  --text-muted:    #8585a8;
  --accent:        #4f52d3;
  --accent-hover:  #3e41c0;
  --accent-light:  rgba(79, 82, 211, .10);
  --border-color:  rgba(79, 82, 211, .15);
  --nav-link:      #3a3a5c;
  --social-bg:     rgba(79, 82, 211, .08);
  --social-border: rgba(79, 82, 211, .20);
  --social-color:  #5a5aaa;
  --topbar-line:   rgba(79, 82, 211, .13);
  --header-shadow: 0 4px 28px rgba(79, 82, 211, .10);
}

[data-theme="dark"] {
  --page-bg:       #0e0e1a;
  --text-primary:  #e8e8f8;
  --text-secondary:#9090c0;
  --text-muted:    #6060a0;
  --accent:        #6366f1;
  --accent-hover:  #818cf8;
  --accent-light:  rgba(99, 102, 241, .12);
  --border-color:  rgba(99, 102, 241, .18);
  --nav-link:      #b0b0d8;
  --social-bg:     rgba(99, 102, 241, .10);
  --social-border: rgba(99, 102, 241, .22);
  --social-color:  #9090d8;
  --topbar-line:   rgba(255, 255, 255, .07);
  --header-shadow: 0 4px 28px rgba(0, 0, 0, .40);
}


/* ─────────────────────────────────────────────────────────────
   2. Reset & Base
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--page-bg);
  color: var(--text-primary);
  transition: background .35s, color .35s;
}


/* ─────────────────────────────────────────────────────────────
   3. Preloader
───────────────────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--page-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.pl-logo {
  display: flex; align-items: center; gap: 10px;
  animation: plPulse 1.5s ease-in-out infinite;
}
.pl-box {
  width: 46px; height: 46px;
  border: 2.5px solid var(--accent);
  border-radius: 10px;
  display: grid; place-items: center;
}
.pl-box span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 17px; color: var(--accent);
}
.pl-word {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 22px;
  color: var(--accent); letter-spacing: .5px; line-height: 1;
}

.pl-bar {
  width: 130px; height: 3px;
  background: var(--border-color);
  border-radius: 10px; overflow: hidden;
}
.pl-bar-fill {
  height: 100%; width: 0;
  background: var(--accent);
  border-radius: 10px;
  animation: plBar 1.65s ease forwards;
}


/* ─────────────────────────────────────────────────────────────
   4. Top Bar
───────────────────────────────────────────────────────────── */
#topbar {
  background: var(--page-bg);
  border-bottom: 1px solid var(--topbar-line);
  overflow: hidden;
  max-height: 44px;
  transition: max-height .38s ease, opacity .35s ease, border-color .3s;
}
#topbar.hide { max-height: 0; border-bottom-color: transparent; }

.topbar-inner {
  max-width: 1260px; margin: 0 auto; padding: 0 28px;
  height: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.topbar-contacts {
  display: flex; align-items: center; gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
.topbar-contacts li a {
  font-size: 13px; font-family: 'Heebo', sans-serif;
  color: var(--text-secondary); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  transition: color .2s;
}
.topbar-contacts li a i { color: var(--accent); font-size: 12px; }
.topbar-contacts li a:hover { color: var(--accent); }

.topbar-right { display: flex; align-items: center; gap: 11px; }
.follow-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted);
}
.social-list {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.social-list li a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #5b78f614;
  color: var(--accent); font-size: 13px;
  text-decoration: none; border: none;
  transition: all .3s ease;
}
.social-list li a:hover {
  background: var(--accent);
  color: #fff; transform: translateY(-2px);
}


/* ─────────────────────────────────────────────────────────────
   5. Main Header
───────────────────────────────────────────────────────────── */
#header-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
#header-spacer { height: 116px; /* JS overrides this */ }
#site-header {
  position: relative;
  background: var(--page-bg);
  transition: background .4s ease, box-shadow .4s ease;
}
#site-header.scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, .30);
  border-radius: 0 0 20px 20px;
  box-shadow: var(--header-shadow);
}
[data-theme="dark"] #site-header.scrolled {
  background: rgba(14, 14, 26, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* ── Page Action Strip ────────────────────────────────────── */
.bw-page-strip {
  background: var(--card-bg, #fff);
  border-bottom: 1.5px solid rgba(79,82,211,.1);
  padding: 0 28px;
  display: flex; align-items: center; gap: 6px;
  height: 44px;
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.bw-page-strip::-webkit-scrollbar { display: none; }
[data-theme="dark"] .bw-page-strip {
  border-bottom-color: rgba(79,82,211,.2);
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.bw-strip-ctx {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 800;
  color: var(--text-secondary); text-decoration: none;
  white-space: nowrap; flex-shrink: 0; letter-spacing: .3px;
  transition: color .2s;
}
.bw-strip-ctx i { color: var(--accent); }
.bw-strip-ctx:hover { color: var(--accent); }
.bw-strip-div {
  width: 1px; height: 20px;
  background: var(--border-color);
  flex-shrink: 0; margin: 0 4px;
}
.bw-strip-btn {
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap; flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: .4px;
  padding: 5px 11px; border-radius: 8px;
  border: 1.5px solid var(--strip-bdr, #d1d5db);
  background: var(--strip-bg, transparent);
  color: var(--strip-clr, var(--text-secondary));
  cursor: pointer; text-decoration: none;
  transition: all .18s ease;
}
.bw-strip-btn:hover {
  background: var(--strip-hover);
  color: #fff;
  border-color: var(--strip-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--strip-shadow, rgba(0,0,0,.15));
}
.bw-strip-btn-primary {
  --strip-clr: #fff; --strip-bg: var(--accent); --strip-bdr: var(--accent);
  --strip-hover: var(--accent-hover, #3a3db5); --strip-shadow: rgba(79,82,211,.4);
}
.bw-strip-btn-upgrade {
  --strip-clr: #b45309; --strip-bg: rgba(245,158,11,.09); --strip-bdr: rgba(245,158,11,.4);
  --strip-hover: #f59e0b; --strip-shadow: rgba(245,158,11,.4);
}
.bw-strip-btn-lock {
  --strip-clr: #6b7280; --strip-bg: rgba(107,114,128,.07); --strip-bdr: rgba(107,114,128,.3);
  --strip-hover: #6b7280; --strip-shadow: rgba(107,114,128,.3);
}
@media (max-width: 640px) { .bw-page-strip { padding: 0 14px; gap: 4px; } }

.nav-inner {
  max-width: 1260px; margin: 0 auto; padding: 0 28px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

/* Logo */
.site-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.site-logo:hover {
  opacity: 0.8;
}
.logo-box {
  width: 42px; height: 42px;
  border: 2px solid #4f52d3; border-radius: 9px;
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .22s ease;
}
.site-logo:hover .logo-box { background: rgba(79, 82, 211, 0.1); }
.logo-box span {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 900; font-size: 15px; color: #4f52d3;
}
.logo-words {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 900; font-size: 17px;
  color: #4f52d3; letter-spacing: .4px; line-height: 1;
  text-rendering: geometricPrecision;
}


/* ─────────────────────────────────────────────────────────────
   6. Pill Navigation
───────────────────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; }

.nav-pill {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0;
  padding: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .50);
  border: 1px solid rgba(255, 255, 255, .30);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: background .38s ease, border-color .38s ease,
              padding .38s ease, backdrop-filter .38s ease;
}
[data-theme="dark"] .nav-pill {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .10);
}

/* Scrolled: dissolve container, keep active pill */
#site-header.scrolled .nav-pill {
  background: transparent !important;
  border-color: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 6px 2px;
}
#site-header.scrolled .nav-pill li a        { color: var(--nav-link); }
#site-header.scrolled .nav-pill li a.active { color: #fff; background: var(--accent); }
#site-header.scrolled .nav-pill li a:hover  { color: var(--accent); background: var(--accent-light); }

.nav-pill li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px; font-weight: 700;
  color: var(--nav-link); text-decoration: none;
  padding: 9px 20px; border-radius: 100px;
  letter-spacing: .4px; white-space: nowrap;
  display: block;
  transition: color .22s, background .22s;
}
.nav-pill li a:hover  { color: var(--accent); background: var(--accent-light); }
.nav-pill li a.active { color: #fff; background: var(--accent); }


/* ─────────────────────────────────────────────────────────────
   7. Header Right – Theme Button, CTA, Hamburger
───────────────────────────────────────────────────────────── */
.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.theme-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 15px;
  transition: background .22s, color .22s, border-color .22s, transform .2s;
}
.theme-btn:hover {
  background: var(--accent-light); border-color: var(--accent);
  color: var(--accent); transform: rotate(22deg);
}

.btn-hire {
  display: inline-flex; align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 800; letter-spacing: .6px;
  color: #fff; background: var(--accent);
  border: none; border-radius: 50px;
  padding: 10px 10px 10px 26px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(79, 82, 211, .32);
  transition: background .22s, transform .18s, box-shadow .22s;
}
.btn-hire:hover {
  background: var(--accent-hover); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 82, 211, .44);
}
.hire-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 16px; font-size: 13px;
  transition: background .22s;
}
.btn-hire:hover .hire-icon { background: rgba(255, 255, 255, .40); }

.ham-btn {
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  width: 38px; height: 38px; border-radius: 10px;
  border: 1.5px solid var(--border-color);
  background: transparent; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.ham-btn:hover { background: var(--accent-light); border-color: var(--accent); }
.ham-btn span {
  display: block; width: 18px; height: 1.8px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform .28s, opacity .22s, width .22s;
}
.ham-btn.open span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.ham-btn.open span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }


/* ─────────────────────────────────────────────────────────────
   8. Mobile Drawer
───────────────────────────────────────────────────────────── */
.mob-nav {
  background: var(--page-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 24px 16px;
  max-height: 0; overflow: hidden;
  opacity: 0; transform: translateY(-6px);
  transition: max-height .32s ease, opacity .25s ease, transform .28s ease;
}
.mob-nav.open { max-height: 360px; opacity: 1; transform: translateY(0); }

.mob-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.mob-nav-list li a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--nav-link); text-decoration: none;
  padding: 11px 16px; border-radius: 12px;
  transition: color .2s, background .2s;
}
.mob-nav-list li a:hover,
.mob-nav-list li a.active { color: var(--accent); background: var(--accent-light); }


/* ─────────────────────────────────────────────────────────────
   9. Responsive Breakpoints
───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) { .nav-pill li a { padding: 8px 12px; font-size: 12px; } }
@media (max-width: 991px)  { .main-nav, .btn-hire { display: none; } .ham-btn { display: flex; } }
@media (max-width: 640px)  { .topbar-contacts li:last-child { display: none; } .topbar-inner, .nav-inner { padding: 0 16px; } }
@media (max-width: 420px)  { .topbar-contacts { display: none; } }


/* ─────────────────────────────────────────────────────────────
   10. Hero Section – Inset Image Slider
───────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 28px);
  margin: 14px 14px 0;
  border-radius: 28px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: #0a0818; /* fallback while images load */
}

/* Gradient overlay (sits above slides, below content) */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(5, 4, 20, .55) 0%,
    rgba(5, 4, 20, .22) 40%,
    rgba(5, 4, 20, .85) 100%
  );
  pointer-events: none;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 800; color: var(--text-primary);
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(79, 82, 211, .30);
  text-underline-offset: 8px;
}
.hero p {
  font-size: 1.18rem; font-weight: 500; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto 42px; line-height: 1.82;
}
.hero-btns {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 20px; flex-wrap: wrap;
}
.btn-ghost {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--nav-link); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--accent); }


/* ─────────────────────────────────────────────────────────────
   11. Hero Slider Slides
───────────────────────────────────────────────────────────── */
/* Bootstrap carousel fills the absolute inset container */
.hero-slides {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-slides .carousel-inner {
  position: absolute; inset: 0;
}
.hero-slides .carousel-item {
  position: absolute; inset: 0;
  float: none; margin-right: 0;
  background-size: cover; background-position: center;
  animation: kenBurns 9s ease-in-out infinite alternate;
}
/* Slow the fade to match original 1.4 s feel */
#heroCarousel { --bs-carousel-transition-duration: 1.4s; }

@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

/* Prev / Next Control Buttons — same frosted-glass 3D style as .svc-btn */
.hero-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .30);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 7px 0 rgba(0, 0, 0, .38),
    0 12px 24px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .10);
  transition: transform .16s ease, box-shadow .16s ease, background .22s, border-color .22s;
}
.hero-ctrl:hover {
  background: var(--accent);
  border-color: rgba(79, 82, 211, .70);
  color: #fff;
  transform: translateY(-50%) scale(1.10);
  box-shadow:
    0 14px 0 rgba(40, 42, 150, .55),
    0 22px 40px rgba(79, 82, 211, .50),
    inset 0 1px 0 rgba(255, 255, 255, .35),
    inset 0 -1px 0 rgba(0, 0, 0, .12);
}
.hero-ctrl:active {
  transform: translateY(-50%) scale(.94);
  box-shadow:
    0 3px 0 rgba(0, 0, 0, .40),
    0 6px 10px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .20),
    inset 0 2px 6px rgba(0, 0, 0, .12);
}
.hero-ctrl-prev { left: 28px; }
.hero-ctrl-next { right: 28px; }

/* Slider dot indicators */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 10px;
}
.sdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, .40);
  border: none; cursor: pointer; padding: 0;
  transition: background .3s, transform .3s, width .35s;
}
.sdot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
  transform: scale(1);
}
.sdot:hover:not(.active) { background: rgba(255, 255, 255, .70); }

/* Glow Blobs */
.shape {
  position: absolute; border-radius: 50%;
  opacity: .18;
  animation: floatShape 7s ease-in-out infinite;
}
[data-theme="dark"] .shape { opacity: .10; }

.shape-1 { width: 420px; height: 420px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); top: -120px; left: -100px; animation-duration: 9s; }
.shape-2 { width: 280px; height: 280px; background: radial-gradient(circle, #818cf8 0%, transparent 70%); bottom: -80px; right: -60px; animation-duration: 7s; animation-delay: -3s; }
.shape-3 { width: 160px; height: 160px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); top: 40%; left: 12%; animation-duration: 11s; animation-delay: -5s; }
.shape-4 { width: 100px; height: 100px; background: radial-gradient(circle, #a5b4fc 0%, transparent 70%); top: 20%; right: 18%; animation-duration: 8s; animation-delay: -2s; }

/* Dot Grid */
.dot-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(79, 82, 211, .18) 1px, transparent 1px);
  background-size: 32px 32px; opacity: .5;
  animation: driftDots 20s linear infinite;
}
[data-theme="dark"] .dot-grid {
  background-image: radial-gradient(circle, rgba(99, 102, 241, .22) 1px, transparent 1px);
}

/* Floating Dots */
.float-dot {
  position: absolute; border-radius: 50%;
  background: var(--accent); opacity: .22;
  animation: floatDot 6s ease-in-out infinite;
}
[data-theme="dark"] .float-dot { opacity: .30; }
.fd1 { width: 8px;  height: 8px;  top: 22%; left: 30%;    animation-delay: 0s;    animation-duration: 6s; }
.fd2 { width: 5px;  height: 5px;  top: 65%; left: 68%;    animation-delay: -2s;   animation-duration: 8s; }
.fd3 { width: 10px; height: 10px; top: 38%; right: 22%;   animation-delay: -4s;   animation-duration: 7s; }
.fd4 { width: 6px;  height: 6px;  bottom: 28%; left: 52%; animation-delay: -1s;   animation-duration: 9s; }
.fd5 { width: 7px;  height: 7px;  top: 14%; right: 38%;   animation-delay: -3.5s; animation-duration: 6.5s; }

/* Plus Marks */
.plus {
  position: absolute; width: 16px; height: 16px;
  opacity: .28; animation: floatDot 8s ease-in-out infinite;
}
.plus::before, .plus::after { content: ''; position: absolute; background: var(--accent); border-radius: 1px; }
.plus::before { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }
.plus::after  { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.p1 { top: 55%; left: 18%;    animation-delay: -1s; }
.p2 { top: 28%; right: 14%;   animation-delay: -4s; animation-duration: 10s; }
.p3 { bottom: 22%; right: 28%; animation-delay: -2s; animation-duration: 7s; }

/* Circle Rings */
.ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(79, 82, 211, .25);
  pointer-events: none;
}
[data-theme="dark"] .ring { border-color: rgba(99, 102, 241, .30); }
.ring-1 { width: 480px; height: 480px; top: 50%; left: -140px; transform: translateY(-50%); animation: floatShape 12s ease-in-out infinite; }
.ring-2 { width: 260px; height: 260px; top: 12%; right: 8%; animation: floatShape 9s ease-in-out infinite; animation-delay: -4s; }
.ring-3 { width: 120px; height: 120px; bottom: 18%; left: 38%; border-color: rgba(79, 82, 211, .15); animation: floatShape 7s ease-in-out infinite; animation-delay: -2s; }

/* Parallax */
.parallax-layer { transition: transform .12s linear; will-change: transform; }


/* ─────────────────────────────────────────────────────────────
   12. Hero Badge & Typed Cursor
───────────────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 9px 20px 9px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 700;
  color: #fff; letter-spacing: .3px;
  margin-bottom: 28px;
  animation: floatBadge 4s ease-in-out infinite;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fbbf24;
  animation: badgePulse 1.8s ease-in-out infinite;
}

/* Hero overlay content sits above the ::before gradient overlay */
.hero-overlay-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center;
  max-width: 900px; width: 100%;
}

/* H1 and typed text over dark image */
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800; color: #fff;
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 52px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .30);
}
.hero h1 em {
  font-style: normal; color: rgba(255, 255, 255, .88);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .30);
  text-underline-offset: 8px;
}
.typed-cursor { color: #fff; animation: cursorBlink .7s step-end infinite; }

.typed-cursor {
  color: var(--accent);
  animation: cursorBlink .7s step-end infinite;
}


/* ─────────────────────────────────────────────────────────────
   13. Keyframe Animations
───────────────────────────────────────────────────────────── */
@keyframes plPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.07); }
}
@keyframes plBar {
  0%   { width: 0; }
  60%  { width: 72%; }
  100% { width: 100%; }
}
@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.04); }
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes driftDots {
  from { background-position: 0 0; }
  to   { background-position: 32px 32px; }
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .5; }
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; } 50% { opacity: 0; }
}


/* ─────────────────────────────────────────────────────────────
   14. GSAP Entrance / ScrollTrigger Reveal States
   These are starting states – GSAP animates them to visible.
───────────────────────────────────────────────────────────── */
.anim         { opacity: 0; transform: translateY(30px); }
.reveal       { opacity: 0; transform: translateY(40px); }
.reveal-left  { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }


/* ─────────────────────────────────────────────────────────────
   15. Service Buttons (4-up grid on hero)
───────────────────────────────────────────────────────────── */
.hero-card-services {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; width: 100%; max-width: 760px;
  position: relative; z-index: 1;
}

.svc-btn {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 20px;
  padding: 22px 16px;
  text-decoration: none; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .4px;
  opacity: 0; /* GSAP animates in */
  /* 3D depth effect */
  box-shadow:
    0 7px 0 rgba(0, 0, 0, .38),
    0 12px 24px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .10);
  transform: translateY(0);
  transition: transform .16s ease, box-shadow .16s ease, background .22s, border-color .22s;
}
.svc-btn:hover {
  background: var(--accent);
  border-color: rgba(79, 82, 211, .70);
  color: #fff;
  transform: translateY(-7px);
  box-shadow:
    0 14px 0 rgba(40, 42, 150, .55),
    0 22px 40px rgba(79, 82, 211, .50),
    inset 0 1px 0 rgba(255, 255, 255, .35),
    inset 0 -1px 0 rgba(0, 0, 0, .12);
}
.svc-btn:active {
  transform: translateY(3px);
  box-shadow:
    0 3px 0 rgba(0, 0, 0, .40),
    0 6px 10px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .20),
    inset 0 2px 6px rgba(0, 0, 0, .12);
}

.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255, 255, 255, .20);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  transition: background .28s, transform .28s;
}
.svc-btn:hover .svc-icon {
  background: rgba(255, 255, 255, .30);
  transform: scale(1.12) rotate(-8deg);
}
.svc-label { line-height: 1; }


/* ─────────────────────────────────────────────────────────────
   16. Hero Keyframes
───────────────────────────────────────────────────────────── */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}


/* ─────────────────────────────────────────────────────────────
   17. Hero Responsive
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { margin: 8px 8px 0; border-radius: 20px; }
  .hero-card-services { grid-template-columns: repeat(2, 1fr); max-width: 440px; }
}
@media (max-width: 480px) {
  .hero { margin: 6px 6px 0; border-radius: 16px; }
  .svc-btn  { padding: 16px 10px; gap: 8px; }
  .svc-icon { width: 42px; height: 42px; font-size: 18px; }
}


/* ─────────────────────────────────────────────────────────────
   16. Site Footer
───────────────────────────────────────────────────────────── */
#site-footer {
  background: var(--text-primary);
  color: var(--page-bg);
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Brand column */
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-box  { border-color: var(--accent); }
.footer-logo .logo-words { color: #fff; }

.footer-tagline {
  font-size: .93rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-socials {
  list-style: none;
  display: flex;
  gap: 10px;
}
.footer-socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.70);
  font-size: .85rem;
  transition: background .25s, color .25s, transform .25s;
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* Heading */
.footer-heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Quick links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,.60);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Contact list */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: rgba(255,255,255,.60);
}
.footer-contact li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact a {
  color: rgba(255,255,255,.60);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.40);
  text-align: center;
}
.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: #fff; }

/* Dark-theme adjustment — footer keeps its own dark bg */
[data-theme="dark"] #site-footer {
  background: #070712;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; padding: 40px 20px 32px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}


/* ─────────────────────────────────────────────────────────────
   18. Hero CTA Buttons
───────────────────────────────────────────────────────────── */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .28s ease;
  border: 2px solid transparent;
}

.hero-btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(79, 82, 211, .40);
}
.hero-btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(79, 82, 211, .55);
}

.hero-btn-outline {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.hero-btn-outline:hover {
  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 520px) {
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-btn { width: 100%; justify-content: center; font-size: 13px; padding: 12px 20px; }
}


/* ─────────────────────────────────────────────────────────────
   19. Wedding Cards Templates Section
───────────────────────────────────────────────────────────── */
.wc-section {
  padding: 100px 0 80px;
  position: relative;
}

.wc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wc-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.wc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.wc-section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -.5px;
}

.wc-section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Templates Grid */
.wc-templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.wc-tpl-card {
  background: var(--page-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform .32s ease, box-shadow .32s ease;
  position: relative;
}
.wc-tpl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(79, 82, 211, .14);
}
[data-theme="dark"] .wc-tpl-card {
  background: rgba(255, 255, 255, .04);
}

.wc-tpl-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.wc-tpl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.wc-tpl-card:hover .wc-tpl-img img {
  transform: scale(1.08);
}

.wc-tpl-tier {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.wc-tpl-tier.free {
  background: rgba(34, 197, 94, .85);
  color: #fff;
}
.wc-tpl-tier.pro {
  background: rgba(234, 179, 8, .90);
  color: #1a1a2e;
}

.wc-tpl-body {
  padding: 22px 20px;
}
.wc-tpl-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.wc-tpl-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 42px;
}

.wc-tpl-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wc-tpl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 50px;
  transition: all .25s ease;
}
.wc-tpl-btn.preview {
  background: var(--accent);
  color: #fff;
}
.wc-tpl-btn.preview:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(79, 82, 211, .35);
}

.wc-tpl-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}

/* Section CTA */
.wc-section-cta {
  text-align: center;
}
.wc-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(79, 82, 211, .35);
  transition: all .28s ease;
}
.wc-btn-main:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(79, 82, 211, .50);
}

@media (max-width: 640px) {
  .wc-templates-grid { grid-template-columns: 1fr; }
  .wc-section { padding: 60px 0 50px; }
}


/* ─────────────────────────────────────────────────────────────
   20. Wedding Cards Page – Hero Banner
───────────────────────────────────────────────────────────── */
.wc-page-hero {
  background: linear-gradient(135deg, var(--accent), #3e41c0);
  padding: 80px 24px 60px;
  text-align: center;
  border-radius: 0 0 28px 28px;
  margin: 0 14px;
}
.wc-page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.wc-page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.wc-page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}
.wc-page-hero .wc-badge {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .wc-page-hero { padding: 60px 16px 40px; margin: 0 8px; border-radius: 0 0 18px 18px; }
}


/* ─────────────────────────────────────────────────────────────
   21. Packages Comparison
───────────────────────────────────────────────────────────── */
.wc-packages {
  padding: 80px 0 60px;
}
.wc-packages-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.wc-packages-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.wc-packages-sub {
  font-size: .95rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.wc-packages-sub strong { color: var(--accent); }

.wc-pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.wc-pkg-card {
  background: var(--page-bg);
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.wc-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(79, 82, 211, .10);
}
.wc-pkg-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(79, 82, 211, .15);
}
[data-theme="dark"] .wc-pkg-card {
  background: rgba(255,255,255,.03);
}

.wc-pkg-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.wc-pkg-header {
  padding: 32px 24px 24px;
  text-align: center;
}
.wc-pkg-header i {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.wc-pkg-header.free i { color: #22c55e; }
.wc-pkg-header.pro i { color: #eab308; }

.wc-pkg-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.wc-pkg-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}
.wc-pkg-price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: top;
  line-height: 2.4;
}
.wc-pkg-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.wc-pkg-features {
  list-style: none;
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.wc-pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  color: var(--text-secondary);
}
.wc-pkg-features li i {
  width: 18px;
  text-align: center;
  font-size: 12px;
  flex-shrink: 0;
}
.wc-pkg-features li.yes i { color: #22c55e; }
.wc-pkg-features li.no i { color: #ef4444; }
.wc-pkg-features li.no { opacity: .45; }

.wc-pkg-cta {
  padding: 20px 24px;
  text-align: center;
}

.wc-pkg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .25s ease;
}
.wc-pkg-btn.free-btn {
  background: var(--accent-light);
  color: var(--accent);
  border: 1.5px solid var(--border-color);
}
.wc-pkg-btn.free-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.wc-pkg-btn.pro-btn {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
  box-shadow: 0 4px 18px rgba(79, 82, 211, .30);
}
.wc-pkg-btn.pro-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 82, 211, .45);
}

@media (max-width: 640px) {
  .wc-pkg-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .wc-packages { padding: 50px 0 40px; }
}


/* ─────────────────────────────────────────────────────────────
   VENDORS SECTION – Marketplace & Partner CTA
───────────────────────────────────────────────────────────── */
.vendors-section {
  padding: 90px 0 80px;
  background: var(--card-bg, #fff);
  position: relative;
}
.vendors-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.vendors-section .section-header {
  margin-bottom: 56px;
}
.vendors-section .section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(79,82,211,.06);
  border: 1px solid rgba(79,82,211,.12);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  color: #4f52d3;
  margin-bottom: 16px;
}
.vendors-section .section-badge i {
  font-size: 13px;
}
.vendors-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--text-primary, #111);
  margin-bottom: 12px;
}
.vendors-section .section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #666);
  max-width: 580px;
  margin: 0 auto;
}

/* How It Works Cards */
.vendors-how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.hiw-card {
  position: relative;
  background: var(--card-bg, #fff);
  border: 1.5px solid rgba(79,82,211,.08);
  border-radius: 18px;
  padding: 36px 28px 28px;
  text-align: center;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.hiw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f52d3, #818cf8);
  opacity: 0;
  transition: opacity .3s;
}
.hiw-card:hover {
  border-color: rgba(79,82,211,.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(79,82,211,.1);
}
.hiw-card:hover::before {
  opacity: 1;
}
.hiw-step {
  position: absolute;
  top: 14px; right: 16px;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(79,82,211,.06);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 12px;
  color: #4f52d3;
}
.hiw-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79,82,211,.08), rgba(79,82,211,.15));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #4f52d3;
  margin-bottom: 20px;
  transition: all .3s;
}
.hiw-card:hover .hiw-icon {
  background: linear-gradient(135deg, #4f52d3, #6366f1);
  color: #fff;
  transform: scale(1.05);
}
.hiw-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary, #111);
  margin-bottom: 8px;
}
.hiw-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted, #666);
  margin: 0;
}

/* Vendor CTA Banner */
.vendor-cta-banner {
  background: linear-gradient(135deg, #1c1c3a 0%, #2d1b69 100%);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.vendor-cta-banner::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,82,211,.25) 0%, transparent 70%);
  top: -60px; right: -40px;
  pointer-events: none;
}
.vendor-cta-banner::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129,140,248,.15) 0%, transparent 70%);
  bottom: -60px; left: 20px;
  pointer-events: none;
}
.vcta-content {
  display: flex; align-items: flex-start; gap: 20px;
  position: relative; z-index: 2;
}
.vcta-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(79,82,211,.2);
  display: flex; align-items: center; justify-content: center;
  color: #a5b4fc; font-size: 24px;
  flex-shrink: 0;
}
.vcta-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 20px;
  color: #fff;
  margin: 0 0 6px;
}
.vcta-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0;
  max-width: 440px;
}
.vcta-actions {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px;
  flex-shrink: 0;
  position: relative; z-index: 2;
}
.vcta-btn {
  display: inline-flex; align-items: center;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
}
.vcta-btn-primary {
  background: #4f52d3;
  color: #fff;
  border: 2px solid #4f52d3;
}
.vcta-btn-primary:hover {
  background: #3e41c0;
  border-color: #3e41c0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,82,211,.5);
  color: #fff;
}
.vcta-btn-ghost {
  color: rgba(255,255,255,.7);
  font-weight: 500; font-size: 13px;
  padding: 8px 0;
}
.vcta-btn-ghost:hover {
  color: #fff;
}
.vcta-btn-ghost strong {
  color: #a5b4fc;
  font-weight: 700;
}

/* Dark mode adjustments */
[data-theme="dark"] .vendors-section {
  background: var(--bg, #0f0f1a);
}
[data-theme="dark"] .hiw-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(79,82,211,.15);
}
[data-theme="dark"] .hiw-card:hover {
  background: rgba(79,82,211,.06);
}

/* Responsive */
@media (max-width: 900px) {
  .vendor-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
  }
  .vcta-content { flex-direction: column; align-items: center; }
  .vcta-actions { align-items: center; }
}
@media (max-width: 768px) {
  .vendors-how-it-works {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
  }
}
@media (max-width: 576px) {
  .vendors-section { padding: 60px 0 50px; }
  .vendor-cta-banner { padding: 28px 20px; }
  .vcta-btn-primary { width: 100%; justify-content: center; }
}

