/* Stili delle pagine local SEO (realizzazione-siti-web-<comune>.php).
   Estratto il 2026-08-25 dal blocco inline che era duplicato identico
   in tutte le 1643 pagine (~73 MB di CSS ritrasmesso a ogni richiesta).
   Modificare qui: la modifica vale per tutte le pagine comune. */

:root {
    --primary: #fcb321;
    --primary-dark: #e5a01e;
    --primary-rgb: 252, 179, 33;
    --secondary: #000222;
    --secondary-rgb: 0, 2, 34;
    --text: #000222;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    padding-top: 44px; /* Spazio per urgency bar */
}

/* Sposta l'header del sito sotto la urgency bar */
header, .header, .site-header, #header {
    top: 44px !important;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    background: var(--secondary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255,255,255,0.4);
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== READING PROGRESS BAR ===== */
.reading-progress {
    position: fixed;
    top: 44px; /* Sotto la urgency bar */
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ffd166);
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--secondary) 0%, #1a1a3e 100%);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(-100%);
    animation: slideDownUrgency 0.5s ease 1s forwards;
}

@keyframes slideDownUrgency {
    to { transform: translateY(0); }
}

.urgency-bar .pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

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

.urgency-bar .urgency-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.urgency-bar .urgency-text strong {
    color: var(--primary);
}

.urgency-bar .urgency-cta {
    background: var(--primary);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.urgency-bar .urgency-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(252, 179, 33, 0.4);
}

/* ===== SOCIAL PROOF POPUP ===== */
.social-proof-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9998;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 320px;
}

.social-proof-popup.show {
    transform: translateX(0);
}

.social-proof-popup .avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #ffd166);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.social-proof-popup .popup-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--secondary);
}

.social-proof-popup .popup-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== GLOW CURSOR ===== */
.glow-cursor {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(252, 179, 33, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

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

/* ===== HERO WOW ===== */
.hero-wow {
    min-height: 100vh;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-wow::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(252, 179, 33, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(252, 179, 33, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 20%, rgba(252, 179, 33, 0.08) 0%, transparent 40%);
    animation: gradientMeshMove 20s ease-in-out infinite;
}

@keyframes gradientMeshMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 0%;
        opacity: 1;
    }
    33% {
        background-position: 100% 50%, 0% 50%, 100% 100%;
        opacity: 0.8;
    }
    66% {
        background-position: 50% 100%, 50% 0%, 0% 50%;
        opacity: 1;
    }
}

#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-wow-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-wow h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeUp 0.8s ease 0.3s forwards;
}

.hero-wow h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ffd166 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle-typing {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    min-height: 70px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.5s forwards;
}

.typing-text {
    color: var(--primary);
    font-weight: 600;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background: var(--primary);
    margin-left: 2px;
    animation: cursorBlink 0.8s ease infinite;
    vertical-align: middle;
}

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

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.9s forwards;
}

.hero-micro-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 1.1s forwards;
}

.micro-stat {
    text-align: center;
}

.micro-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.micro-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 100px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 1.3s forwards, badgePulse 3s ease-in-out 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252, 179, 33, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(252, 179, 33, 0); }
}

.hero-badge img { height: 32px; }
.hero-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 1.5s forwards;
}

.scroll-indicator-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-indicator-inner:hover {
    color: var(--primary);
}

