/* =====================================================
   SNAP TOGETHER — MODERN LANDING PAGE
   Design System: Glassmorphism + 3D + Gradients
   ===================================================== */

/* ─── Design Tokens ─── */
:root {
   --primary: #6d28d9;
   --primary-dark: #5b21b6;
   --secondary: #db2777;
   --accent: #06b6d4;
   --grad: linear-gradient(135deg, #6d28d9, #db2777);
   --grad2: linear-gradient(135deg, #06b6d4, #6d28d9);
   --grad3: linear-gradient(135deg, #6d28d9, #06b6d4);

   --bg: #fafbff;
   --bg2: #f1f3f9;
   --bg3: #e8ecf4;
   --card: rgba(255, 255, 255, 0.7);
   --card-border: rgba(255, 255, 255, 0.5);
   --card-shadow: 0 8px 32px rgba(139, 92, 246, 0.08);
   --text: #0f172a;
   --text-secondary: #475569;
   --muted: #64748b;
   --border: rgba(0, 0, 0, 0.06);
   --glass: rgba(255, 255, 255, 0.6);
   --glass-border: rgba(255, 255, 255, 0.3);
   --glass-blur: 20px;
   --radius: 16px;
   --radius-lg: 24px;
   --radius-xl: 32px;
   --radius-full: 9999px;
   --shadow: rgba(139, 92, 246, 0.12);
   --shadow-lg: 0 25px 60px -12px rgba(139, 92, 246, 0.15);
   --transition: .3s cubic-bezier(.4, 0, .2, 1);
   --transition-slow: .6s cubic-bezier(.4, 0, .2, 1);
}

/* ─── Dark Mode ─── */
body.dark {
   --bg: #0a0e1a;
   --bg2: #111827;
   --bg3: #1e293b;
   --card: rgba(30, 41, 59, 0.6);
   --card-border: rgba(255, 255, 255, 0.08);
   --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
   --text: #f1f5f9;
   --text-secondary: #cbd5e1;
   --muted: #94a3b8;
   --border: rgba(255, 255, 255, 0.06);
   --glass: rgba(15, 23, 42, 0.6);
   --glass-border: rgba(255, 255, 255, 0.08);
   --shadow: rgba(0, 0, 0, 0.4);
   --shadow-lg: 0 25px 60px -12px rgba(0, 0, 0, 0.4);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 100%;
}

body {
   font-family: 'Inter', system-ui, sans-serif;
   background: var(--bg);
   color: var(--text);
   overflow-x: hidden;
   transition: background var(--transition), color var(--transition);
   -webkit-font-smoothing: antialiased;
}

[dir="rtl"] body {
   font-family: 'Rubik', system-ui, sans-serif;
}

img {
   max-width: 100%;
   display: block;
}

a {
   text-decoration: none;
   color: inherit;
}

button {
   border: none;
   background: none;
   cursor: pointer;
   font: inherit;
   color: inherit;
}

ul,
ol {
   list-style: none;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4 {
   font-weight: 800;
   line-height: 1.15;
   letter-spacing: -0.02em;
}

p {
   color: var(--text-secondary);
   line-height: 1.7;
}

.font-satisfy {
   font-family: 'Satisfy', cursive;
}

.gradient-text {
   background: var(--grad);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

/* ─── Layout ─── */
.container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 24px;
}

.section {
   padding: 120px 0;
   position: relative;
}

.section-alt {
   background: var(--bg2);
}

/* ─── Section Header ─── */
.section-header {
   text-align: center;
   max-width: 700px;
   margin: 0 auto 64px;
}

.section-header h2 {
   font-size: clamp(2rem, 5vw, 3rem);
   margin-bottom: 16px;
}

.section-header p {
   font-size: 1.1rem;
}

/* Live Chat Header Buttons */
.chat-header-icon-btn {
   background: rgba(255, 255, 255, 0.15);
   border: none;
   color: #fff;
   width: 28px;
   height: 28px;
   border-radius: 50%;
   font-size: 1rem;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all var(--transition);
   flex-shrink: 0;
   line-height: 1;
   margin: 0;
}

.chat-header-icon-btn:hover {
   background: rgba(255, 255, 255, 0.25);
   transform: scale(1.1);
}

.chat-header-close-btn:hover {
   background: rgba(239, 68, 68, 0.6);
}

/* End Session Confirmation */
.chat-confirm-overlay {
   padding: 12px;
   display: flex;
   justify-content: center;
}

.chat-confirm-box {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 16px 20px;
   text-align: center;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   width: 100%;
}

.chat-confirm-box p {
   font-size: .9rem;
   font-weight: 600;
   color: var(--text);
   margin-bottom: 12px;
}

.chat-confirm-btns {
   display: flex;
   gap: 8px;
   justify-content: center;
}

.chat-confirm-yes,
.chat-confirm-no {
   padding: 6px 24px;
   border-radius: var(--radius-full);
   font-size: .8rem;
   font-weight: 600;
   cursor: pointer;
   border: none;
   transition: all var(--transition);
}

.chat-confirm-yes {
   background: #ef4444;
   color: #fff;
}

.chat-confirm-yes:hover {
   background: #dc2626;
   transform: translateY(-1px);
}

.chat-confirm-no {
   background: var(--bg2);
   color: var(--text);
   border: 1px solid var(--border);
}

.chat-confirm-no:hover {
   background: var(--bg);
   transform: translateY(-1px);
}

.section-badge {
   display: inline-block;
   padding: 6px 16px;
   border-radius: var(--radius-full);
   background: rgba(139, 92, 246, 0.1);
   color: var(--primary);
   font-size: .85rem;
   font-weight: 600;
   margin-bottom: 16px;
   letter-spacing: .05em;
   text-transform: uppercase;
}

/* ─── Buttons ─── */
.btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 28px;
   border-radius: var(--radius);
   font-weight: 600;
   font-size: .95rem;
   transition: all var(--transition);
   position: relative;
   overflow: hidden;
}

.btn-sm {
   padding: 8px 18px;
   font-size: .85rem;
   border-radius: 12px;
}

.btn-lg {
   padding: 16px 36px;
   font-size: 1.05rem;
   border-radius: var(--radius-lg);
}

.btn-block {
   width: 100%;
   justify-content: center;
}

.btn-primary {
   background: var(--grad);
   color: #fff;
   box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(139, 92, 246, 0.45);
}

.btn-glass {
   background: var(--glass);
   backdrop-filter: blur(var(--glass-blur));
   border: 1px solid var(--glass-border);
   color: var(--text);
}

.btn-glass:hover {
   background: rgba(139, 92, 246, 0.1);
   border-color: var(--primary);
}

/* ─── Glass Card ─── */
.glass-card {
   background: var(--card);
   backdrop-filter: blur(var(--glass-blur));
   border: 1px solid var(--card-border);
   border-radius: var(--radius-lg);
   box-shadow: var(--card-shadow);
   transition: all var(--transition);
}

.glass-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-lg);
}

/* ─── Ambient Background ─── */
.ambient {
   position: fixed;
   inset: 0;
   z-index: -1;
   overflow: hidden;
   pointer-events: none;
}

.orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(100px);
   opacity: .4;
   animation: orbFloat 20s ease-in-out infinite;
   will-change: transform;
   contain: layout style;
}

