/* ========================================
   Vibreon — Premium Web Development
   Reference: Daniel.Graphics portfolio aesthetic
   Pure-black background, purple accent, no pink.
   ======================================== */

:root {
  /* Backgrounds — pure black with subtle elevation */
  --bg-base: #000000;
  --bg-elevated: #0a0a0f;
  --bg-card: #11111a;
  --bg-card-hover: #16161f;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(124, 92, 247, 0.35);

  /* Brand accents — purple only (matches reference) */
  --accent-purple: #7C5CF7;
  --accent-purple-light: #A78BFA;
  --accent-purple-deep: #5B3FD9;
  --accent-gradient: linear-gradient(135deg, #7C5CF7 0%, #A78BFA 100%);
  --accent-gradient-hover: linear-gradient(135deg, #6D4BE5 0%, #9575F5 100%);
  --accent-cta-gradient: linear-gradient(135deg, #4C2DBF 0%, #7C5CF7 100%);
  --accent-glow: rgba(124, 92, 247, 0.5);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #b8b8c8;
  --text-muted: #6b6b80;
  --text-dim: #4a4a5e;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ====================================
   HEADER / NAV
   ==================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--accent-purple);
  border-radius: 9px;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  border-radius: 9px;
}
.brand-mark::before {
  content: 'V';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  z-index: 1;
  letter-spacing: -1px;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--text-primary);
}

.header-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: var(--text-primary);
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-gradient {
  background: var(--accent-purple);
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 92, 247, 0.3);
}
.btn-gradient:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 92, 247, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-primary);
}
.btn-outline:hover {
  background: rgba(124, 92, 247, 0.08);
  border-color: var(--accent-purple);
}

.btn-outline-purple {
  background: transparent;
  border: 1.5px solid var(--accent-purple);
  color: var(--text-primary);
  padding: 11px 22px;
  border-radius: 10px;
}
.btn-outline-purple:hover {
  background: rgba(124, 92, 247, 0.15);
  box-shadow: 0 0 16px rgba(124, 92, 247, 0.25);
}

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Floating WhatsApp button — sitewide */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 8px rgba(37, 211, 102, 0.15);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.wa-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.2);
}
.wa-float-label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #11111a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes wa-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.25); }
}
@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; font-size: 25px; }
  .wa-float-label { display: none; }
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  margin-top: 22px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: #1EBE5C;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp i { font-size: 17px; }

.ci-ico-wa {
  background: #25D366 !important;
}

/* ====================================
   SECTION EYEBROWS (simple centered text)
   ==================================== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 0;
  color: var(--text-primary);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #A78BFA 0%, #7C5CF7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* ====================================
   HERO
   ==================================== */
.hero {
  position: relative;
  padding: 60px 0 80px;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(124, 92, 247, 0.12);
  border: 1px solid rgba(124, 92, 247, 0.3);
  color: var(--accent-purple-light);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.8vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #A78BFA 0%, #7C5CF7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text p.lead {
  font-size: 16.5px;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 38px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-laptop {
  width: 100%;
  max-width: 620px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(124, 92, 247, 0.25));
  transform: scale(1.05);
}

/* ====================================
   SERVICES GRID
   ==================================== */
