/* ============================================================
   TACAL DESIGNS - custom.css
   Upload via FTP to: /templates/helix_ultimate/css/custom.css
   Helix Ultimate auto-loads this file on every page.
   DO NOT paste this into the Custom CSS textarea - use FTP.
   ============================================================

   CONTENTS:
   1. CSS Variables + Reset + Base
   2. Utilities + Buttons + Section Headers
   3. Animations
   4. Top Info Bar
   5. Navbar + Mega Menu
   6. Hero Section
   7. Homepage Sections
   8. Footer + Back To Top
   9. Page Hero (inner pages)
   10. Responsive
   11. Toast
   12. Image Styles (all pages)
   13. Chatbot Widget
   14. Quote Generator Modal
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES + RESET + BASE
   ============================================================ */
:root {
  --topbar-h:      38px;
  --primary:       #7c3aed;
  --primary-dark:  #5b21b6;
  --primary-light: #a78bfa;
  --accent:        #c084fc;
  --accent-gold:   #f59e0b;
  --dark:          #0f0a1e;
  --dark-2:        #1a1033;
  --dark-3:        #251847;
  --mid:           #3b2c6e;
  --light-purple:  #ede9fe;
  --white:         #ffffff;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --gray-400:      #9ca3af;
  --gray-600:      #4b5563;
  --gray-800:      #1f2937;
  --text:          #1a0a2e;
  --text-light:    #6b7280;
  --gradient:      linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  --shadow-sm:     0 1px 3px rgba(124,58,237,.12), 0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 4px 24px rgba(124,58,237,.15), 0 2px 8px rgba(0,0,0,.08);
  --shadow-lg:     0 20px 60px rgba(124,58,237,.2), 0 8px 32px rgba(0,0,0,.1);
  --radius-sm:     0px;
  --radius:        0px;
  --radius-lg:     0px;
  --radius-xl:     0px;
  --transition:    0.3s ease;
  --font-sans:     'Inter', system-ui, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;
  --container:     1200px;
  --outline:       1px solid var(--primary-light);
}

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

/* ============================================================
   2. UTILITIES + BUTTONS + SECTION HEADERS
   ============================================================ */
.container       { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.text-center     { text-align: center; }
.section-padding { padding: 96px 0; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 7px 1.75rem;
  border-radius: 0;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-lg { padding: 7px 2.25rem; font-size: 1.05rem; }

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,.5);
  border-color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary-light);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--light-purple);
  color: var(--primary-dark);
  border: 1px solid var(--primary-light);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); border: 1px solid var(--primary-light); }
.btn-white:hover { background: var(--light-purple); transform: translateY(-2px); }

.section-eyebrow {
  display: inline-block;
  background: var(--light-purple);
  color: var(--primary-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 1rem;
  border-radius: 0;
  border: var(--outline);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-subtitle, .section-body {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   3. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(3deg); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes scrollLine {
  0%   { height: 0; }
  50%  { height: 40px; }
  100% { height: 0; opacity: 0; }
}
.fade-in-up { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   4. TOP INFO BAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--dark);
  border-bottom: 1px solid rgba(167,139,250,.25);
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.topbar-left  { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: .5rem; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  transition: color var(--transition);
}
.topbar-item a { color: inherit; transition: color var(--transition); }
.topbar-item a:hover { color: var(--accent); }
.topbar-item i { color: var(--primary-light); font-size: .7rem; flex-shrink: 0; }
.topbar-divider { width: 1px; height: 14px; background: rgba(167,139,250,.3); flex-shrink: 0; }
.topbar-social { display: flex; align-items: center; gap: .35rem; }
.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(167,139,250,.3);
  background: rgba(124,58,237,.18);
  border-radius: 0;
  color: rgba(255,255,255,.65);
  font-size: .65rem;
  transition: all var(--transition);
}
.topbar-social a:hover { background: var(--primary); border-color: var(--primary-light); color: var(--white); }
@media (max-width: 640px) {
  .topbar-item.topbar-hide-sm  { display: none; }
  .topbar-divider.topbar-hide-sm { display: none; }
  .topbar-right { display: none; }
}
@media (max-width: 400px) {
  .topbar-item { font-size: .72rem; gap: .3rem; }
  .topbar-left { gap: .75rem; }
}

/* ============================================================
   5. NAVBAR + MEGA MENU
   ============================================================ */
.site-header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(15,10,30,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  border-bottom: var(--outline);
}
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.3rem; color: var(--white); text-decoration: none; }
.brand-icon { color: var(--accent); font-size: 1.5rem; }
.brand-text .brand-accent { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-link {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .92rem;
  padding: 7px .9rem;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(167,139,250,.1); border-color: var(--primary-light); }
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gradient);
  color: var(--white) !important;
  padding: 7px 1.3rem;
  border-radius: 0;
  border: 1px solid var(--primary-light);
  font-weight: 600;
  font-size: .9rem;
  margin-left: .5rem;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(124,58,237,.4);
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,.55); border-color: var(--accent); }

.nav-dropdown { position: static; }
.mega-chevron { transition: transform var(--transition); display: inline-block; }
.has-mega.mega-open .mega-chevron,
.has-mega:hover      .mega-chevron { transform: rotate(180deg); }