body.dark .orb {
   opacity: .15;
}

.orb-1 {
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, #8b5cf6, transparent 70%);
   top: -200px;
   right: -100px;
}

.orb-2 {
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, #ec4899, transparent 70%);
   bottom: -150px;
   left: -100px;
   animation-delay: -7s;
}

.orb-3 {
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, #06b6d4, transparent 70%);
   top: 40%;
   left: 50%;
   animation-delay: -14s;
}

.grid-bg {
   position: absolute;
   inset: 0;
   background-image: linear-gradient(rgba(139, 92, 246, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, .03) 1px, transparent 1px);
   background-size: 60px 60px;
}

body.dark .grid-bg {
   background-image: linear-gradient(rgba(139, 92, 246, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, .05) 1px, transparent 1px);
}

@keyframes orbFloat {

   0%,
   100% {
      transform: translate(0, 0) scale(1)
   }

   33% {
      transform: translate(30px, -50px) scale(1.05)
   }

   66% {
      transform: translate(-20px, 30px) scale(.95)
   }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding: 16px 0;
   transition: all var(--transition);
}

.navbar.scrolled {
   background: var(--glass);
   backdrop-filter: blur(var(--glass-blur));
   border-bottom: 1px solid var(--glass-border);
   padding: 10px 0;
}

.nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
}

.logo {
   display: flex;
   align-items: center;
   gap: 10px;
}

.logo-icon {
   width: 36px;
   height: 36px;
   background: var(--grad);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
}

.logo-icon svg {
   width: 20px;
   height: 20px;
}

.logo-text {
   font-size: 1.4rem;
   font-weight: 700;
}

.nav-links {
   display: flex;
   gap: 8px;
}

.nav-link {
   padding: 8px 16px;
   border-radius: var(--radius);
   font-size: .9rem;
   font-weight: 500;
   color: var(--text-secondary);
   transition: all var(--transition);
}

.nav-link:hover {
   color: var(--primary);
   background: rgba(139, 92, 246, 0.08);
}

.nav-actions {
   display: flex;
   align-items: center;
   gap: 8px;
}

.icon-btn {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--glass);
   backdrop-filter: blur(10px);
   border: 1px solid var(--glass-border);
   font-size: .85rem;
   font-weight: 600;
   transition: all var(--transition);
}

.icon-btn:hover {
   border-color: var(--primary);
   color: var(--primary);
}

.icon-btn svg {
   width: 18px;
   height: 18px;
}

.nav-cta {
   white-space: nowrap;
}

body.dark .sun-icon {
   display: block;
}

body.dark .moon-icon {
   display: none;
}

body:not(.dark) .sun-icon {
   display: none;
}

body:not(.dark) .moon-icon {
   display: block;
}

/* Hamburger */
.hamburger {
   display: none;
   width: 40px;
   height: 40px;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 5px;
   border-radius: 12px;
   background: var(--glass);
   border: 1px solid var(--glass-border);
}

.hamburger span {
   width: 20px;
   height: 2px;
   background: var(--text);
   border-radius: 2px;
   transition: all var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   padding: 120px 0 80px;
   position: relative;
}

.hero-inner {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.hero-badges {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-bottom: 24px;
}

.badge {
   padding: 6px 14px;
   border-radius: var(--radius-full);
   font-size: .8rem;
   font-weight: 500;
}

.glass-badge {
   background: var(--glass);
   backdrop-filter: blur(10px);
   border: 1px solid var(--glass-border);
}

.hero-title {
   font-size: clamp(2.5rem, 6vw, 4rem);
   margin-bottom: 20px;
   line-height: 1.1;
}

.hero-desc {
   font-size: 1.15rem;
   max-width: 520px;
   margin-bottom: 32px;
}

.hero-actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-bottom: 40px;
}

.hero-stats {
   display: flex;
   gap: 24px;
   align-items: center;
}

.hero-stat {
   text-align: center;
}

