:root {
    --bg-dark: #0a0b10;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --primary: #00d2ff;
    --secondary: #9d50bb;
    --accent: #00f2fe;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Atmospheric background: floating gradient blobs + subtle noise */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(600px circle at 15% 20%, rgba(0, 210, 255, 0.12), transparent 50%),
        radial-gradient(700px circle at 85% 60%, rgba(157, 80, 187, 0.14), transparent 55%),
        radial-gradient(500px circle at 50% 100%, rgba(0, 242, 254, 0.08), transparent 50%);
    z-index: -2;
    pointer-events: none;
    animation: blobFloat 18s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(1.05); }
    100% { transform: translate(20px, -20px) scale(0.98); }
}

@media (prefers-reduced-motion: reduce) {
    body::before { animation: none; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

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

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0;
    background: var(--gradient);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
    transition: width 0.1s ease-out;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

#navbar.scrolled .logo-img {
    height: 100px;
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.4));
    transition: var(--transition);
}

.logo-img-small {
    height: 120px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-main);
    padding: 0;
}

/* Accessibility helper for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer contact links */
.footer-contact {
    font-style: normal;
}

.footer-contact a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

/* FAQ keyboard focus */
.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 230px;
    padding-bottom: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

/* Browser Mockup */
.hero-mockup {
    position: relative;
    z-index: 2;
    perspective: 1500px;
}

.browser-mockup {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0d0f17;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 60px -10px rgba(0, 210, 255, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform: rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-mockup:hover .browser-mockup {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-5px);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--glass-border);
}

.browser-dots {
    display: flex;
    gap: 0.4rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.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-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.browser-url i { font-size: 0.7rem; color: #28c840; }

.browser-content {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.browser-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.mockup-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 210, 255, 0.3), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(157, 80, 187, 0.25), transparent 60%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.7;
    animation: mockupGlow 6s ease-in-out infinite alternate;
}

@keyframes mockupGlow {
    from { opacity: 0.5; transform: scale(1); }
    to { opacity: 0.9; transform: scale(1.05); }
}

.mockup-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1.1rem;
    border-radius: 14px;
    background: rgba(13, 15, 23, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
}

.mockup-card i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gradient);
    color: white;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.mockup-card strong {
    display: block;
    font-size: 1.1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.mockup-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mockup-card-1 {
    top: 15%;
    left: -8%;
    animation-delay: 0s;
}

.mockup-card-2 {
    bottom: 12%;
    right: -8%;
    animation-delay: 2s;
}

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

@media (max-width: 992px) {
    .hero-mockup { max-width: 500px; margin: 0 auto; }
    .browser-mockup { transform: none; }
    .mockup-card-1 { left: 0; }
    .mockup-card-2 { right: 0; }
}

@media (max-width: 600px) {
    .mockup-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .mockup-card, .mockup-glow { animation: none; }
    .browser-mockup { transform: none; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero .lead {
    max-width: 640px;
    text-wrap: pretty;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-proof {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2.5rem;
}

.hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    font-size: 0.88rem;
    color: var(--text-main);
    transition: var(--transition);
}

.hero-proof li:hover {
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.08);
}

.hero-proof i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    transition: var(--transition);
}

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

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary));
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

@media (max-width: 768px) {
    .hero-scroll { display: none; }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial blockquote {
    border: none;
    margin: 0;
}

.testimonial blockquote p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-main);
}

.testimonial {
    position: relative;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-size: 6rem;
    font-family: Georgia, serif;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    pointer-events: none;
}

.testimonial figcaption {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.25);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-meta strong {
    font-size: 0.95rem;
}

.testimonial-meta span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* Glassmorphism Cards */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Trusted by */
.trusted {
    padding: 50px 0 0;
}

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

.trusted-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 2.5rem;
    opacity: 0.65;
    transition: var(--transition);
}

.trusted-grid:hover { opacity: 1; }

.trusted-item {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.trusted-item:hover {
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.08);
    transform: translateY(-2px);
}

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