.services {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(124, 92, 247, 0.3);
}
.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.6;
}
.service-card .learn-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-purple-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .learn-more:hover { color: #fff; }

/* ====================================
   WORK / PORTFOLIO
   ==================================== */
.work-section {
  padding: 40px 0 80px;
  position: relative;
  z-index: 1;
}
.work-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-pill {
  background: transparent;
  border: none;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}
.filter-pill.active {
  background: var(--accent-purple);
  color: #fff;
}
.filter-pill:not(.active):hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
}
.work-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.work-card .img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(124, 92, 247, 0.2), rgba(167, 139, 250, 0.1));
  background-size: cover;
  background-position: center;
}
.work-card .body {
  padding: 18px 20px 22px;
}
.work-card .body h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.work-card .body .meta {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.work-cta {
  text-align: center;
  margin-top: 44px;
}

/* ====================================
   CTA BANNER
   ==================================== */
.cta-banner {
  padding: 40px 0 100px;
  position: relative;
  z-index: 1;
}
.cta-card {
  background: linear-gradient(135deg, #4C2DBF 0%, #2D1B7A 100%);
  border-radius: 20px;
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(167, 139, 250, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(124, 92, 247, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.cta-text {
  position: relative;
  z-index: 1;
  flex: 1;
}
.cta-eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}
.cta-card h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
}
.cta-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
}
.cta-actions {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.cta-swirl {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background:
    radial-gradient(circle at center, rgba(167, 139, 250, 0.6) 0%, rgba(124, 92, 247, 0.3) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}
.cta-swirl::after {
  content: '';
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, #7C5CF7, #A78BFA, #5B3FD9, #7C5CF7);
  filter: blur(20px);
  opacity: 0.5;
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer {
  background: var(--bg-base);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 50px;
  margin-bottom: 36px;
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 16px 0 18px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 13px;
  transition: var(--transition-normal);
}
.footer-social a:hover {
  background: var(--accent-purple);
  color: #fff;
}
.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-col ul li i {
  margin-right: 6px;
  color: var(--text-muted);
}
.footer-col ul a {
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-col ul a:hover { color: var(--accent-purple-light); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ====================================
   PAGE HEADER (interior pages)
   ==================================== */
.page-head {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-head h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.page-head h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #A78BFA 0%, #7C5CF7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-head .crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.page-head .crumbs a { color: var(--accent-purple-light); }

/* ====================================
   PRICING (Vibreon tiered cards)
   ==================================== */
.pricing-section {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}
.price-card.featured {
  border-color: var(--accent-purple);
  background: linear-gradient(180deg, rgba(124, 92, 247, 0.08) 0%, var(--bg-card) 50%);
  box-shadow: 0 0 50px rgba(124, 92, 247, 0.15);
}
.price-card.monthly {
  border-color: rgba(167, 139, 250, 0.25);
}
.price-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 6px;
}
.price-badge.popular {
  background: var(--accent-purple);
  color: #fff;
}
.price-badge.monthly-tag {
  background: rgba(167, 139, 250, 0.12);
  color: var(--accent-purple-light);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.price-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  margin-bottom: 14px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-amount .currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}
.price-amount .number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.price-card.featured .price-amount .number {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card.monthly .price-amount .number {
  color: var(--accent-purple-light);
}
.price-amount .term {
  font-size: 15px;
  color: var(--text-muted);
}
.price-strapline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.price-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
  height: 14px;
  color: var(--accent-purple-light);
}

/* Switch timeline */
.switch-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 18px 4px 14px;
  position: relative;
  border-top: 1px dashed rgba(167, 139, 250, 0.2);
  border-bottom: 1px dashed rgba(167, 139, 250, 0.2);
  margin-bottom: 18px;
}
.switch-timeline .st-track {
  position: absolute;
  top: calc(18px + 17px);
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.2), rgba(124, 92, 247, 0.6));
  z-index: 0;
}
.st-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.st-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid rgba(167, 139, 250, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-step-final .st-dot {
  background: var(--accent-purple);
  border-color: transparent;
  box-shadow: 0 0 20px var(--accent-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 30px rgba(124, 92, 247, 0.7); }
}
.st-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-purple-light);
}
.st-step-final .st-num { color: #fff; }
.st-amt {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.st-step-final .st-amt { color: var(--accent-purple-light); }

.switch-callout {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.06) 0%, rgba(124, 92, 247, 0.03) 100%);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.switch-callout strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  margin-bottom: 6px;
}
.switch-callout p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.switch-callout em {
  font-style: normal;
  font-weight: 700;
  color: var(--text-primary);
}

.price-cta {
  margin-top: auto;
}
.price-cta .btn {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  max-width: 720px;
  margin: 50px auto 0;
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pricing-note strong { color: var(--text-primary); }

/* ====================================
   CONTACT
   ==================================== */
.contact-section {
  padding: 60px 0 100px;
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 32px;
  height: fit-content;
}
.contact-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.contact-info p.sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.ci-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.ci-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.ci-row strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.ci-row a, .ci-row span {
  display: block;
  font-size: 14.5px;
  color: var(--text-primary);
}
.ci-row a:hover { color: var(--accent-purple-light); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 36px 32px;
}
.contact-form h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.contact-form p.sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-primary);
  transition: var(--transition-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  background: rgba(124, 92, 247, 0.04);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field textarea { resize: vertical; min-height: 120px; }
.form-status {
  text-align: center;
  font-size: 13px;
  margin-top: 14px;
  color: var(--accent-purple-light);
  min-height: 1em;
}
.form-status.error { color: #ff7a8a; }
.form-status.success { color: #5dd39e; }

/* ====================================
   LEGACY section-tag (kept for interior pages)
   ==================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-glow);
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}
.section-head .section-tag { justify-content: center; }

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-laptop { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .cta-card { flex-direction: column; align-items: flex-start; padding: 40px 32px; text-align: left; }
  .cta-swirl { width: 200px; height: 200px; right: -60px; top: -60px; transform: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    gap: 16px;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
}
@media (max-width: 560px) {
  .services-grid, .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 40px; }
}