.stat-num {
   display: block;
   font-size: 1.5rem;
   font-weight: 800;
   background: var(--grad);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.stat-label {
   font-size: .8rem;
   color: var(--muted);
}

.hero-stat-divider {
   width: 1px;
   height: 36px;
   background: var(--border);
}

/* Phone Mockup */
.hero-visual {
   position: relative;
   display: flex;
   justify-content: center;
   perspective: 1200px;
}

.phone-mockup {
   width: 280px;
   background: var(--bg3);
   border-radius: 40px;
   padding: 12px;
   box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15), 0 30px 60px -30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
   transform: rotateY(-8deg) rotateX(4deg);
   transition: transform var(--transition-slow);
   animation: phoneFloat 6s ease-in-out infinite;
   will-change: transform;
}

body.dark .phone-mockup {
   background: #1a1f36;
   box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-mockup:hover {
   transform: rotateY(0) rotateX(0);
}

.phone-screen {
   background: linear-gradient(180deg, #1a1a2e, #16213e);
   border-radius: 30px;
   overflow: hidden;
   aspect-ratio: 9/19;
   position: relative;
   display: flex;
   flex-direction: column;
}

.phone-header {
   height: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.phone-camera {
   width: 80px;
   height: 24px;
   background: #000;
   border-radius: 0 0 12px 12px;
}

.ar-preview {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 8px 8px 56px 8px;
   position: relative;
}

.ar-frame {
   position: relative;
   width: 100%;
   flex: 1;
   border: 2px solid rgba(255, 255, 255, 0.3);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.ar-frame-corner {
   position: absolute;
   width: 20px;
   height: 20px;
   border: 3px solid #8b5cf6;
}

.ar-frame-corner.tl {
   top: -3px;
   left: -3px;
   border-right: none;
   border-bottom: none;
   border-radius: 4px 0 0 0;
}

.ar-frame-corner.tr {
   top: -3px;
   right: -3px;
   border-left: none;
   border-bottom: none;
   border-radius: 0 4px 0 0;
}

.ar-frame-corner.bl {
   bottom: -3px;
   left: -3px;
   border-right: none;
   border-top: none;
   border-radius: 0 0 0 4px;
}

.ar-frame-corner.br {
   bottom: -3px;
   right: -3px;
   border-left: none;
   border-top: none;
   border-radius: 0 0 4px 0;
}

.ar-text {
   color: #fff;
   font-size: 1.1rem;
   text-align: center;
   line-height: 1.4;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ar-capture-btn {
   position: absolute;
   bottom: 4px;
   left: 50%;
   transform: translateX(-50%);
   width: 56px;
   height: 56px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 2;
}

.capture-ring {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   border: 3px solid #fff;
}

.live-label {
   position: absolute;
   bottom: 12px;
   left: 50%;
   transform: translateX(-50%);
   background: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(10px);
   color: #fff;
   font-size: .7rem;
   padding: 6px 14px;
   border-radius: 20px;
   display: flex;
   align-items: center;
   gap: 6px;
   white-space: nowrap;
}

.live-dot {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: #22c55e;
   animation: pulse 2s infinite;
   box-shadow: 0 0 6px #22c55e;
}

@keyframes pulse {

   0%,
   100% {
      opacity: 1
   }

   50% {
      opacity: .4
   }
}

@keyframes phoneFloat {

   0%,
   100% {
      transform: rotateY(-8deg) rotateX(4deg) translateY(0)
   }

   50% {
      transform: rotateY(-8deg) rotateX(4deg) translateY(-15px)
   }
}

/* Float Cards */
.float-card {
   position: absolute;
   padding: 12px 18px;
   border-radius: var(--radius);
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: .85rem;
   animation: floatCard 5s ease-in-out infinite;
   z-index: 2;
}

.float-card small {
   color: var(--muted);
}

.float-icon {
   font-size: 1.4rem;
}

.float-card-1 {
   top: 15%;
   right: -40px;
   animation-delay: 0s;
}

.float-card-2 {
   bottom: 20%;
   left: -30px;
   animation-delay: -2s;
}

@keyframes floatCard {

   0%,
   100% {
      transform: translateY(0)
   }

   50% {
      transform: translateY(-10px)
   }
}

/* Scroll Indicator */
.hero-scroll-indicator {
   position: absolute;
   bottom: 30px;
   left: 50%;
   transform: translateX(-50%);
}

.scroll-mouse {
   width: 24px;
   height: 38px;
   border: 2px solid var(--muted);
   border-radius: 12px;
   display: flex;
   justify-content: center;
   padding-top: 8px;
}

.scroll-dot {
   width: 4px;
   height: 8px;
   background: var(--primary);
   border-radius: 4px;
   animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
   0% {
      opacity: 1;
      transform: translateY(0)
   }

   100% {
      opacity: 0;
      transform: translateY(12px)
   }
}

/* =====================================================
   FEATURES
   ===================================================== */
.features-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
}

.feature-card {
   padding: 36px 28px;
   border-radius: var(--radius-lg);
   text-align: center;
   position: relative;
   overflow: hidden;
}

.feature-card::before {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.06), transparent 30%);
   opacity: 0;
   transition: opacity 0.5s ease;
   pointer-events: none;
}

.feature-card:hover::before {
   opacity: 1;
   animation: cardShimmer 3s linear infinite;
}

@keyframes cardShimmer {
   to { transform: rotate(360deg); }
}

.feature-icon-wrap {
   width: 64px;
   height: 64px;
   border-radius: var(--radius);
   background: rgba(139, 92, 246, 0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
}

.feature-icon {
   font-size: 1.8rem;
}

.feature-card h3 {
   font-size: 1.15rem;
   margin-bottom: 10px;
   font-weight: 700;
}

.feature-card p {
   font-size: .9rem;
}

/* =====================================================
   HOW IT WORKS — TIMELINE
   ===================================================== */
.steps-timeline {
   display: flex;
   align-items: center;
   gap: 0;
   justify-content: center;
   flex-wrap: wrap;
}

.step-card {
   flex: 0 0 220px;
   padding: 32px 24px;
   border-radius: var(--radius-lg);
   background: var(--card);
   backdrop-filter: blur(var(--glass-blur));
   border: 1px solid var(--card-border);
   text-align: center;
   position: relative;
}

.step-num {
   position: absolute;
   top: -16px;
   left: 50%;
   transform: translateX(-50%);
   width: 32px;
   height: 32px;
   border-radius: 50%;
   background: var(--grad);
   color: #fff;
   font-size: .8rem;
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.step-content {
   margin-top: 8px;
}

.step-icon {
   font-size: 2rem;
   margin-bottom: 12px;
}

.step-card h3 {
   font-size: 1rem;
   margin-bottom: 8px;
}

.step-card p {
   font-size: .85rem;
}

.step-connector {
   width: 60px;
   flex-shrink: 0;
}

.step-connector svg {
   width: 100%;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-carousel {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
}

.testimonial-card {
   padding: 32px 24px;
   border-radius: var(--radius-lg);
}

.testimonial-stars {
   color: #fbbf24;
   font-size: 1.1rem;
   margin-bottom: 16px;
   letter-spacing: 2px;
}

.testimonial-card>p {
   font-size: .9rem;
   font-style: italic;
   margin-bottom: 20px;
   min-height: 80px;
}

.testimonial-author {
   display: flex;
   align-items: center;
   gap: 12px;
}

.author-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--grad);
   color: #fff;
   font-weight: 700;
   font-size: .85rem;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.testimonial-author strong {
   font-size: .9rem;
}

.testimonial-author small {
   color: var(--muted);
   font-size: .8rem;
}

/* =====================================================
   GALLERY — MASONRY
   ===================================================== */
.gallery-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
   grid-auto-rows: 200px;
}

.gallery-item {
   position: relative;
   border-radius: var(--radius);
   overflow: hidden;
   cursor: pointer;
}

.gallery-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform var(--transition-slow);
}

.gallery-item:hover img {
   transform: scale(1.08);
}

.gallery-item-lg {
   grid-column: span 2;
   grid-row: span 2;
}

.gallery-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.6));
   display: flex;
   align-items: flex-end;
   padding: 20px;
   opacity: 0;
   transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
   opacity: 1;
}