.scroll-indicator-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-indicator-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ffd166 100%);
    color: var(--secondary);
    box-shadow: 0 8px 30px rgba(252, 179, 33, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(252, 179, 33, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before {
    width: 300px;
    height: 300px;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(252, 179, 33, 0.1);
    transform: translateY(-4px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Magnetic button effect applied via JS */
.btn-magnetic {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== SOCIAL PROOF TICKER ===== */
.social-proof-ticker {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.social-proof-ticker.sticky {
    position: fixed;
    top: 44px; /* Sotto la urgency bar */
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ticker-track {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    white-space: nowrap;
}

.ticker-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.ticker-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }
.section-gray { background: var(--gray-50); }
.section-dark {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(252, 179, 33, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(252, 179, 33, 0.1) 0%, transparent 40%);
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(252, 179, 33, 0.1) 0%, rgba(252, 179, 33, 0.05) 100%);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-dark .section-tag {
    background: rgba(252, 179, 33, 0.2);
    color: var(--primary);
}

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

.section-dark .section-header h2 { color: var(--white); }

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

.section-dark .section-header p { color: rgba(255, 255, 255, 0.8); }

/* ===== PROBLEM/SOLUTION SPLIT ===== */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-side, .solution-side {
    padding: 48px;
    border-radius: 24px;
}

.problem-side {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
}

.solution-side {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
}

.problem-side h3, .solution-side h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.problem-side h3 { color: #dc2626; }
.solution-side h3 { color: #16a34a; }

.problem-list, .solution-list {
    list-style: none;
}

.problem-list li, .solution-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.solution-list li {
    transform: translateX(20px);
}

.problem-list li.visible, .solution-list li.visible {
    opacity: 1;
    transform: translateX(0);
}

.problem-list li svg {
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 4px;
}

.solution-list li svg {
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 4px;
}

/* ===== BENTO STATS GRID ===== */
.bento-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    padding: 60px 0;
}

.bento-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.bento-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252, 179, 33, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-stat:hover::before {
    opacity: 1;
}

.bento-stat:hover {
    border-color: rgba(252, 179, 33, 0.3);
    transform: translateY(-5px);
}

.bento-stat.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-stat.wide {
    grid-column: span 2;
}

.bento-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #ffd166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.bento-stat.large .bento-stat-number {
    font-size: 5rem;
}

.bento-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.bento-stat.large .bento-stat-label {
    font-size: 1.2rem;
}

/* ===== ACCORDION VANTAGGI ===== */
.advantages-accordion {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.advantages-progress {
    position: absolute;
    left: -60px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gray-200);
    border-radius: 4px;
}

.advantages-progress-fill {
    width: 100%;
    background: linear-gradient(180deg, var(--primary), #ffd166);
    border-radius: 4px;
    height: 0%;
    transition: height 0.3s ease;
}

.advantage-accordion-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-accordion-item:hover {
    box-shadow: var(--shadow-lg);
}

.advantage-accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(252, 179, 33, 0.2);
}

.advantage-accordion-header {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.advantage-accordion-item.active .advantage-accordion-header {
    background: linear-gradient(135deg, rgba(252, 179, 33, 0.1) 0%, rgba(252, 179, 33, 0.05) 100%);
}

.advantage-accordion-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(252, 179, 33, 0.15) 0%, rgba(252, 179, 33, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.advantage-accordion-item.active .advantage-accordion-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #ffd166 100%);
}

.advantage-accordion-item.active .advantage-accordion-icon svg {
    stroke: var(--secondary);
}

.advantage-accordion-title {
    flex: 1;
}

.advantage-accordion-title h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.advantage-accordion-title span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.advantage-accordion-arrow {
    transition: transform 0.3s;
}

.advantage-accordion-item.active .advantage-accordion-arrow {
    transform: rotate(180deg);
}

.advantage-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-accordion-item.active .advantage-accordion-content {
    max-height: 200px;
}

.advantage-accordion-body {
    padding: 0 28px 24px;
    padding-left: 104px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== HORIZONTAL SCROLL GALLERY ===== */
.horizontal-gallery-wrapper {
    position: relative;
    margin: 0 -24px;
    padding: 20px 0;
}

.horizontal-gallery {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.horizontal-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.gallery-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.gallery-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(252, 179, 33, 0.15) 0%, rgba(252, 179, 33, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gallery-card:hover .gallery-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #ffd166 100%);
}

.gallery-card:hover .gallery-card-icon svg {
    stroke: var(--secondary);
}

.gallery-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.gallery-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.gallery-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-nav-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.gallery-nav-btn:hover svg {
    stroke: var(--secondary);
}

/* ===== INTERACTIVE TIMELINE ===== */
.sticky-timeline-section {
    position: relative;
}

.sticky-timeline-container {
    display: flex;
    flex-direction: column;
}

.timeline-progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 6px;
    margin-bottom: 60px;
    overflow: hidden;
}

.timeline-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ffd166);
    border-radius: 6px;
    width: 0%;
    transition: width 0.1s linear;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.timeline-step {
    text-align: center;
    opacity: 0.5;
    transition: all 0.4s;
    flex: 1;
    cursor: pointer;
}

.timeline-step:hover {
    opacity: 0.8;
}

.timeline-step.active {
    opacity: 1;
}

.timeline-step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.4s;
}

.timeline-step.active .timeline-step-number {
    background: linear-gradient(135deg, var(--primary), #ffd166);
    color: var(--secondary);
    transform: scale(1.1);
}

.timeline-step-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
}

.timeline-step.active .timeline-step-label {
    color: var(--secondary);
}

.timeline-content-area {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.timeline-content-item {
    position: absolute;
    inset: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.timeline-content-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.timeline-content-item h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.timeline-content-item p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.timeline-content-item ul {
    list-style: none;
}

.timeline-content-item ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.timeline-content-item ul li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== BENTO SERVICES GRID ===== */
.bento-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}

.bento-service {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.bento-service.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a3e 100%);
    border: none;
    display: flex;
    flex-direction: column;
}

.bento-service.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(252, 179, 33, 0.2) 0%, transparent 50%);
}

.bento-service.featured h3,
.bento-service.featured p {
    color: var(--white);
    position: relative;
}

.bento-service.featured p {
    color: rgba(255,255,255,0.8);
    flex: 1;
}

.bento-service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), #ffd166);
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    animation: badgeBounce 2s ease-in-out infinite;
}

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

.bento-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(252, 179, 33, 0.15) 0%, rgba(252, 179, 33, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.bento-service.featured .bento-service-icon {
    background: linear-gradient(135deg, var(--primary), #ffd166);
    width: 80px;
    height: 80px;
}

.bento-service.featured .bento-service-icon svg {
    stroke: var(--secondary);
    width: 40px;
    height: 40px;
}

.bento-service:hover .bento-service-icon {
    transform: scale(1.1);
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252, 179, 33, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(252, 179, 33, 0); }
}

.bento-service h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.bento-service p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

/* ===== PRICING INTERACTIVE ===== */
.pricing-interactive {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    background: var(--gray-100);
    border-radius: 100px;
    padding: 6px;
    margin-bottom: 40px;
}

.pricing-toggle-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-toggle-btn.active {
    background: var(--white);
    color: var(--secondary);
    box-shadow: var(--shadow);
}

.pricing-toggle-btn:hover:not(.active) {
    color: var(--secondary);
}

.pricing-card-single {
    background: var(--white);
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.pricing-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 179, 33, 0.1) 0%, transparent 50%);
    animation: pricingGlow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pricingGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.pricing-content {
    position: relative;
    text-align: center;
}

.pricing-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 16px;
}

.pricing-from {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.pricing-currency {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

.pricing-value {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #ffd166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    color: #22c55e;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.pricing-note-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(252, 179, 33, 0.1) 0%, rgba(252, 179, 33, 0.05) 100%);
    border: 1px solid rgba(252, 179, 33, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note-box svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note-box p {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== RELATED SERVICES (Internal Links) ===== */
.related-services {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.related-services h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.related-service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.related-service-link:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(252, 179, 33, 0.1) 0%, rgba(252, 179, 33, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.related-service-link svg {
    color: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FLOATING CARDS ===== */
.floating-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    perspective: 1000px;
}

.floating-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(calc(var(--delay) * 20px));
    animation: floatCard 3s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 0.5s);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(calc(var(--delay) * 20px)); }
    50% { transform: translateY(calc(var(--delay) * 20px - 10px)); }
}

.floating-card:hover {
    transform: translateY(-20px) scale(1.05) !important;
    box-shadow: var(--shadow-2xl);
    z-index: 10;
    animation-play-state: paused;
}

.floating-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #ffd166 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(252, 179, 33, 0.3);
}

.floating-card h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.floating-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PORTFOLIO SHOWCASE ===== */
.portfolio-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.portfolio-featured {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a3e 100%);
}

.portfolio-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(252, 179, 33, 0.3) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fcb321' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
    transition: opacity 0.3s;
}

.portfolio-featured:hover::before {
    opacity: 1;
}

.portfolio-featured-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

.portfolio-featured-overlay {
    padding: 40px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 2, 34, 0.95) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s;
}

.portfolio-featured:hover .portfolio-featured-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-featured-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.portfolio-featured-overlay h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
}

