/* ============================================
   STYLE MARKING — Futuristic Design System
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary palette — warm coral to gold */
    --primary: #ff6b35;
    --primary-light: #ff8c5a;
    --primary-dark: #e55a2b;
    --accent: #ffd166;
    --accent-light: #ffe08a;
    --accent-dark: #f0c040;

    /* Neon highlights */
    --neon-orange: #ff6b35;
    --neon-gold: #ffd166;
    --neon-coral: #ff8c5a;
    --neon-pink: #ff477e;

    /* Gradients — warm tones */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ffd166 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 209, 102, 0.08) 100%);
    --gradient-text: linear-gradient(135deg, #ff6b35, #ffd166, #ff8c5a);
    --gradient-cta: linear-gradient(135deg, #ff6b35 0%, #ff477e 50%, #ffd166 100%);

    /* LIGHTER dark theme — charcoal, NOT black */
    --bg-primary: #121826;
    --bg-secondary: #1a2236;
    --bg-card: rgba(26, 34, 54, 0.8);
    --bg-card-hover: rgba(35, 45, 70, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);

    /* Text — warmer whites */
    --text-primary: #f5f0e8;
    --text-secondary: #b8b0a0;
    --text-muted: #8a8070;

    /* Borders — warmer */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 107, 53, 0.3);

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);
    --shadow-glow-accent: 0 0 40px rgba(255, 209, 102, 0.2);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 209, 102, 0.1);
    border: 1px solid rgba(255, 209, 102, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ---------- Background Effects ---------- */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #ff6b35;
    top: -200px;
    right: -200px;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #ffd166;
    bottom: -150px;
    left: -150px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #ff477e;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 30s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -50px); }
    50% { transform: translate(-30px, 30px); }
    75% { transform: translate(40px, 40px); }
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-md {
    padding: 12px 28px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 20px 44px;
    font-size: 1.15rem;
}

.btn-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glow);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-glow);
}

/* ---------- Navigation (Floating Pill) ---------- */
.nav-float {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1200px;
    transition: var(--transition-smooth);
}

.nav-float-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    background: rgba(18, 24, 38, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-float.scrolled .nav-float-inner {
    background: rgba(18, 24, 38, 0.9);
    border-color: var(--border-glow);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.logo-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.5)) drop-shadow(0 0 25px rgba(255, 140, 60, 0.25));
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
}