.gallery-overlay span {
   color: #fff;
   font-weight: 600;
   font-size: .95rem;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   align-items: stretch;
}

.pricing-card {
   padding: 36px 28px;
   border-radius: var(--radius-xl);
   text-align: center;
   position: relative;
   display: flex;
   flex-direction: column;
}

.pricing-card .btn-block {
   margin-top: auto;
}

.pricing-featured {
   border: 2px solid var(--primary);
   transform: scale(1.05);
}

.pricing-featured:hover {
   transform: scale(1.07);
}

.pricing-popular {
   position: absolute;
   top: -14px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--grad);
   color: #fff;
   padding: 6px 20px;
   border-radius: var(--radius-full);
   font-size: .75rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .05em;
   white-space: nowrap;
}

.pricing-header {
   margin-bottom: 28px;
}

.pricing-header h3 {
   font-size: 1.3rem;
   margin-bottom: 12px;
}

.pricing-price {
   margin-bottom: 8px;
}

.price-currency {
   font-size: 1.2rem;
   font-weight: 700;
   vertical-align: top;
   margin-right: 2px;
}

.price-amount {
   font-size: 3rem;
   font-weight: 900;
   letter-spacing: -0.03em;
}

/* ── Discount Pricing Display ── */
.price-discount-wrap {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   flex-wrap: wrap;
   position: relative;
}