.portfolio-featured-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.portfolio-grid-small {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.portfolio-item {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a3e 100%);
    border-radius: 20px;
    padding: 28px;
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(252, 179, 33, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.portfolio-item-inner {
    position: relative;
}

.portfolio-item-tag {
    display: inline-block;
    background: rgba(252, 179, 33, 0.2);
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.portfolio-item h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.portfolio-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ===== FAQ MODERN ===== */
.faq-modern {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-modern {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: faqFadeIn 0.5s ease forwards;
    animation-delay: calc(var(--delay) * 0.1s);
}

@keyframes faqFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item-modern:hover {
    box-shadow: var(--shadow-lg);
}

.faq-item-modern.active {
    border-color: var(--primary);
}

.faq-question-modern {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s;
}

.faq-question-modern:hover {
    color: var(--primary-dark);
}

.faq-icon-modern {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon-modern span {
    position: absolute;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

.faq-icon-modern span:first-child {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon-modern span:last-child {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item-modern.active .faq-icon-modern span:last-child {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 500px;
}

.faq-answer-inner-modern {
    padding: 0 28px 24px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== CTA WOW ===== */
.cta-wow {
    padding: 120px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

#cta-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-wow::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(252, 179, 33, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(252, 179, 33, 0.15) 0%, transparent 50%);
    animation: ctaGradient 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes ctaGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-wow-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-wow h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-wow p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.trust-badge svg {
    color: var(--primary);
}

.cta-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: linear-gradient(135deg, rgba(252, 179, 33, 0.3) 0%, rgba(252, 179, 33, 0.1) 100%);
    border-radius: 50%;
    animation: floatElement 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.8; }
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9997;
    gap: 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-mobile-cta.show {
    transform: translateY(0);
}

.sticky-mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.sticky-mobile-btn.whatsapp {
    background: #25D366;
    color: white;
}

.sticky-mobile-btn.primary {
    background: linear-gradient(135deg, var(--primary), #ffd166);
    color: var(--secondary);
}

/* ===== TESTIMONIALS ===== */
.testimonials-widget {
    margin-top: 40px;
    min-height: 300px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .problem-solution { grid-template-columns: 1fr; gap: 32px; }
    .bento-stats { grid-template-columns: repeat(2, 1fr); }
    .bento-stat.large { grid-column: span 2; grid-row: span 1; }
    .bento-stat.wide { grid-column: span 2; }
    .advantages-progress { display: none; }
    .bento-services { grid-template-columns: repeat(2, 1fr); }
    .bento-service.featured { grid-row: span 1; }
    .floating-cards-container { grid-template-columns: repeat(2, 1fr); }
    .portfolio-showcase { grid-template-columns: 1fr; }
    .portfolio-grid-small { flex-direction: row; }
}

@media (max-width: 768px) {
    .urgency-bar { padding: 8px 12px; flex-wrap: wrap; gap: 8px; }
    .urgency-bar .urgency-text { font-size: 0.8rem; }
    .hero-wow { padding-top: 120px; }
    .hero-wow h1 { font-size: 2rem; }
    .hero-subtitle-typing { font-size: 1.1rem; min-height: 50px; }
    .hero-micro-stats { gap: 24px; }
    .micro-stat-value { font-size: 1.4rem; }
    .scroll-indicator { display: none; }
    .social-proof-popup { max-width: 280px; padding: 12px 16px; }
    .gallery-card { flex: 0 0 260px; }
    .timeline-steps { flex-wrap: wrap; gap: 16px; }
    .timeline-step { flex: 0 0 calc(33.33% - 16px); }
    .bento-services { grid-template-columns: 1fr; }
    .bento-stat.large .bento-stat-number { font-size: 3.5rem; }
    .pricing-value { font-size: 4rem; }
    .floating-cards-container { grid-template-columns: 1fr; }
    .floating-card { animation: none; transform: none; }
    .portfolio-grid-small { flex-direction: column; }
    .cta-buttons-wow { flex-direction: column; }
    .cta-buttons-wow .btn { width: 100%; }
    .sticky-mobile-cta { display: flex; }
    body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-micro-stats { flex-direction: column; gap: 16px; }
    .section { padding: 60px 0; }
    .bento-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .bento-stat { padding: 24px 16px; }
    .bento-stat-number { font-size: 2.5rem; }
    .bento-stat.large .bento-stat-number { font-size: 3rem; }
    .pricing-card-single { padding: 32px 24px; }
    .pricing-value { font-size: 3rem; }
    .cta-trust-badges { flex-direction: column; gap: 16px; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .glow-cursor { display: none; }
    .floating-card { transform: none !important; }
    .floating-element { animation: none; }
}