/* Stats Strip */
.stats-strip {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stat-num {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.stat span {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-num {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    letter-spacing: -0.05em;
    pointer-events: none;
    transition: var(--transition);
}

.feature-card:hover .feature-num {
    opacity: 0.5;
    transform: scale(1.05);
}

.feature-card i {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Portfolio — Bento Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 1.5rem;
}

/* Bento: 8 cards arranged asymmetrically */
.portfolio-item:nth-child(1) { grid-column: span 2; grid-row: span 2; } /* large hero */
.portfolio-item:nth-child(2) { grid-column: span 2; }
.portfolio-item:nth-child(3) { grid-column: span 1; }
.portfolio-item:nth-child(4) { grid-column: span 1; }
.portfolio-item:nth-child(5) { grid-column: span 2; grid-row: span 2; } /* large */
.portfolio-item:nth-child(6) { grid-column: span 1; }
.portfolio-item:nth-child(7) { grid-column: span 1; }
.portfolio-item:nth-child(8) { grid-column: span 2; }

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    .portfolio-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .portfolio-item:nth-child(1),
    .portfolio-item:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item:nth-child(n) {
        grid-column: span 1;
    }
}

.portfolio-item {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 3;
    pointer-events: none;
}

.portfolio-item:hover::after {
    left: 150%;
}

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

.portfolio-img {
    transition: transform 0.6s ease;
}

button.portfolio-item {
    border: 1px solid var(--glass-border);
}

.portfolio-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 0;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 11, 16, 0.9) 0%, rgba(10, 11, 16, 0.4) 50%, rgba(10, 11, 16, 0.2) 100%);
    transition: var(--transition);
    z-index: 1;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(10, 11, 16, 1) 0%, rgba(10, 11, 16, 0.6) 50%, rgba(10, 11, 16, 0.4) 100%);
}

.portfolio-info {
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    position: relative;
}

.portfolio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--glass-border);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-badge.pwa {
    border-color: var(--secondary);
    color: var(--secondary);
}

.view-link {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at top right, rgba(0, 210, 255, 0.08), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 30px 60px -20px rgba(0, 210, 255, 0.3);
}

.pricing-card.featured::before {
    opacity: 1;
    background: radial-gradient(400px circle at top right, rgba(0, 210, 255, 0.18), transparent 60%);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-card .badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--gradient);
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-top: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-suffix {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    -webkit-text-fill-color: var(--text-muted);
}

/* Pricing note */
.pricing-note {
    margin-top: 2.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note i {
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .pricing-note {
        border-radius: 16px;
        text-align: left;
        align-items: flex-start;
    }
}

/* Guarantees */
.guarantees {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--glass-border);
}

.guarantee-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guarantee-item > i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
    font-size: 1.1rem;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.guarantee-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.guarantee-item span {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-features i {
    color: var(--primary);
}

/* Compare Plans Table */
.compare-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    text-align: center;
}

.compare-table thead th {
    padding: 1.5rem 1rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.compare-table thead th:first-child {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
}

.compare-table tbody th {
    text-align: left;
    padding: 1rem 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.92rem;
}

.compare-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-main);
    font-size: 0.92rem;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: rgba(0, 210, 255, 0.03);
}

.compare-table .fa-check {
    color: var(--primary);
    font-size: 0.95rem;
}

.compare-table .muted {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.compare-table .featured-col {
    background: rgba(0, 210, 255, 0.05);
    position: relative;
}

.compare-table thead th.featured-col {
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
}

.best-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.25rem;
}

.compare-table .row-price th,
.compare-table .row-price td {
    font-weight: 800;
    font-size: 1.15rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.compare-table .row-price .featured-col {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    padding: 60px 0 100px;
}

.cta-card {
    position: relative;
    text-align: center;
    padding: 5rem 2rem;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(0, 210, 255, 0.08), rgba(157, 80, 187, 0.08)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 210, 255, 0.25), transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.cta-card > *:not(.cta-glow) { position: relative; z-index: 1; }

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-wrap: balance;
}

.cta-card > p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-wrap: pretty;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-small {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .cta-glow { animation: none; }
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 320px;
    font-size: 0.92rem;
}

.footer-col h4,
.footer-contact h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-contact p {
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
    margin-right: 0.25rem;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-credit i {
    color: #ff5577;
    margin: 0 0.2rem;
    animation: heartBeat 1.4s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
    .footer-credit i { animation: none; }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    #navbar .container {
        justify-content: center;
        position: relative;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 11, 16, 0.95);
        backdrop-filter: blur(12px);
        padding: 2rem;
        border-bottom: 1px solid var(--glass-border);
        gap: 1.5rem;
    }
    .nav-links.open { display: flex; }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-cta { display: none; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-5px); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2.2rem; }
    .container { padding: 0 1.25rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
}

/* Reduce motion preference */
@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;
    }
    .glass:hover { transform: none; }
    .pricing-card.featured:hover { transform: scale(1.05); }
    .whatsapp-float:hover { transform: none; }
}

/* Visible focus for keyboard users */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Modal Gallery */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
}

.gallery-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.gallery-nav {
    display: contents;
}

.gallery-nav button {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 11, 16, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 2010;
}

#prev-img { left: 30px; }
#next-img { right: 30px; }

.gallery-nav button:hover {
    background: rgba(0, 210, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary);
}

@media (max-width: 600px) {
    .gallery-nav button {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    #prev-img { left: 10px; }
    #next-img { right: 10px; }
}

.gallery-nav button i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}


.gallery-dots {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.pwa-card {
    cursor: pointer;
}