.mega-menu {
  position: fixed;
  top: var(--mega-top, 70px);
  left: 0; right: 0;
  width: 100%;
  z-index: 900;
  background: rgba(20,8,48,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid var(--primary-light);
  border-bottom: 1px solid rgba(167,139,250,.25);
  box-shadow:
    0 32px 80px rgba(0,0,0,.55),
    0  4px 24px rgba(124,58,237,.25),
    inset 0 1px 0 rgba(255,255,255,.04);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity  0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.has-mega:hover .mega-menu,
.has-mega.mega-open .mega-menu { opacity: 1; transform: translateY(0); pointer-events: all; }
.mega-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(124,58,237,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(192,132,252,.08) 0%, transparent 60%);
  pointer-events: none;
}
.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr 1fr;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.mega-col { padding: 0 1.75rem; border-right: 1px solid rgba(167,139,250,.15); }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; }
.mega-col-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(167,139,250,.2);
}
.mega-col-title i { font-size: .8rem; }
.mega-links { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.mega-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 7px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.mega-link:hover { background: rgba(167,139,250,.08); border-color: var(--primary-light); transform: translateX(4px); }
.mega-link-icon {
  width: 38px; height: 38px;
  min-width: 38px;
  border-radius: 0;
  border: var(--outline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.mega-link-icon.social  { background: rgba(219,39,119,.18);  color: #f472b6; }
.mega-link-icon.seo     { background: rgba(124,58,237,.22);  color: var(--primary-light); }
.mega-link-icon.web     { background: rgba(6,182,212,.18);   color: #67e8f9; }
.mega-link-icon.email   { background: rgba(59,130,246,.18);  color: #93c5fd; }
.mega-link-icon.content { background: rgba(16,185,129,.18);  color: #6ee7b7; }
.mega-link-icon.brand   { background: rgba(245,158,11,.18);  color: #fcd34d; }
.mega-link-text { display: flex; flex-direction: column; gap: .1rem; }
.mega-link-text strong { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.92); line-height: 1.2; }
.mega-link-text small  { font-size: .75rem; color: rgba(255,255,255,.45); line-height: 1.3; }
.mega-links-sm { gap: .15rem; }
.mega-link-flat {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 7px .75rem;
  border-radius: 0;
  border: 1px solid transparent;
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.mega-link-flat i { color: var(--accent); width: 14px; font-size: .8rem; }
.mega-link-flat:hover { color: var(--white); background: rgba(167,139,250,.08); border-color: var(--primary-light); padding-left: 1rem; }
.mega-link-flat:focus-visible { outline: 2px solid var(--primary-light); outline-offset: 1px; }
.mega-link-all { color: var(--accent) !important; font-weight: 700; margin-top: .35rem; }
.mega-link-all:hover { background: rgba(192,132,252,.12) !important; }
.mega-col-cta { padding-right: 0; }
.mega-cta-card {
  background: linear-gradient(140deg, rgba(124,58,237,.22) 0%, rgba(37,24,71,.55) 100%);
  border: 1px solid var(--primary-light);
  border-radius: 0;
  padding: 7px 1.4rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  backdrop-filter: blur(8px);
}
.mega-cta-icon {
  width: 46px; height: 46px;
  background: var(--gradient);
  border-radius: 0;
  border: var(--outline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  margin: .75rem 0 .25rem;
  box-shadow: 0 4px 16px rgba(124,58,237,.4);
  animation: float 5s ease-in-out infinite;
}
.mega-cta-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.mega-cta-card p  { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.mega-cta-perks { list-style: none; display: flex; flex-direction: column; gap: .3rem; margin: .25rem 0 .75rem; }
.mega-cta-perks li { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.7); }
.mega-cta-perks i  { color: var(--accent); font-size: .72rem; }
.mega-cta-btn {
  padding: 7px 1.25rem !important;
  font-size: .85rem !important;
  justify-content: center;
  border-radius: 0 !important;
  border: 1px solid var(--primary-light) !important;
  box-shadow: none !important;
}
.mega-cta-btn:hover { background: var(--gradient) !important; border-color: var(--accent) !important; transform: translateY(-1px) !important; }
.mega-footer {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  padding: .85rem 1.5rem;
  border-top: 1px solid rgba(167,139,250,.2);
  position: relative;
  z-index: 1;
}
.mega-footer span { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 500; }
.mega-footer-link { margin-left: auto; display: flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 700; color: var(--accent); transition: gap var(--transition), color var(--transition); text-decoration: none; }
.mega-footer-link:hover { gap: .65rem; color: var(--white); }
.has-mega::after { content: ''; position: absolute; top: 100%; left: -50px; right: -50px; height: 20px; background: transparent; }

@media (max-width: 768px) {
  .mega-menu { position: static !important; transform: none !important; opacity: 1 !important; pointer-events: all !important; backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(26,16,51,.97); border: none; border-top: var(--outline); border-bottom: 1px solid rgba(167,139,250,.15); box-shadow: none; display: none; max-height: 75vh; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(167,139,250,.3) transparent; }
  .has-mega.mega-open .mega-menu { display: block; }
  .mega-inner { grid-template-columns: 1fr; gap: 0; padding: 1rem; }
  .mega-col { padding: 1rem 0; border-right: none; border-bottom: 1px solid rgba(167,139,250,.12); }
  .mega-col:last-child { border-bottom: none; }
  .mega-col-cta .mega-cta-card { padding: 7px 1rem 1.25rem; }
  .mega-footer { gap: 1rem; padding: .75rem 1rem; flex-direction: column; align-items: flex-start; }
  .mega-footer-link { margin-left: 0; }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 7px; background: rgba(255,255,255,.1); border: var(--outline); border-radius: 0; cursor: pointer; }
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 0; transition: all var(--transition); }
.nav-toggle.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--gradient-dark); overflow: hidden; padding: 120px 0 80px; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 300px; height: 300px; background: #ec4899; top: 40%; left: 35%; animation: float 7s ease-in-out infinite; opacity: 0.15; }
.particles { position: absolute; inset: 0; }
.particle { position: absolute; width: 3px; height: 3px; background: rgba(167,139,250,.6); border-radius: 50%; animation: float var(--dur, 6s) ease-in-out infinite; animation-delay: var(--delay, 0s); }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(167,139,250,.15); border: 1px solid var(--primary-light); color: var(--accent); font-size: .85rem; font-weight: 600; padding: 7px 1rem; border-radius: 0; margin-bottom: 1.5rem; }
.hero-badge i { color: var(--accent-gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem; }
.hero-subtitle { font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-actions  { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats    { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.stat-item     { display: flex; flex-direction: column; }
.stat-number   { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-plus     { color: var(--accent); font-weight: 800; font-size: 1.5rem; }
.stat-label    { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 500; margin-top: .2rem; }
.stat-divider  { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hero-scroll-indicator { position: absolute; bottom: 2rem; right: 3rem; display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.5); font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.scroll-line   { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: scrollLine 2s ease infinite; }

/* ============================================================
   7. HOMEPAGE SECTIONS
   ============================================================ */
.trusted-section { background: var(--dark-2); padding: 2rem 0; border-top: var(--outline); border-bottom: var(--outline); }
.trusted-label   { color: rgba(255,255,255,.4); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-align: center; margin-bottom: 1.25rem; }
.trusted-logos   { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem 2.5rem; }
.logo-item       { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.4); font-size: .85rem; font-weight: 500; transition: color var(--transition); }
.logo-item i     { color: var(--accent); font-size: 1rem; }
.logo-item:hover { color: rgba(255,255,255,.75); }

.services-section { background: var(--gray-100); position: relative; }
.services-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient); }
.section-header  { margin-bottom: 4rem; }
.section-header .section-subtitle { margin-top: .75rem; }
.services-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-bottom: 3rem; }
.service-card    { background: var(--white); border-radius: 0; padding: 2.25rem 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--primary-light); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gradient); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.card-highlight  { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%); color: var(--white); border-color: var(--primary-light); }
.card-highlight h3 { color: var(--white); }
.card-highlight p  { color: rgba(255,255,255,.75); }
.card-highlight .service-features li { color: rgba(255,255,255,.8); }
.card-highlight .service-features i  { color: var(--accent); }
.card-highlight .service-link { color: var(--accent); }
.card-highlight::after { background: linear-gradient(90deg, var(--accent), var(--accent-gold)); }
.service-icon-wrap { width: 60px; height: 60px; border-radius: 0; border: var(--outline); background: var(--light-purple); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); margin-bottom: 1.25rem; transition: all var(--transition); }
.card-highlight .service-icon-wrap { background: rgba(167,139,250,.15); color: var(--accent); border-color: var(--primary-light); }
.service-card:hover .service-icon-wrap { background: var(--gradient); color: var(--white); transform: scale(1.1); }
.card-highlight:hover .service-icon-wrap { background: rgba(167,139,250,.3); color: var(--white); }
.service-card h3  { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: .75rem; }
.service-card p   { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.service-features li { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--gray-600); }
.service-features i  { color: var(--primary); font-size: .8rem; }
.service-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--primary); font-weight: 600; font-size: .88rem; transition: gap var(--transition), color var(--transition); }
.service-link:hover { gap: .7rem; color: var(--primary-dark); }
.services-cta { margin-top: 1rem; }

.process-section { background: var(--white); position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: var(--light-purple); border-radius: 50%; opacity: .4; pointer-events: none; }
.process-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.process-text .section-subtitle { margin: 0 0 2.5rem; text-align: left; }
.process-text .section-title    { text-align: left; }
.process-steps   { display: flex; flex-direction: column; gap: 1.5rem; }
.process-step    { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-icon { width: 50px; height: 50px; min-width: 50px; border-radius: 0; border: var(--outline); background: var(--gradient); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; box-shadow: 0 4px 15px rgba(124,58,237,.3); }
.step-content h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.step-content p  { font-size: .88rem; color: var(--text-light); line-height: 1.7; }
.process-card-stack { position: relative; height: 400px; width: 100%; }
.pv-card { position: absolute; background: var(--white); border-radius: 0; border: 1px solid var(--primary-light); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 1rem; min-width: 200px; transition: all var(--transition); }
.pv-card:hover   { transform: scale(1.05) translateY(-4px); box-shadow: var(--shadow-lg); }
.pv-card-icon    { width: 44px; height: 44px; border-radius: 0; border: var(--outline); background: var(--gradient); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; }
.pv-card-metric  { display: block; font-size: 1.4rem; font-weight: 800; color: var(--text); }
.pv-card-label   { display: block; font-size: .78rem; color: var(--text-light); }
.pv-card-1 { top: 5%; left: 0; }
.pv-card-2 { top: 30%; right: 0; }
.pv-card-3 { bottom: 30%; left: 5%; }
.pv-card-4 { bottom: 5%; right: 5%; }
.pv-center-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90px; height: 90px; background: var(--gradient); border-radius: 0; border: 1px solid var(--primary-light); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem; color: var(--white); font-size: .7rem; font-weight: 700; box-shadow: 0 8px 30px rgba(124,58,237,.5); text-align: center; }
.pv-center-badge i { font-size: 1.4rem; }
.pv-center-badge::after { content: ''; position: absolute; inset: -8px; border-radius: 0; border: 2px solid rgba(124,58,237,.3); animation: pulse-ring 2s ease-out infinite; }

.tips-section { background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%); }
.tips-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.tip-card     { background: var(--white); border-radius: 0; border: 1px solid var(--primary-light); padding: 2rem 1.75rem; position: relative; overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.tip-number   { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 3.5rem; font-weight: 800; color: var(--light-purple); line-height: 1; pointer-events: none; }
.tip-icon     { width: 52px; height: 52px; border-radius: 0; border: var(--outline); background: var(--gradient); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.3rem; margin-bottom: 1.25rem; }
.tip-card h3  { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .6rem; line-height: 1.4; }
.tip-card p   { font-size: .88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
.tip-link     { display: inline-flex; align-items: center; gap: .35rem; color: var(--primary); font-weight: 600; font-size: .85rem; transition: gap var(--transition); }
.tip-link:hover { gap: .6rem; }

.testimonials-section { background: var(--dark); position: relative; overflow: hidden; }
.testimonials-section::before { content: ''; position: absolute; top: -200px; left: -200px; width: 500px; height: 500px; background: var(--primary); border-radius: 50%; filter: blur(100px); opacity: .15; pointer-events: none; }
.testimonials-section .section-eyebrow { background: rgba(167,139,250,.15); color: var(--accent); border-color: rgba(167,139,250,.3); }
.testimonials-section .section-title   { color: var(--white); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track  { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-card    { min-width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--primary-light); border-radius: 0; padding: 3rem; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 1.5rem; left: 2rem; font-size: 5rem; color: var(--primary); font-family: Georgia, serif; line-height: 1; opacity: .4; }
.testimonial-stars   { color: var(--accent-gold); margin-bottom: 1.5rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 2rem; max-width: 700px; font-style: italic; }
.testimonial-author  { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 52px; height: 52px; border-radius: 0; border: var(--outline); background: var(--gradient); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.25rem; }
.author-info strong  { display: block; color: var(--white); font-size: .95rem; }
.author-info span    { color: var(--accent); font-size: .8rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.slider-btn { width: 44px; height: 44px; border-radius: 0; border: 1px solid var(--primary-light); background: rgba(255,255,255,.08); color: var(--white); display: flex; align-items: center; justify-content: center; transition: all var(--transition); cursor: pointer; }
.slider-btn:hover { background: var(--gradient); border-color: var(--accent); }
.slider-dots { display: flex; gap: .5rem; }
.dot         { width: 8px; height: 8px; border-radius: 0; background: rgba(255,255,255,.3); cursor: pointer; transition: all var(--transition); }
.dot.active  { background: var(--accent); width: 24px; outline: 1px solid var(--primary-light); }

.pricing-cta-section { background: var(--gray-100); }
.pricing-cta-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pricing-cta-text .section-title { text-align: left; }
.pricing-cta-text p  { color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }
.pricing-perks       { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.pricing-perks li    { display: flex; align-items: center; gap: .65rem; font-size: .92rem; color: var(--gray-800); font-weight: 500; }
.pricing-perks i     { color: var(--primary); }
.pricing-cards-col   { display: flex; gap: 1.25rem; align-items: flex-start; }
.pricing-card        { flex: 1; background: var(--white); border-radius: 0; padding: 2rem 1.5rem; border: 1px solid var(--primary-light); transition: all var(--transition); position: relative; }
.pricing-card:hover  { border-color: var(--accent); box-shadow: var(--shadow); }
.pricing-card-featured { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%); border-color: var(--primary-light); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.pricing-card-featured:hover { transform: scale(1.05); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: var(--white); font-size: .75rem; font-weight: 700; padding: 7px .85rem; border-radius: 0; border: 1px solid var(--primary-light); white-space: nowrap; }
.pricing-card-header { margin-bottom: 1.5rem; }
.pricing-plan { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--primary); margin-bottom: .5rem; }
.pricing-card-featured .pricing-plan { color: var(--accent); }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-card-featured .pricing-price { color: var(--white); }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price sub { font-size: .9rem; color: var(--text-light); font-weight: 400; }
.pricing-card-featured .pricing-price sub { color: rgba(255,255,255,.6); }
.pricing-features    { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.75rem; }
.pricing-features li { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--gray-600); }
.pricing-features i  { color: var(--primary); }
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,.8); }
.pricing-card-featured .pricing-features i  { color: var(--accent); }
.pricing-features .disabled   { opacity: .4; }
.pricing-features .disabled i { color: var(--gray-400); }

.cta-banner { background: var(--gradient-dark); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(167,139,250,.05) 0%, transparent 70%), radial-gradient(ellipse 60% 80% at 80% 50%, rgba(124,58,237,.04) 0%, transparent 70%); }
.cta-banner-inner { display: flex; align-items: center; gap: 3rem; position: relative; z-index: 1; }
.cta-banner-icon  { font-size: 3.5rem; color: var(--accent); flex-shrink: 0; animation: float 4s ease-in-out infinite; }
.cta-banner-text  { flex: 1; }
.cta-banner-text h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.cta-banner-text p  { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 550px; line-height: 1.8; }

/* ============================================================
   8. FOOTER + BACK TO TOP
   ============================================================ */
.site-footer { background: var(--dark); color: var(--white); padding-top: 80px; }
.footer-top  { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: var(--outline); }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .88rem; margin: .75rem 0 1.5rem; }
.footer-social   { display: flex; gap: .75rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 0; border: var(--outline); background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .9rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--gradient); color: var(--white); transform: translateY(-3px); border-color: var(--accent); }
.footer-links-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-links-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links-col a  { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.6); font-size: .88rem; transition: all var(--transition); padding: 7px 0; border-bottom: 1px solid transparent; }
.footer-links-col a:hover { color: var(--accent); border-bottom-color: var(--primary-light); padding-left: 4px; }
.footer-links-col a i { color: var(--accent); width: 1rem; }
.footer-contact-list   { margin-bottom: 1.5rem; }
.footer-contact-list li{ display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.footer-newsletter p   { color: rgba(255,255,255,.5); font-size: .8rem; margin-bottom: .6rem; }
.newsletter-form       { display: flex; gap: .5rem; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,.06); border: var(--outline); border-radius: 0; padding: 7px 1rem; color: var(--white); font-size: .85rem; font-family: inherit; outline: none; transition: border-color var(--transition); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button { width: 40px; height: 40px; border-radius: 0; border: var(--outline); background: var(--gradient); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); flex-shrink: 0; }
.newsletter-form button:hover { transform: scale(1.08); border-color: var(--accent); }
.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,.35); font-size: .82rem; border-top: 1px solid rgba(167,139,250,.08); }
.footer-bottom-links   { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; border-radius: 0; border: var(--outline); background: var(--gradient); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(20px); transition: all var(--transition); box-shadow: 0 4px 15px rgba(124,58,237,.4); z-index: 999; }
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover   { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(124,58,237,.5); border-color: var(--accent); }