.price-discount-badge {
   display: inline-block;
   background: linear-gradient(135deg, #ef4444, #dc2626);
   color: #fff;
   font-size: .75rem;
   font-weight: 800;
   padding: 4px 10px;
   border-radius: var(--radius-full);
   letter-spacing: .02em;
   animation: badgeBounce 0.6s ease both;
   animation-delay: 0.3s;
   box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

@keyframes badgeBounce {
   0% {
      opacity: 0;
      transform: scale(0) rotate(-12deg);
   }

   60% {
      transform: scale(1.2) rotate(3deg);
   }

   100% {
      opacity: 1;
      transform: scale(1) rotate(0deg);
   }
}

.price-original {
   font-size: 1.1rem;
   font-weight: 500;
   color: var(--muted);
   text-decoration: line-through;
   text-decoration-color: rgba(239, 68, 68, 0.6);
   text-decoration-thickness: 2px;
   opacity: 0.65;
   position: relative;
}

.price-original .price-currency {
   font-size: .85rem;
   vertical-align: baseline;
}

.price-discounted {
   color: #22c55e;
   animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {

   0%,
   100% {
      text-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
   }

   50% {
      text-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.2);
   }
}

.pricing-header p {
   font-size: .9rem;
   color: var(--muted);
}

.pricing-features {
   margin-bottom: 28px;
   text-align: left;
}

.pricing-features li {
   padding: 8px 0;
   font-size: .9rem;
   color: var(--text-secondary);
   border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
   border: none;
}

[dir="rtl"] .pricing-features {
   text-align: right;
}

.pricing-loading {
   grid-column: 1/-1;
   text-align: center;
   padding: 48px 0;
}

.pricing-loading p {
   color: var(--muted);
   font-size: .9rem;
   margin-top: 12px;
}

.spinner {
   width: 36px;
   height: 36px;
   border: 3px solid rgba(139, 92, 246, .2);
   border-top-color: #8b5cf6;
   border-radius: 50%;
   animation: spin 1s linear infinite;
   margin: 0 auto;
}

@keyframes spin {
   to {
      transform: rotate(360deg);
   }
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.form-card {
   max-width: 640px;
   margin: 0 auto;
   padding: 48px 40px;
   border-radius: var(--radius-xl);
}

.form-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
}

.form-group {
   margin-bottom: 16px;
}

.form-group label {
   display: block;
   font-size: .85rem;
   font-weight: 600;
   margin-bottom: 6px;
   color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 12px 16px;
   border-radius: var(--radius);
   border: 1px solid var(--border);
   background: var(--bg);
   color: var(--text);
   font-size: .95rem;
   transition: all var(--transition);
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

/* Toggles */
.form-toggles {
   margin-bottom: 16px;
}

.toggle-row {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 12px 0;
   flex-wrap: wrap;
}

.toggle-switch {
   position: relative;
   width: 48px;
   height: 26px;
   flex-shrink: 0;
}

.toggle-switch input {
   opacity: 0;
   width: 0;
   height: 0;
}

.toggle-slider {
   position: absolute;
   inset: 0;
   background: var(--bg3);
   border-radius: 26px;
   cursor: pointer;
   transition: all var(--transition);
}

.toggle-slider::after {
   content: '';
   position: absolute;
   width: 20px;
   height: 20px;
   border-radius: 50%;
   background: #fff;
   top: 3px;
   left: 3px;
   transition: all var(--transition);
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked+.toggle-slider {
   background: var(--primary);
}

.toggle-switch input:checked+.toggle-slider::after {
   transform: translateX(22px);
}

[dir="rtl"] .toggle-switch input:checked+.toggle-slider::after {
   transform: translateX(-22px);
}

/* Quantity */
.qty-wrap {
   display: flex;
   align-items: center;
   gap: 8px;
   background: var(--bg2);
   border-radius: var(--radius-full);
   padding: 4px 12px;
   margin-left: auto;
}

[dir="rtl"] .qty-wrap {
   margin-left: 0;
   margin-right: auto;
}

.qty-btn {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: var(--bg);
   font-weight: 700;
   font-size: 1.1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all var(--transition);
   border: 1px solid var(--border);
}

.qty-btn:hover {
   color: var(--primary);
   border-color: var(--primary);
}

.qty-val {
   font-weight: 700;
   min-width: 20px;
   text-align: center;
}

/* Coupon */
.coupon-msg {
   display: block;
   margin-top: 4px;
   font-size: .8rem;
}

.coupon-msg.error {
   color: #ef4444;
}

.coupon-msg.success {
   color: #10b981;
}

/* Consent */
.consent-group {
   margin-bottom: 20px;
}

.consent-label {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   cursor: pointer;
   padding: 6px 0;
   font-size: .87rem;
   color: var(--text-secondary);
   line-height: 1.5;
}

.consent-label input {
   margin-top: 4px;
   width: 18px;
   height: 18px;
   accent-color: var(--primary);
   flex-shrink: 0;
}

.consent-label a {
   color: var(--primary);
   text-decoration: underline;
}

/* Submit */
.form-submit {
   text-align: center;
}

.form-disclaimer {
   font-size: .8rem;
   color: var(--muted);
   margin-top: 10px;
}

.form-status {
   margin-top: 16px;
   padding: 12px;
   border-radius: var(--radius);
   font-size: .9rem;
   text-align: center;
   display: none;
}

.form-status.success {
   display: block;
   background: rgba(16, 185, 129, 0.1);
   color: #10b981;
   border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
   display: block;
   background: rgba(239, 68, 68, 0.1);
   color: #ef4444;
   border: 1px solid rgba(239, 68, 68, 0.2);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
   background: var(--bg2);
   border-top: 1px solid var(--border);
   padding: 60px 0 30px;
}

.footer-top {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr;
   gap: 40px;
   margin-bottom: 40px;
}

.footer-logo-text {
   font-size: 1.6rem;
   display: block;
   margin-bottom: 8px;
}

.footer-brand p {
   font-size: .9rem;
   color: var(--muted);
}

.footer-links-group {
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.footer-links-group a {
   font-size: .9rem;
   color: var(--text-secondary);
   transition: color var(--transition);
}

.footer-links-group a:hover {
   color: var(--primary);
}

.footer-bottom {
   border-top: 1px solid var(--border);
   padding-top: 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: .85rem;
   color: var(--muted);
   flex-wrap: wrap;
   gap: 12px;
}

/* Footer Social Links */
.footer-social-links {
   display: flex;
   align-items: center;
   gap: 12px;
   flex-wrap: wrap;
}

.footer-social-links:empty::after {
   content: '';
}

.social-link {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: var(--bg);
   border: 1px solid var(--border);
   color: var(--text-secondary);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative;
}

.social-link:hover {
   transform: translateY(-3px) scale(1.1);
   border-color: transparent;
   color: #fff;
   box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.social-link svg {
   width: 18px;
   height: 18px;
   transition: transform 0.3s ease;
}

.social-link:hover svg {
   transform: scale(1.15);
}

/* Platform-specific gradient backgrounds on hover */
.social-link[data-type="instagram"]:hover { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-link[data-type="facebook"]:hover  { background: #1877f2; }
.social-link[data-type="whatsapp"]:hover  { background: #25d366; }
.social-link[data-type="tiktok"]:hover    { background: linear-gradient(135deg, #010101, #69c9d0); }
.social-link[data-type="youtube"]:hover   { background: #ff0000; }
.social-link[data-type="twitter"]:hover   { background: #000000; }
.social-link[data-type="linkedin"]:hover  { background: #0a66c2; }
.social-link[data-type="email"]:hover     { background: var(--grad); }
.social-link[data-type="telegram"]:hover  { background: #0088cc; }
.social-link[data-type="custom"]:hover    { background: var(--grad); }

/* Social link tooltip */
.social-link[title]::before {
   content: attr(title);
   position: absolute;
   bottom: calc(100% + 8px);
   left: 50%;
   transform: translateX(-50%) translateY(4px);
   background: var(--text);
   color: var(--bg);
   font-size: .72rem;
   font-weight: 600;
   padding: 4px 10px;
   border-radius: 6px;
   white-space: nowrap;
   opacity: 0;
   pointer-events: none;
   transition: all 0.2s ease;
   z-index: 10;
}

.social-link[title]:hover::before {
   opacity: 1;
   transform: translateX(-50%) translateY(0);
}

/* Fallback email in footer */
.footer-social-fallback {
   font-size: .85rem;
   color: var(--muted);
}

/* =====================================================
   ACCESSIBILITY WIDGET
   ===================================================== */
.a11y-trigger {
   position: fixed;
   bottom: 90px;
   left: 20px;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: var(--grad);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 999;
   box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
   transition: all var(--transition);
}

[dir="rtl"] .a11y-trigger {
   left: auto;
   right: 20px;
}

.a11y-trigger:hover {
   transform: scale(1.1);
}

.a11y-panel {
   position: fixed;
   bottom: 150px;
   left: 20px;
   width: 280px;
   padding: 24px;
   z-index: 999;
   opacity: 0;
   visibility: hidden;
   transform: translateY(20px) scale(.95);
   transition: all var(--transition);
   border-radius: var(--radius-lg);
}

[dir="rtl"] .a11y-panel {
   left: auto;
   right: 20px;
}

.a11y-panel.open {
   opacity: 1;
   visibility: visible;
   transform: translateY(0) scale(1);
}

.a11y-panel-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 16px;
   font-weight: 700;
   font-size: 1rem;
}

.a11y-close-btn {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: var(--bg2);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: .85rem;
}

.a11y-options {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 8px;
   margin-bottom: 12px;
}

.a11y-opt {
   padding: 10px 8px;
   border-radius: var(--radius);
   background: var(--bg2);
   font-size: .8rem;
   display: flex;
   align-items: center;
   gap: 6px;
   transition: all var(--transition);
}

.a11y-opt:hover,
.a11y-opt.active {
   background: rgba(139, 92, 246, 0.15);
   color: var(--primary);
}

.a11y-reset-btn {
   width: 100%;
}

body.a11y-grayscale {
   filter: grayscale(1);
}

body.a11y-contrast {
   filter: contrast(1.8);
}

/* =====================================================
   AI CHAT WIDGET
   ===================================================== */
.chat-widget {
   position: fixed;
   bottom: 20px;
   right: 20px;
   z-index: 1000;
}

[dir="rtl"] .chat-widget {
   right: auto;
   left: 20px;
}

.chat-promo-bubble {
   position: absolute;
   bottom: 70px;
   right: 0;
   background: var(--card);
   backdrop-filter: blur(var(--glass-blur));
   border: 1px solid var(--card-border);
   border-radius: var(--radius-lg);
   padding: 14px 36px 14px 18px;
   font-size: .9rem;
   color: var(--text);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
   opacity: 0;
   transform: translateY(10px) scale(0.95);
   pointer-events: none;
   min-width: 280px;
   transition: all 0.3s ease;
   max-width: 320px;
   white-space: normal;
   line-height: 1.4;
}

[dir="rtl"] .chat-promo-bubble {
   right: auto;
   left: 0;
   padding: 14px 18px 14px 36px;
}

.chat-promo-bubble.show {
   opacity: 1;
   transform: translateY(0) scale(1);
   pointer-events: auto;
   animation: promoBounce 0.5s ease;
}

@keyframes promoBounce {
   0% {
      opacity: 0;
      transform: translateY(10px) scale(0.95);
   }

   60% {
      transform: translateY(-4px) scale(1.02);
   }

   100% {
      opacity: 1;
      transform: translateY(0) scale(1);
   }
}

.chat-promo-close {
   position: absolute;
   top: 6px;
   right: 10px;
   font-size: .75rem;
   color: var(--muted);
   cursor: pointer;
   line-height: 1;
   padding: 2px;
}

[dir="rtl"] .chat-promo-close {
   right: auto;
   left: 10px;
}

.chat-promo-bubble::after {
   content: '';
   position: absolute;
   bottom: -8px;
   right: 22px;
   width: 16px;
   height: 16px;
   background: var(--card);
   border-right: 1px solid var(--card-border);
   border-bottom: 1px solid var(--card-border);
   transform: rotate(45deg);
}

[dir="rtl"] .chat-promo-bubble::after {
   right: auto;
   left: 22px;
}

.chat-fab {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: var(--grad);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
   transition: all var(--transition);
   position: relative;
}

.chat-fab:hover {
   transform: scale(1.08);
}

.chat-icon-close {
   display: none;
}

.chat-widget.open .chat-icon-open {
   display: none;
}

.chat-widget.open .chat-icon-close {
   display: block;
}

.chat-pulse {
   position: absolute;
   inset: -4px;
   border-radius: 50%;
   border: 2px solid var(--primary);
   animation: chatPulse 2s infinite;
   pointer-events: none;
}

.chat-widget.open .chat-pulse {
   display: none;
}

@keyframes chatPulse {
   0% {
      transform: scale(1);
      opacity: .6
   }

   100% {
      transform: scale(1.4);
      opacity: 0
   }
}

.chat-window {
   position: absolute;
   bottom: 72px;
   right: 0;
   width: 380px;
   height: 520px;
   border-radius: var(--radius-xl);
   display: flex;
   flex-direction: column;
   opacity: 0;
   visibility: hidden;
   transform: translateY(20px) scale(.95);
   transition: all var(--transition);
   overflow: hidden;
}

[dir="rtl"] .chat-window {
   right: auto;
   left: 0;
}

.chat-widget.open .chat-window {
   opacity: 1;
   visibility: visible;
   transform: translateY(0) scale(1);
}

.chat-header {
   padding: 16px 20px;
   background: var(--grad);
   color: #fff;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.chat-header-info {
   display: flex;
   align-items: center;
   gap: 12px;
}

.chat-avatar {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
}

.chat-header small {
   opacity: .8;
}

.chat-close-btn {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.2);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: .8rem;
}

.chat-messages {
   flex: 1;
   padding: 16px;
   overflow-y: auto;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.chat-msg {
   display: flex;
   gap: 8px;
   max-width: 85%;
}

.chat-msg-bot {
   align-self: flex-start;
}

.chat-msg-user {
   align-self: flex-end;
   flex-direction: row-reverse;
}

.chat-msg-bubble {
   padding: 10px 14px;
   border-radius: var(--radius) var(--radius) var(--radius) 4px;
   background: var(--bg2);
   font-size: .88rem;
   line-height: 1.5;
   color: var(--text);
}

.chat-msg-user .chat-msg-bubble {
   background: var(--primary);
   color: #fff;
   border-radius: var(--radius) var(--radius) 4px var(--radius);
}

.chat-suggestions {
   padding: 0 16px 12px;
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
}

.chat-suggestion {
   padding: 6px 12px;
   border-radius: var(--radius-full);
   background: var(--bg2);
   font-size: .78rem;
   color: var(--primary);
   font-weight: 500;
   border: 1px solid var(--border);
   transition: all var(--transition);
}

.chat-suggestion:hover {
   background: var(--grad);
   color: #fff;
   border-color: transparent;
   font-weight: 700;
   display: flex;
   align-items: center;
   gap: 6px;
   padding: 7px 14px;
}


.chat-suggestion-agent:hover {
   background: var(--grad);
   opacity: .95;
   transform: translateY(-2px) scale(1.02);
   box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35);
   border-color: transparent;
   cursor: pointer;
}

/* Agent Form */
.chat-agent-form {
   background: var(--card);
   border-radius: var(--radius);
   padding: 16px;
   border: 1px solid var(--card-border);
}

.chat-agent-form-title {
   font-size: .85rem;
   font-weight: 600;
   color: var(--text);
   margin-bottom: 12px;
}

.chat-agent-input {
   width: 100%;
   padding: 10px 14px;
   border-radius: 10px;
   border: 1px solid var(--border);
   background: var(--bg);
   color: var(--text);
   font-size: .85rem;
   margin-bottom: 8px;
   outline: none;
   transition: border-color var(--transition);
}

.chat-agent-input:focus {
   border-color: var(--primary);
}

.chat-agent-form-error {
   color: #ef4444;
   font-size: .78rem;
   margin: 4px 0 8px;
}

.chat-agent-btn-submit {
   width: 100%;
   padding: 10px;
   border-radius: 10px;
   background: var(--grad);
   color: #fff;
   font-weight: 600;
   font-size: .85rem;
   cursor: pointer;
   border: none;
   transition: all var(--transition);
}

.chat-agent-btn-submit:hover {
   opacity: .9;
   transform: translateY(-1px);
   box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.chat-input-wrap {
   display: flex;
   padding: 12px 16px;
   border-top: 1px solid var(--border);
   gap: 8px;
   background: var(--bg);
}

.chat-input {
   flex: 1;
   padding: 10px 14px;
   border-radius: var(--radius-full);
   border: 1px solid var(--border);
   background: var(--bg2);
   font-size: .9rem;
   color: var(--text);
}

.chat-input:focus {
   outline: none;
   border-color: var(--primary);
}

.chat-send-btn {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: var(--grad);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all var(--transition);
   flex-shrink: 0;
}

.chat-send-btn:hover {
   transform: scale(1.05);
}

.chat-typing {
   display: flex;
   gap: 4px;
   padding: 10px 14px;
}

.chat-typing span {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--muted);
   animation: typingDot .8s infinite;
}

.chat-typing span:nth-child(2) {
   animation-delay: .15s;
}

.chat-typing span:nth-child(3) {
   animation-delay: .3s;
}

@keyframes typingDot {

   0%,
   100% {
      opacity: .3;
      transform: translateY(0)
   }

   50% {
      opacity: 1;
      transform: translateY(-4px)
   }
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
   position: fixed;
   bottom: -200px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 9999;
   width: min(90vw, 600px);
   padding: 20px 24px;
   border-radius: var(--radius-lg);
   background: var(--card);
   backdrop-filter: blur(var(--glass-blur));
   border: 1px solid var(--card-border);
   box-shadow: var(--shadow-lg);
   transition: bottom var(--transition-slow);
}

.cookie-banner.show {
   bottom: 90px;
}

.cookie-inner {
   display: flex;
   align-items: center;
   gap: 16px;
   flex-wrap: wrap;
}

.cookie-inner p {
   flex: 1;
   font-size: .85rem;
   min-width: 200px;
}

.cookie-btns {
   display: flex;
   gap: 8px;
   flex-shrink: 0;
}

/* =====================================================
   MOBILE CTA
   ===================================================== */
.mobile-cta {
   display: none;
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   z-index: 998;
   padding: 12px 16px;
   background: var(--glass);
   backdrop-filter: blur(var(--glass-blur));
   border-top: 1px solid var(--glass-border);
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.reveal-up {
   opacity: 0;
   transform: translateY(40px) scale(0.98);
   transition: opacity .8s cubic-bezier(.4, 0, .2, 1) var(--delay, 0s), transform .8s cubic-bezier(.16, 1, .3, 1) var(--delay, 0s);
}

.reveal-up.revealed {
   opacity: 1;
   transform: translateY(0) scale(1);
}

/* ─── Content Visibility for Off-Screen Sections ─── */
.section {
   content-visibility: auto;
   contain-intrinsic-size: auto 800px;
}

/* ─── Focus-Visible for Keyboard Navigation ─── */
:focus-visible {
   outline: 2px solid var(--primary);
   outline-offset: 3px;
   border-radius: 4px;
}

.btn:focus-visible {
   outline-offset: 4px;
   box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.25);
}

/* ─── FAQ Accordion Transitions ─── */
.faq-item {
   transition: all var(--transition);
}

.faq-item:hover {
   border-color: rgba(139, 92, 246, 0.3);
}

.faq-question {
   cursor: pointer;
   transition: color var(--transition);
}

.faq-question:hover {
   color: var(--primary);
}

.faq-answer {
   transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1), opacity 0.3s ease;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width:1024px) {
   .features-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .testimonials-carousel {
      grid-template-columns: repeat(2, 1fr);
   }

   .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .pricing-featured {
      grid-column: span 2;
      max-width: 400px;
      margin: 0 auto;
   }

   .steps-timeline {
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
   }

   .step-connector {
      display: none;
   }

   .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 180px;
   }

   .gallery-item-lg {
      grid-column: span 1;
      grid-row: span 2;
   }
}

@media (max-width:768px) {
   .section {
      padding: 80px 0;
   }

   .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--bg);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      z-index: 999;
   }

   .nav-links.open {
      display: flex;
   }

   .nav-cta {
      display: none;
   }

   .hamburger {
      display: flex;
   }

   .hero-inner {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .hero-desc {
      margin: 0 auto 32px;
   }

   .hero-actions {
      justify-content: center;
   }

   .hero-stats {
      justify-content: center;
   }

   .hero-visual {
      margin-top: 40px;
   }

   .features-grid {
      grid-template-columns: 1fr;
   }

   .testimonials-carousel {
      grid-template-columns: 1fr;
   }

   .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 160px;
   }

   .gallery-item-lg {
      grid-column: span 2;
      grid-row: span 1;
   }

   .pricing-grid {
      grid-template-columns: 1fr;
   }

   .pricing-featured {
      grid-column: auto;
      max-width: none;
      transform: scale(1);
   }

   .pricing-featured:hover {
      transform: translateY(-4px);
   }

   .form-grid {
      grid-template-columns: 1fr;
   }

   .form-card {
      padding: 32px 24px;
   }

   .footer-top {
      grid-template-columns: 1fr;
      gap: 24px;
   }

   .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
   }

   .mobile-cta {
      display: block;
   }

   .cookie-banner.show {
      bottom: 70px;
   }

   .chat-widget {
      bottom: 90px;
   }

   .chat-window {
      width: calc(100vw - 32px);
      right: -4px;
      height: 70vh;
   }

   .float-card {
      display: none;
   }
}

@media (max-width:480px) {
   .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 140px;
   }

   .hero-title {
      font-size: 2rem;
   }

   .phone-mockup {
      width: 220px;
   }
}

/* Screen-reader / crawler only â€” hidden visually, visible to bots */
.sr-only-section {
   position: absolute !important;
   width: 1px !important;
   height: 1px !important;
   padding: 0 !important;
   margin: -1px !important;
   overflow: hidden !important;
   clip: rect(0, 0, 0, 0) !important;
   white-space: nowrap !important;
   border: 0 !important;
}

.emoji-inline {
   -webkit-text-fill-color: initial;
   -webkit-background-clip: initial;
   background-clip: initial;
   background: none;
   display: inline;
   vertical-align: baseline;
}

/* =====================================================
   FAQ MODAL
   ===================================================== */
.modal-backdrop {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(5px);
   z-index: 9999;
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   opacity: 0;
   animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
   to { opacity: 1; }
}

.modal-content {
   width: 100%;
   max-width: 700px;
   max-height: 85vh;
   background: var(--card);
   border-radius: var(--radius-lg);
   overflow: hidden;
   display: flex;
   flex-direction: column;
   box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
   border: 1px solid var(--border);
}

.modal-header {
   padding: 20px 24px;
   border-bottom: 1px solid var(--border);
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: var(--bg2);
}

.modal-header h2 {
   font-size: 1.5rem;
   margin: 0;
   background: var(--grad);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.modal-close {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   border: none;
   background: var(--bg);
   color: var(--text);
   font-size: 1.2rem;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all var(--transition);
}

.modal-close:hover {
   background: var(--primary);
   color: white;
}

.modal-body {
   padding: 24px;
   overflow-y: auto;
}

.modal-body .faq-item {
   margin-bottom: 16px;
   padding: 16px;
   background: var(--bg);
   border-radius: var(--radius);
   border: 1px solid var(--border);
}

.modal-body .faq-question {
   font-size: 1.1rem;
   font-weight: 600;
   margin-bottom: 8px;
   color: var(--text);
}

.modal-body .faq-answer {
   font-size: 0.95rem;
   color: var(--muted);
   line-height: 1.6;
}