.nav-phone:hover {
    color: var(--accent-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(255, 209, 102, 0.08);
    border: 1px solid rgba(255, 209, 102, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-sub strong {
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero visual — browser mockup */
.hero-visual {
    flex: 1;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-mockup {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-subtle);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 14px;
    border-radius: 6px;
}

.browser-content {
    padding: 28px;
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-line {
    height: 10px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    animation: shimmer 3s ease-in-out infinite;
}

.mockup-line.w80 { width: 80%; }
.mockup-line.w60 { width: 60%; }
.mockup-line.w90 { width: 90%; }
.mockup-line.w70 { width: 70%; }
.mockup-line.w50 { width: 50%; }

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.mockup-blocks {
    display: flex;
    gap: 12px;
    margin: 8px 0;
}

.mockup-block {
    flex: 1;
    height: 80px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    animation: shimmer 3s ease-in-out infinite;
}

.mockup-block:nth-child(2) { animation-delay: 0.5s; }
.mockup-block:nth-child(3) { animation-delay: 1s; }

/* ---------- Trust Bar ---------- */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(26, 34, 54, 0.5);
    position: relative;
    z-index: 2;
}

.trust-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    font-size: 1rem;
}

/* ---------- Trusted By Strip ---------- */
.trusted-by-strip {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(26, 34, 54, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.trusted-by-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.trusted-by-scroll {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.trusted-by-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: trustedByScroll 20s linear infinite;
}

.trusted-by-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 8px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
}

.trusted-by-item:hover {
    color: var(--primary);
    border-color: var(--border-glow);
    background: var(--bg-glass-hover);
}

.trusted-by-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

@keyframes trustedByScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Services Grid ---------- */
.services-preview {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.service-card:nth-child(1) {
    grid-column: span 2;
}

.service-card:nth-child(5) {
    grid-column: span 2;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.service-link:hover {
    color: var(--accent-light);
    gap: 10px;
}

/* ---------- How It Works ---------- */
.how-it-works {
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    padding: 36px 20px;
}

.step-number {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-line {
    display: none;
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    z-index: 2;
}

.cta-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.cta-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cta-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.cta-icon:hover {
    border-color: var(--border-glow);
    background: var(--bg-glass-hover);
}

.cta-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.cta-icon span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ---------- Portfolio ---------- */
.portfolio-preview {
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.portfolio-card:nth-child(odd) {
    transform: translateY(30px);
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.25), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-card:nth-child(odd):hover {
    transform: translateY(26px) scale(1.08);
}

/* Per-card accent glow on hover */
.portfolio-card[data-accent="#ff6b35"]:hover { box-shadow: 0 0 50px rgba(255, 107, 53, 0.3), 0 20px 60px rgba(0, 0, 0, 0.4); }
.portfolio-card[data-accent="#4fc3f7"]:hover { box-shadow: 0 0 50px rgba(79, 195, 247, 0.3), 0 20px 60px rgba(0, 0, 0, 0.4); }
.portfolio-card[data-accent="#f48fb1"]:hover { box-shadow: 0 0 50px rgba(244, 143, 177, 0.3), 0 20px 60px rgba(0, 0, 0, 0.4); }
.portfolio-card[data-accent="#66bb6a"]:hover { box-shadow: 0 0 50px rgba(102, 187, 106, 0.3), 0 20px 60px rgba(0, 0, 0, 0.4); }

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-image {
    height: 300px;
}

/* Browser chrome frame */
.portfolio-browser {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(20, 26, 40, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-browser {
    opacity: 1;
    transform: translateY(0);
}

.browser-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-bar {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 3px 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Screenshot image */
.portfolio-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-screenshot {
    transform: scale(1.06);
}

/* Dark gradient overlay at bottom of image */
.portfolio-img-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 24, 38, 0.7);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Disable hover expand on mobile/touch */
@media (hover: none), (max-width: 768px) {
    .portfolio-card:hover {
        transform: translateY(-4px);
    }
    .portfolio-card:nth-child(odd):hover {
        transform: translateY(26px);
    }
    .portfolio-card:hover .portfolio-image {
        height: 200px;
    }
    .portfolio-card:hover .portfolio-screenshot {
        transform: none;
    }
    .portfolio-browser {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Why Us ---------- */
.why-us {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card:nth-child(1),
.why-card:nth-child(4) {
    grid-column: span 2;
}

.why-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--gradient-card);
    border: 1px solid var(--border-glow);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--accent);
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---------- Security Section ---------- */
.security-section {
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.security-content > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.security-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.security-list li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.security-list li strong {
    color: var(--text-primary);
}

/* Security shield animation */
.security-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(255, 107, 53, 0.1);
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(255, 209, 102, 0.15);
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 140px;
    height: 140px;
    border-color: rgba(255, 107, 53, 0.2);
    animation: ringRotate 10s linear infinite;
}

.shield-ring::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--accent);
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.shield-center {
    font-size: 4rem;
    color: var(--primary-light);
    z-index: 2;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* ---------- Testimonials ---------- */
.testimonials {
    position: relative;
    z-index: 2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #ffd700;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 4-column testimonial grid */
.testimonial-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 8px;
}

.testimonial-site-link {
    font-size: 0.8rem;
    color: var(--primary-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.testimonial-site-link:hover {
    color: var(--accent);
}

.verified-badge {
    font-size: 0.75rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.verified-badge i {
    font-size: 0.85rem;
}

.testimonial-cta {
    text-align: center;
    margin-top: 48px;
}

.testimonial-cta-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* ---------- Final CTA ---------- */
.final-cta {
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.final-cta > .container > .final-cta-content > p:first-of-type {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 2;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .tagline-text {
    font-size: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 600;
    margin: 10px 0 4px;
    letter-spacing: 0.5px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 16px 0 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    border-color: var(--border-glow);
    color: var(--accent);
    background: rgba(255, 107, 53, 0.1);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-contact li i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ---------- Marquee Strip ---------- */
.marquee-strip {
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 107, 53, 0.2);
}

.marquee-track span {
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--accent);
    font-size: 0.6rem;
    display: flex;
    align-items: center;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Section Scroll Dots ---------- */
.section-dots {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 100;
}

.section-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-subtle);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.section-dots .dot:hover {
    background: var(--primary-light);
    transform: scale(1.3);
}

.section-dots .dot.active {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    transform: scale(1.3);
}

/* ---------- Loader ---------- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

.loader .loader-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--border-subtle);
    border-radius: 3px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: loaderFill 1.8s ease-out forwards;
}

@keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(1),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .security-visual {
        order: -1;
    }

    .shield-graphic {
        width: 200px;
        height: 200px;
    }

    .ring-1 { width: 200px; height: 200px; }
    .ring-2 { width: 150px; height: 150px; }
    .ring-3 { width: 100px; height: 100px; }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--bg-primary);
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 1000;
    }

    .nav-links.active a {
        font-size: 1.4rem;
    }

    .nav-actions.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 60px;
        left: 0;
        right: 0;
        z-index: 1000;
        align-items: center;
        gap: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card:nth-child(odd) {
        transform: none;
    }

    .portfolio-card:nth-child(odd):hover {
        transform: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card:nth-child(1),
    .why-card:nth-child(4) {
        grid-column: span 1;
    }

    .testimonial-grid,
    .testimonial-grid-4 {
        grid-template-columns: 1fr;
    }

    .trusted-by-item {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .trust-badges {
        gap: 20px;
    }

    .cta-card {
        padding: 36px 24px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-dots { display: none; }
    .marquee-track { font-size: 1.2rem; }
}

/* ============================================
   LEAD CAPTURE POPUP
   ============================================ */
.lead-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lead-popup.active {
    pointer-events: all;
    opacity: 1;
}
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}
.popup-content {
    position: relative;
    background: var(--bg-secondary, #1a2236);
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    padding: 2.5rem;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,107,53,0.1);
}
.lead-popup.active .popup-content {
    transform: scale(1) translateY(0);
}
.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-close:hover {
    background: rgba(255,107,53,0.3);
    color: white;
}
.popup-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
}
.popup-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.popup-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.popup-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    outline: none;
    transition: border-color 0.3s;
}
.popup-input:focus {
    border-color: var(--primary);
}
.popup-btn {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}
.popup-privacy {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    text-align: center;
    margin-bottom: 0 !important;
    margin-top: 0.75rem;
}
.popup-privacy i { margin-right: 0.25rem; }

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
}
.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgba(255,107,53,0.4);
    transition: all 0.3s ease;
    animation: floatPulse 3s ease-in-out infinite;
}
.floating-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255,107,53,0.6);
}
.floating-cta-btn i {
    font-size: 1.1rem;
}
@keyframes floatPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(255,107,53,0.4); }
    50% { box-shadow: 0 8px 40px rgba(255,107,53,0.6); }
}
@media (max-width: 768px) {
    .floating-cta-btn span { display: none; }
    .floating-cta-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .floating-cta-btn i { font-size: 1.3rem; }
}

/* ============================================
   FORM SECURITY NOTE
   ============================================ */
.form-security-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0,184,148,0.1);
    border: 1px solid rgba(0,184,148,0.2);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #00b894;
    margin-bottom: 1.25rem;
}
.form-security-note i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== Price Match Guarantee Banner ===== */
.price-match-banner {
    background: linear-gradient(135deg, #ff6b35, #ffd166);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.3), 0 0 80px rgba(255, 209, 102, 0.15);
}
.price-match-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.price-match-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.price-match-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.price-match-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.92);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.price-match-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.price-match-point {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.2rem;
    border-radius: 100px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}
.price-match-point:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.28);
}
.price-match-point i {
    font-size: 1rem;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .price-match-banner {
        padding: 2rem 1.5rem;
    }
    .price-match-title {
        font-size: 1.5rem;
    }
    .price-match-points {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Why Style Marking Comparison ===== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.comparison-col {
    border-radius: 1.25rem;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--glass-bg, rgba(255,255,255,0.03));
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
}
.comparison-col:hover {
    transform: translateY(-4px);
}
.comparison-col-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.comparison-col-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}
.comparison-col-header i {
    font-size: 1.5rem;
}
.bad-header {
    border-bottom: 2px solid rgba(255, 71, 71, 0.3);
}
.bad-header h3 {
    color: #ff4747;
}
.bad-header i {
    color: #ff4747;
}
.good-header {
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
}
.good-header h3 {
    color: #00ff88;
}
.good-header i {
    color: #00ff88;
}
.comparison-good {
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.08), 0 8px 30px rgba(0,0,0,0.2);
    background: rgba(0, 255, 136, 0.03);
}
.comparison-bad {
    opacity: 0.85;
}
.comparison-list {
    list-style: none;
    padding: 1rem 1.5rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary, rgba(255,255,255,0.7));
    line-height: 1.4;
}
.x-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 71, 71, 0.15);
    flex-shrink: 0;
}
.x-mark i {
    color: #ff4747;
    font-size: 0.75rem;
}
.comparison-bad .comparison-list li {
    text-decoration: line-through;
    text-decoration-color: rgba(255, 71, 71, 0.5);
    color: rgba(255,255,255,0.45);
}
.check-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.15);
    flex-shrink: 0;
}
.check-mark i {
    color: #00ff88;
    font-size: 0.75rem;
}
.comparison-good .comparison-list li {
    color: var(--text-primary, #fff);
}
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== FAQ Accordion ========== */
.faq-item {
    border: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--glass-bg, rgba(255,255,255,0.03));
    backdrop-filter: blur(20px);
    transition: border-color 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(255,209,102,0.2);
}
.faq-item.active {
    border-color: rgba(255,209,102,0.3);
}
.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text-primary, #fff);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    text-align: left;
    transition: color 0.3s;
}
.faq-question:hover {
    color: #ffd166;
}
.faq-question i {
    transition: transform 0.4s ease;
    color: #ffd166;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
    color: var(--text-secondary, rgba(255,255,255,0.6));
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}