/* ============================================================
   9. PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--gradient-dark); padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: var(--primary); border-radius: 50%; filter: blur(80px); opacity: .3; pointer-events: none; }
.page-hero .section-eyebrow { margin-bottom: .75rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   10. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .tips-grid          { grid-template-columns: repeat(2, 1fr); }
  .process-inner      { grid-template-columns: 1fr; gap: 3rem; }
  .process-card-stack { height: 280px; }
  .pricing-cta-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-cards-col  { justify-content: center; }
  .footer-top         { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-padding       { padding: 64px 0; }
  .services-grid         { grid-template-columns: 1fr; }
  .tips-grid             { grid-template-columns: 1fr; }
  .pricing-cards-col     { flex-direction: column; }
  .pricing-card-featured { transform: scale(1); }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; z-index: 999; border: var(--outline); }
  .nav-menu.open { display: flex; }
  .nav-link      { font-size: 1.2rem; color: var(--white); }
  .nav-cta-btn   { font-size: 1rem; padding: 7px 2rem; }
  .nav-toggle    { display: flex; z-index: 1000; position: relative; }
  .hero-title    { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-stats    { gap: 1.25rem; }
  .hero-scroll-indicator { display: none; }
  .cta-banner-inner { flex-direction: column; text-align: center; gap: 2rem; }
  .cta-banner-text p { max-width: 100%; }
  .footer-top    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card   { padding: 2rem 1.5rem; }
  .process-card-stack { display: none; }
}
@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; }
  .btn-lg        { width: 100%; justify-content: center; }
  .hero-stats    { flex-direction: column; gap: 1rem; }
  .stat-divider  { display: none; }
  .trusted-logos { gap: .6rem 1.5rem; }
}

/* ============================================================
   11. TOAST NOTIFICATION
   ============================================================ */
.toast { position: fixed; bottom: 5rem; right: 2rem; background: var(--dark-2); color: var(--white); padding: 7px 1.5rem; border-radius: 0; border: var(--outline); border-left: 4px solid var(--accent); font-size: .9rem; box-shadow: var(--shadow-lg); transform: translateX(110%); transition: transform 0.4s ease; z-index: 2000; max-width: 300px; }
.toast.show { transform: translateX(0); }
.toast i    { color: var(--accent); margin-right: .5rem; }

/* ============================================================
   12. IMAGE STYLES - ALL PAGES
   ============================================================ */
.img-cover  { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.img-panel  { position: relative; overflow: hidden; border: 1px solid var(--primary-light, #a78bfa); background: var(--dark-2, #1a1033); }
.img-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.18) 0%, rgba(192,132,252,.08) 100%); pointer-events: none; z-index: 1; }
.img-panel--scrim::after { background: linear-gradient(to bottom, rgba(15,10,30,.05) 0%, rgba(15,10,30,.55) 100%); }
.img-panel img { transition: transform .55s ease; will-change: transform; }
.img-panel:hover img { transform: scale(1.04); }

.hero-content { display: grid; grid-template-columns: 1fr 480px; gap: 3rem; align-items: center; }
.hero-text-col { display: flex; flex-direction: column; }
.hero-img-panel { position: relative; height: 480px; border: 1px solid var(--primary-light, #a78bfa); overflow: hidden; box-shadow: 0 24px 60px rgba(124,58,237,.35); }
.hero-img-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.2) 0%, rgba(15,10,30,.15) 100%); pointer-events: none; z-index: 1; }
.hero-img-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s ease; }
.hero-img-panel:hover img { transform: scale(1.04); }
.hero-img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2; background: rgba(15,10,30,.88); backdrop-filter: blur(10px); border: 1px solid var(--primary-light, #a78bfa); padding: .75rem 1.1rem; display: flex; align-items: center; gap: .65rem; color: #fff; }
.hero-img-badge i      { font-size: 1.3rem; color: var(--accent, #c084fc); }
.hero-img-badge strong { display: block; font-size: .88rem; font-weight: 700; }
.hero-img-badge span   { font-size: .73rem; color: rgba(255,255,255,.6); }

.about-banner { position: relative; height: 380px; overflow: hidden; border-top: 1px solid var(--primary-light, #a78bfa); border-bottom: 1px solid var(--primary-light, #a78bfa); }
.about-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.about-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,10,30,.78) 0%, rgba(124,58,237,.35) 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; gap: 1rem; padding: 2rem; }
.about-banner-overlay h2 { font-family: var(--font-display, 'Playfair Display', serif); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1.25; }
.about-banner-overlay p  { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 560px; line-height: 1.7; }

.process-img-wrap { position: relative; width: 100%; max-width: 520px; margin: 0 auto 3rem; height: 280px; overflow: hidden; border: 1px solid var(--primary-light, #a78bfa); }
.process-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.process-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(15,10,30,.1)); pointer-events: none; }

.svc-photo-card { position: relative; width: 100%; height: 220px; overflow: hidden; border: 1px solid var(--primary-light, #a78bfa); margin-bottom: 1rem; }
.svc-photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
.svc-photo-card:hover img { transform: scale(1.05); }
.svc-photo-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.18) 0%, rgba(15,10,30,.1) 100%); pointer-events: none; }

.blog-featured { background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.blog-featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,10,30,.85) 0%, rgba(37,24,71,.75) 55%, rgba(124,58,237,.25) 100%); z-index: 0; }
.blog-featured-content { position: relative; z-index: 1; }
.blog-card-photo { width: 100%; height: 180px; overflow: hidden; position: relative; }
.blog-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
.blog-card:hover .blog-card-photo img { transform: scale(1.06); }

.contact-photo-wrap { position: relative; width: 100%; height: 260px; overflow: hidden; border: 1px solid var(--primary-light, #a78bfa); margin-bottom: 1.75rem; }
.contact-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s ease; }
.contact-photo-wrap:hover img { transform: scale(1.04); }
.contact-photo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(15,10,30,.18)); pointer-events: none; }
.contact-photo-badge { position: absolute; bottom: 1rem; left: 1rem; z-index: 2; display: flex; align-items: center; gap: .6rem; background: rgba(15,10,30,.85); backdrop-filter: blur(10px); border: 1px solid var(--primary-light, #a78bfa); padding: .6rem 1rem; color: #fff; font-size: .8rem; font-weight: 500; letter-spacing: .02em; }
.contact-photo-badge i { color: var(--primary-light, #a78bfa); font-size: .9rem; flex-shrink: 0; }

.tip-card-img { width: 100%; height: 160px; overflow: hidden; position: relative; border-bottom: 1px solid var(--primary-light, #a78bfa); margin-bottom: 1.25rem; }
.tip-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
.tip-card:hover .tip-card-img img { transform: scale(1.06); }
.tip-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(124,58,237,.1), rgba(15,10,30,.3)); pointer-events: none; }

img[loading="lazy"] { opacity: 0; transition: opacity .45s ease; }
img[loading="lazy"].img-loaded { opacity: 1; }

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-img-panel { height: 340px; order: -1; }
  .about-banner { height: 280px; }
}
@media (max-width: 768px) {
  .hero-img-panel     { height: 260px; }
  .about-banner       { height: 220px; }
  .svc-photo-card     { height: 180px; }
  .tip-card-img       { height: 130px; }
  .blog-card-photo    { height: 150px; }
  .contact-photo-wrap { height: 200px; }
  .process-img-wrap   { height: 200px; }
}

/* ============================================================
   13. CHATBOT WIDGET
   ============================================================ */
.chatbot-launcher { position: fixed; bottom: 28px; right: 28px; z-index: 9999; width: 60px; height: 60px; border-radius: 0; border: 2px solid var(--primary-light, #a78bfa); background: linear-gradient(135deg, #7c3aed 0%, #c084fc 100%); color: #fff; font-size: 1.45rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 30px rgba(124,58,237,.45); cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; overflow: visible; }
.chatbot-launcher:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 40px rgba(124,58,237,.6); }
.chatbot-launcher:focus-visible { outline: 2px solid #a78bfa; outline-offset: 3px; }
.chatbot-launcher-icon { display: flex; align-items: center; justify-content: center; }
.chatbot-launcher .close-icon { display: none; }
.chatbot-launcher--open .open-icon  { display: none; }
.chatbot-launcher--open .close-icon { display: flex; }
.chatbot-launcher--pulse { animation: chatPulse 1.8s ease-in-out 3; }
@keyframes chatPulse {
  0%,100% { box-shadow: 0 6px 30px rgba(124,58,237,.45); }
  50%      { box-shadow: 0 6px 48px rgba(167,139,250,.85), 0 0 0 10px rgba(124,58,237,.15); }
}
.chatbot-unread-badge { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; background: #ef4444; color: #fff; font-size: .7rem; font-weight: 700; border-radius: 0; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; line-height: 1; transition: opacity .3s, transform .3s; }
.chatbot-badge--hidden { opacity: 0; transform: scale(0); pointer-events: none; }
.chatbot-window { position: fixed; bottom: 104px; right: 28px; z-index: 9998; width: 380px; max-height: 560px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--primary-light, #a78bfa); border-radius: 0; box-shadow: 0 16px 60px rgba(124,58,237,.25), 0 4px 20px rgba(0,0,0,.12); opacity: 0; transform: translateY(20px) scale(.97); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.chatbot-window--open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.chatbot-header { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1rem; background: linear-gradient(135deg, #0f0a1e 0%, #251847 100%); border-bottom: 1px solid rgba(167,139,250,.3); flex-shrink: 0; }
.chatbot-agent  { display: flex; align-items: center; gap: .75rem; }
.chatbot-avatar { position: relative; width: 42px; height: 42px; border-radius: 0; border: 1px solid var(--primary-light, #a78bfa); background: rgba(124,58,237,.3); display: flex; align-items: center; justify-content: center; color: #c084fc; font-size: 1.1rem; flex-shrink: 0; }
.chatbot-online-dot { position: absolute; bottom: -3px; right: -3px; width: 11px; height: 11px; background: #22c55e; border: 2px solid #0f0a1e; border-radius: 50%; }
.chatbot-agent-info strong { display: block; font-size: .9rem; color: #fff; font-weight: 700; }
.chatbot-agent-info span   { font-size: .72rem; color: rgba(255,255,255,.55); }
.chatbot-status { color: #22c55e; font-weight: 600; }
.chatbot-header-actions { display: flex; align-items: center; gap: .4rem; }
.chatbot-action-btn { width: 30px; height: 30px; border-radius: 0; border: 1px solid rgba(167,139,250,.3); background: rgba(124,58,237,.2); color: rgba(255,255,255,.7); font-size: .8rem; display: flex; align-items: center; justify-content: center; transition: all .2s; cursor: pointer; }
.chatbot-action-btn:hover { background: rgba(124,58,237,.5); color: #fff; border-color: var(--primary-light, #a78bfa); }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 1rem .875rem; display: flex; flex-direction: column; gap: .6rem; scroll-behavior: smooth; background: #f8f7ff; }
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: #c4b5fd; border-radius: 0; }
.chatbot-msg { display: flex; align-items: flex-end; gap: .5rem; max-width: 90%; animation: msgFadeIn .22s ease both; }
@keyframes msgFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chatbot-msg--bot  { align-self: flex-start; flex-direction: row; }
.chatbot-msg--user { align-self: flex-end; flex-direction: row-reverse; }
.chatbot-msg-avatar { width: 28px; height: 28px; border-radius: 0; border: 1px solid var(--primary-light, #a78bfa); background: #ede9fe; color: #7c3aed; display: flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; }
.chatbot-bubble { padding: .6rem .875rem; font-size: .855rem; line-height: 1.65; max-width: 260px; word-break: break-word; border: 1px solid transparent; }
.chatbot-msg--bot  .chatbot-bubble { background: #fff; border-color: #e9e3ff; color: #1a0a2e; border-radius: 0; box-shadow: 0 1px 4px rgba(124,58,237,.1); }
.chatbot-msg--user .chatbot-bubble { background: linear-gradient(135deg, #7c3aed, #c084fc); color: #fff; border-radius: 0; border-color: transparent; }
.chatbot-bubble a { color: #7c3aed; text-decoration: underline; }
.chatbot-msg--user .chatbot-bubble a { color: #fff; }
.chatbot-ts { font-size: .65rem; color: #9ca3af; display: block; margin-top: .15rem; flex-shrink: 0; align-self: flex-end; padding-bottom: 2px; }
.chatbot-typing-indicator { display: flex !important; align-items: center; gap: 4px; padding: .7rem 1rem !important; min-width: 52px; }
.chatbot-typing-indicator span { display: inline-block; width: 7px; height: 7px; background: #a78bfa; border-radius: 50%; animation: typingBounce 1.2s infinite ease-in-out; }
.chatbot-typing-indicator span:nth-child(2) { animation-delay: .2s; }
.chatbot-typing-indicator span:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce { 0%, 80%, 100% { transform: scale(.75); opacity: .5; } 40% { transform: scale(1.15); opacity: 1; } }
.chatbot-quick-replies { display: flex; flex-wrap: wrap; gap: .4rem; padding: .6rem .875rem; background: #f8f7ff; border-top: 1px solid #ede9fe; flex-shrink: 0; min-height: 0; transition: min-height .2s; }
.chatbot-qr-btn { padding: 5px .85rem; border-radius: 0; border: 1px solid #a78bfa; background: #fff; color: #7c3aed; font-size: .78rem; font-weight: 600; cursor: pointer; transition: all .2s; white-space: nowrap; font-family: inherit; }
.chatbot-qr-btn:hover { background: linear-gradient(135deg, #7c3aed, #c084fc); color: #fff; border-color: transparent; }
.chatbot-input-bar  { display: flex; gap: 0; padding: .7rem .875rem; background: #fff; border-top: 1px solid #e9e3ff; flex-shrink: 0; }
.chatbot-input { flex: 1; padding: 7px .875rem; border: 1px solid #a78bfa; border-right: none; border-radius: 0; font-family: inherit; font-size: .875rem; color: #1a0a2e; background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
.chatbot-input:focus { border-color: #7c3aed; box-shadow: 0 0 0 2px rgba(124,58,237,.12); }
.chatbot-input::placeholder { color: #9ca3af; }
.chatbot-send-btn { width: 42px; background: linear-gradient(135deg, #7c3aed, #c084fc); color: #fff; border: 1px solid #a78bfa; border-left: none; border-radius: 0; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: opacity .2s; flex-shrink: 0; }
.chatbot-send-btn:hover { opacity: .88; }
@media (max-width: 480px) {
  .chatbot-window { width: calc(100vw - 24px); right: 12px; bottom: 88px; max-height: 70vh; }
  .chatbot-launcher { right: 16px; bottom: 20px; }
}

/* ============================================================
   14. QUOTE GENERATOR MODAL
   ============================================================ */
.quote-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(10,5,30,.72); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity .28s ease; }
.quote-overlay--open { opacity: 1; pointer-events: all; }
.quote-modal { width: 100%; max-width: 820px; max-height: calc(100vh - 2rem); background: #fff; border: 1px solid var(--primary-light, #a78bfa); border-radius: 0; box-shadow: 0 24px 80px rgba(124,58,237,.35); display: flex; flex-direction: column; overflow: hidden; transform: translateY(30px) scale(.97); transition: transform .28s ease; }
.quote-overlay--open .quote-modal { transform: translateY(0) scale(1); }
.quote-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem; background: linear-gradient(135deg, #0f0a1e 0%, #251847 100%); border-bottom: 1px solid rgba(167,139,250,.25); flex-shrink: 0; }
.quote-header-left  { display: flex; align-items: center; gap: .875rem; }
.quote-logo-icon    { width: 44px; height: 44px; border-radius: 0; border: 1px solid var(--primary-light, #a78bfa); background: rgba(124,58,237,.3); display: flex; align-items: center; justify-content: center; color: #c084fc; font-size: 1.2rem; flex-shrink: 0; }
.quote-title    { font-size: 1.1rem; font-weight: 800; color: #fff; font-family: 'Playfair Display', Georgia, serif; margin: 0; }
.quote-subtitle { font-size: .78rem; color: rgba(255,255,255,.55); margin: 0; }
.quote-close-btn { width: 34px; height: 34px; border-radius: 0; border: 1px solid rgba(167,139,250,.35); background: rgba(124,58,237,.25); color: rgba(255,255,255,.7); font-size: .9rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.quote-close-btn:hover { background: rgba(124,58,237,.6); color: #fff; border-color: #a78bfa; }
.quote-progress-bar   { padding: .875rem 1.5rem .6rem; background: #faf9ff; border-bottom: 1px solid #ede9fe; flex-shrink: 0; }
.quote-progress-track { height: 4px; background: #e9e3ff; border-radius: 0; overflow: hidden; margin-bottom: .75rem; }
.quote-progress-fill  { height: 100%; background: linear-gradient(135deg, #7c3aed, #c084fc); border-radius: 0; transition: width .4s ease; width: 0%; }
.quote-steps-labels   { display: flex; justify-content: space-between; gap: .25rem; }
.quote-step-label     { display: flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 600; color: #9ca3af; transition: color .3s; white-space: nowrap; }
.quote-step-label.active    { color: #7c3aed; }
.quote-step-label.completed { color: #22c55e; }
.quote-step-num { width: 18px; height: 18px; border-radius: 0; border: 1px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; }
.completed .quote-step-num::before { content: 'v'; }
.completed .quote-step-num { font-size: 0; }
.quote-body { flex: 1; overflow-y: auto; padding: 1.5rem; scroll-behavior: smooth; }
.quote-body::-webkit-scrollbar { width: 4px; }
.quote-body::-webkit-scrollbar-thumb { background: #c4b5fd; border-radius: 0; }
.quote-body.slide-in { animation: stepSlide .22s ease both; }
@keyframes stepSlide { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
.quote-step-header    { margin-bottom: 1.5rem; }
.quote-step-header h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; font-weight: 700; color: #1a0a2e; margin-bottom: .35rem; }
.quote-step-header p  { font-size: .88rem; color: #6b7280; }
.quote-service-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: .875rem; margin-bottom: 1rem; }
.quote-svc-card { position: relative; padding: 1.1rem; background: #fff; border: 1px solid #e5e7eb; border-radius: 0; cursor: pointer; transition: all .2s; display: flex; flex-direction: column; gap: .4rem; user-select: none; }
.quote-svc-card:hover    { border-color: #a78bfa; box-shadow: 0 4px 16px rgba(124,58,237,.12); }
.quote-svc-card.selected { border-color: #7c3aed; background: #faf9ff; box-shadow: 0 4px 20px rgba(124,58,237,.18); }
.quote-svc-card.popular  { border-color: #c084fc; }
.quote-popular-tag { position: absolute; top: -1px; right: -1px; padding: 3px 8px; background: linear-gradient(135deg, #7c3aed, #c084fc); color: #fff; font-size: .68rem; font-weight: 700; border-radius: 0; border: none; }
.quote-svc-icon    { width: 40px; height: 40px; border-radius: 0; border: 1px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 1rem; opacity: .85; }
.quote-svc-card strong { font-size: .88rem; color: #1a0a2e; font-weight: 700; line-height: 1.3; }
.quote-svc-card p      { font-size: .76rem; color: #6b7280; line-height: 1.5; margin: 0; flex: 1; }
.quote-svc-price { font-size: .76rem; color: #7c3aed; font-weight: 600; margin-top: .2rem; }
.quote-svc-check { position: absolute; top: .7rem; right: .7rem; width: 20px; height: 20px; border-radius: 0; border: 1.5px solid #d1d5db; background: #fff; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: transparent; transition: all .2s; }
.quote-svc-card.selected .quote-svc-check { background: linear-gradient(135deg, #7c3aed, #c084fc); border-color: #7c3aed; color: #fff; }
.quote-bundle-hint { padding: 7px 1rem; font-size: .82rem; font-weight: 600; border: 1px solid transparent; transition: all .25s; }
.hint-info    { background: #ede9fe; color: #5b21b6; border-color: #a78bfa; }
.hint-success { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }
.hint-gold    { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.quote-size-list { display: flex; flex-direction: column; gap: .6rem; }
.quote-size-item { display: flex; align-items: center; gap: 1rem; padding: .875rem 1rem; background: #fff; border: 1px solid #e5e7eb; border-radius: 0; cursor: pointer; transition: all .2s; }
.quote-size-item:hover    { border-color: #a78bfa; background: #faf9ff; }
.quote-size-item.selected { border-color: #7c3aed; background: #faf9ff; }
.quote-size-icon { width: 44px; height: 44px; border-radius: 0; border: 1px solid #a78bfa; background: #ede9fe; display: flex; align-items: center; justify-content: center; color: #7c3aed; font-size: 1.1rem; flex-shrink: 0; }
.quote-size-text { flex: 1; }
.quote-size-text strong { display: block; font-size: .9rem; color: #1a0a2e; font-weight: 700; }
.quote-size-text span   { font-size: .8rem; color: #6b7280; }
.quote-size-multiplier  { font-size: .78rem; font-weight: 600; color: #7c3aed; }
.quote-size-radio { width: 20px; height: 20px; border-radius: 0; border: 1.5px solid #d1d5db; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: transparent; flex-shrink: 0; transition: all .2s; }
.quote-size-item.selected .quote-size-radio { background: #7c3aed; border-color: #7c3aed; color: #fff; }
.quote-timeline-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.quote-timeline-card  { padding: 1.5rem 1rem; background: #fff; border: 1px solid #e5e7eb; border-radius: 0; cursor: pointer; text-align: center; transition: all .2s; display: flex; flex-direction: column; align-items: center; gap: .4rem; position: relative; }
.quote-timeline-card:hover    { border-color: #a78bfa; background: #faf9ff; }
.quote-timeline-card.selected { border-color: #7c3aed; background: #faf9ff; }
.quote-tl-icon   { width: 52px; height: 52px; border-radius: 0; border: 1px solid #a78bfa; background: #ede9fe; display: flex; align-items: center; justify-content: center; color: #7c3aed; font-size: 1.3rem; margin-bottom: .4rem; }
.quote-timeline-card strong { font-size: 1rem; color: #1a0a2e; font-weight: 700; }
.quote-timeline-card span   { font-size: .8rem; color: #6b7280; }
.quote-tl-premium  { font-size: .75rem; font-weight: 700; color: #ef4444; margin-top: .25rem; }
.quote-tl-discount { font-size: .75rem; font-weight: 700; color: #16a34a; margin-top: .25rem; }
.quote-timeline-card .quote-size-radio { position: absolute; top: .7rem; right: .7rem; }
.quote-timeline-card.selected .quote-size-radio { background: #7c3aed; border-color: #7c3aed; color: #fff; }
.quote-addons-grid  { display: flex; flex-direction: column; gap: .6rem; }
.quote-addon-card   { display: flex; align-items: center; gap: .875rem; padding: .875rem 1rem; background: #fff; border: 1px solid #e5e7eb; border-radius: 0; cursor: pointer; transition: all .2s; }
.quote-addon-card:hover    { border-color: #a78bfa; background: #faf9ff; }
.quote-addon-card.selected { border-color: #7c3aed; background: #faf9ff; }
.quote-addon-icon  { width: 40px; height: 40px; border-radius: 0; border: 1px solid #a78bfa; background: #ede9fe; display: flex; align-items: center; justify-content: center; color: #7c3aed; font-size: .95rem; flex-shrink: 0; }
.quote-addon-body  { flex: 1; }
.quote-addon-body strong { display: block; font-size: .875rem; color: #1a0a2e; font-weight: 700; }
.quote-addon-body span   { font-size: .78rem; color: #6b7280; }
.quote-addon-price { text-align: right; flex-shrink: 0; }
.quote-addon-price strong { display: block; font-size: .95rem; color: #7c3aed; font-weight: 700; }
.quote-addon-check { width: 28px; height: 28px; border-radius: 0; border: 1.5px solid #d1d5db; background: #fff; display: flex; align-items: center; justify-content: center; font-size: .8rem; color: #9ca3af; flex-shrink: 0; transition: all .2s; }
.quote-addon-card.selected .quote-addon-check { background: linear-gradient(135deg, #7c3aed, #c084fc); border-color: #7c3aed; color: #fff; }
.quote-summary-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.quote-summary-id   { font-size: .72rem; color: #9ca3af; margin-bottom: .5rem; font-family: monospace; }
.quote-summary-left h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 700; color: #1a0a2e; margin-bottom: .35rem; }
.quote-summary-config  { font-size: .78rem; color: #6b7280; margin-bottom: 1rem; }
.quote-summary-config i { color: #7c3aed; }
.quote-breakdown { border: 1px solid #e9e3ff; margin-bottom: 1rem; overflow: hidden; }
.quote-line-item  { display: flex; justify-content: space-between; align-items: center; padding: .6rem .875rem; font-size: .83rem; border-bottom: 1px solid #f0edff; gap: .5rem; }
.quote-line-item:last-child { border-bottom: none; }
.quote-line-item span:first-child { display: flex; align-items: center; gap: .45rem; color: #374151; flex: 1; }
.quote-line-item span:last-child  { font-weight: 700; color: #1a0a2e; white-space: nowrap; }
.quote-addon-line    { background: #f8f7ff; }
.quote-savings-line  { background: #f0fdf4; }
.quote-savings-line span:last-child { color: #16a34a; }
.quote-no-services   { padding: .875rem; color: #9ca3af; font-size: .85rem; margin: 0; text-align: center; }
.quote-totals { border: 1px solid #a78bfa; padding: 1rem; background: #faf9ff; margin-bottom: .875rem; }
.quote-total-row { display: flex; justify-content: space-between; align-items: center; gap: .5rem; margin-bottom: .4rem; }
.quote-total-row:last-child { margin-bottom: 0; }
.quote-total-row span { font-size: .85rem; color: #6b7280; }
.quote-price-big  { font-size: 1.45rem; color: #7c3aed; font-weight: 800; }
.quote-price-big small { font-size: .65em; font-weight: 600; color: #9ca3af; }
.quote-annual-value { margin-top: .6rem; padding-top: .6rem; border-top: 1px dashed #e9e3ff; font-size: .78rem; color: #6b7280; }
.quote-annual-value strong { color: #1a0a2e; }
.quote-guarantee   { display: flex; align-items: flex-start; gap: .6rem; padding: .75rem .875rem; background: #d1fae5; border: 1px solid #6ee7b7; font-size: .8rem; color: #065f46; }
.quote-guarantee i { color: #16a34a; flex-shrink: 0; margin-top: .1rem; }
.quote-summary-right h4 { font-size: 1rem; font-weight: 700; color: #1a0a2e; margin-bottom: .3rem; }
.quote-summary-right > p { font-size: .8rem; color: #6b7280; margin-bottom: 1.1rem; line-height: 1.55; }
.quote-contact-form { display: flex; flex-direction: column; gap: .7rem; }
.quote-field { display: flex; flex-direction: column; gap: .3rem; }
.quote-field label { font-size: .8rem; font-weight: 600; color: #374151; }
.quote-field label span { color: #ef4444; }
.optional { color: #9ca3af; font-weight: 400; }
.quote-input-wrap { position: relative; }
.quote-input-wrap > i { position: absolute; left: .875rem; top: 50%; transform: translateY(-50%); color: #9ca3af; font-size: .8rem; pointer-events: none; z-index: 1; }
.quote-textarea-wrap > i { top: .875rem; transform: none; }
.quote-input-wrap input,
.quote-input-wrap select,
.quote-input-wrap textarea { width: 100%; padding: 7px .875rem 7px 2.5rem; border: 1.5px solid #e5e7eb; border-radius: 0; font-family: inherit; font-size: .85rem; color: #1a0a2e; background: #fff; outline: none; appearance: none; transition: border-color .2s, box-shadow .2s; }
.quote-input-wrap input:focus,
.quote-input-wrap textarea:focus  { border-color: #7c3aed; box-shadow: 0 0 0 2px rgba(124,58,237,.1); }
.quote-input-wrap textarea { resize: vertical; min-height: 72px; }
.quote-checkbox-label { display: flex; align-items: flex-start; gap: .6rem; cursor: pointer; font-size: .78rem; color: #6b7280; line-height: 1.55; }
.quote-checkbox-label input[type="checkbox"] { width: 16px; height: 16px; border: 1.5px solid #d1d5db; border-radius: 0; accent-color: #7c3aed; margin-top: 1px; flex-shrink: 0; }
.quote-checkbox-label a { color: #7c3aed; }
.quote-trust-row { display: flex; gap: .875rem; margin-top: .875rem; }
.quote-trust-row span { display: flex; align-items: center; gap: .35rem; font-size: .75rem; color: #6b7280; }
.quote-trust-row i { color: #7c3aed; }
.quote-nav-bar    { display: flex; align-items: center; justify-content: space-between; padding: .875rem 1.5rem; background: #faf9ff; border-top: 1px solid #ede9fe; flex-shrink: 0; }
.quote-btn-back   { min-width: 100px; }
.quote-step-counter { font-size: .8rem; font-weight: 600; color: #9ca3af; }
.quote-btn-next   { min-width: 120px; justify-content: center; }
.quote-submit-btn { background: linear-gradient(135deg, #7c3aed, #c084fc) !important; animation: submitPulse 2s infinite; }
@keyframes submitPulse { 0%,100% { box-shadow: 0 4px 20px rgba(124,58,237,.35); } 50% { box-shadow: 0 6px 30px rgba(124,58,237,.6); } }
.quote-success        { text-align: center; padding: 2rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.quote-success-icon   { font-size: 3.5rem; color: #22c55e; animation: successBounce .5s ease both; }
@keyframes successBounce { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.15); } 100% { transform: scale(1); opacity: 1; } }
.quote-success h3     { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #1a0a2e; margin: 0; }
.quote-success > p    { font-size: .88rem; color: #6b7280; max-width: 400px; }
.quote-success-details { border: 1px solid #a78bfa; background: #faf9ff; padding: 1rem 1.5rem; width: 100%; max-width: 400px; display: flex; flex-direction: column; gap: .5rem; }
.qsd-row { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; gap: 1rem; }
.qsd-row span   { color: #6b7280; }
.qsd-row strong { color: #1a0a2e; }
.quote-next-steps { font-size: .82rem; color: #6b7280; background: #ede9fe; padding: .75rem 1rem; border: 1px solid #a78bfa; max-width: 420px; text-align: left; line-height: 1.6; }
.quote-next-steps i   { color: #7c3aed; }
.quote-success-actions { display: flex; gap: .875rem; flex-wrap: wrap; justify-content: center; }
.quote-toast { position: absolute; top: 1rem; left: 50%; transform: translateX(-50%) translateY(-20px); background: #fff; padding: 7px 1.1rem; border: 1px solid #a78bfa; font-size: .82rem; font-weight: 600; color: #1a0a2e; box-shadow: 0 4px 20px rgba(0,0,0,.1); white-space: nowrap; z-index: 10001; opacity: 0; pointer-events: none; transition: all .25s; display: flex; align-items: center; gap: .5rem; }
.quote-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.quote-toast--error   { border-color: #ef4444; background: #fef2f2; color: #991b1b; }
.quote-toast--error i { color: #ef4444; }
.quote-toast i { color: #7c3aed; }
@media (max-width: 768px) {
  .quote-modal           { max-height: 95vh; }
  .quote-service-grid    { grid-template-columns: repeat(2, 1fr); }
  .quote-timeline-cards  { grid-template-columns: 1fr; }
  .quote-summary-wrap    { grid-template-columns: 1fr; }
  .quote-steps-labels .quote-step-label span:not(.quote-step-num) { display: none; }
  .quote-progress-bar    { padding: .6rem 1rem; }
}
@media (max-width: 480px) {
  .quote-service-grid  { grid-template-columns: 1fr; }
  .quote-modal-header  { padding: .875rem 1rem; }
  .quote-body          { padding: 1rem; }
  .quote-nav-bar       { padding: .75rem 1rem; }
}
