@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&display=swap');

:root {
    --bg-black: #030305;
    --bg-dark: #08080c;
    --accent: #a855f7;
    --accent-light: #d8b4fe;
    --accent-glow: rgba(168, 85, 247, 0.4);
    --text-white: #ffffff;
    --text-muted: #a1a1aa;
    --glass: rgba(15, 15, 20, 0.5);
    --border: rgba(255, 255, 255, 0.08);
    --gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);

    --spacing-base: 1.8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: var(--spacing-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

/* Background Texture disabled for a cleaner look */
/* 
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}
*/

.auras {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.aura-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(80px);
}

.aura-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    filter: blur(80px);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography Overhaul */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: clamp(20px, 4vh, 40px);
    line-height: 1;
}

.tagline {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
    font-weight: 700;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 8px 0;
    background: var(--bg-black);
    z-index: 100;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Feathered bottom edge instead of solid line */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(3, 3, 5, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(168, 85, 247, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo {
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text-white);
    line-height: 1;
}

.header-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-top: -2px;
}

.nav {
    display: flex;
    gap: 25px;
    /* Increased gap for better clarity */
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--text-white);
}

/* Hero Section Redesign */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 150px;
    /* Safe space for fixed header */
    background: var(--bg-black);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../foto/ava2.png');
    background-size: cover;
    background-position: right 20%;
    /* Lowered the image */
    z-index: 0;
    transition: transform 0.1s ease-out;
    /* For parallax hint */
}

/* Dark gradient overlay on the left */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(3, 3, 5, 1) 0%,
            rgba(3, 3, 5, 0.9) 30%,
            rgba(3, 3, 5, 0) 70%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    margin-top: 20px;
    /* Slight offset for better visual balance */
    position: relative;
    z-index: 5;
}

/* Apply float animation ONLY to text content, not the tagline */
.hero-title,
.hero-subtitle,
.hero-features,
.hero-actions,
.hero-social-proof {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-features {
    list-style: none;
    margin-bottom: 50px;
}

.hero-features li {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-features li span {
    color: var(--accent);
    font-weight: bold;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

/* Glassmorphism & Glow Buttons */
.btn-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Parallax Script Integration Hint - CSS side */
.hero:hover .hero-bg {
    transform: scale(1.02);
}

/* Buttons */
.btn {
    padding: 18px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.4s;
    display: inline-block;
}

.btn-primary {
    background: var(--text-white);
    color: var(--bg-black);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    color: var(--text-white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-gift {
    border-color: var(--accent) !important;
    color: var(--text-white) !important;
    background: rgba(168, 85, 247, 0.05) !important;
    box-shadow: 0 0 15px var(--accent-glow) !important;
    transition: 0.3s !important;
}

.btn-gift:hover {
    box-shadow: 0 0 25px var(--accent-glow) !important;
    transform: translateY(-2px) !important;
}

/* Photo Glass Effect */
.photo-box {
    position: relative;
    padding: 30px;
    border-radius: 40px;
    background: var(--glass);
    border: 1px solid var(--border);
    overflow: hidden;
}

.photo-box img {
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
    /* Subtle retouch */
    transition: 0.5s ease;
    object-position: center 10%;
}

.photo-box:hover img {
    filter: brightness(1.2) contrast(1.1) saturate(1.2);
}

.photo-placeholder {
    aspect-ratio: 1/1;
    background: linear-gradient(45deg, var(--bg-dark), var(--bg-black));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--border);
}

/* Stats Overlay */
.stat-pill {
    position: absolute;
    bottom: 50px;
    left: -20px;
    padding: 15px 25px;
    background: var(--text-white);
    color: var(--bg-black);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Sections */
section {
    padding: 60px 0;
    /* Reduced from 100px */
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 50px;
    border-radius: 30px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 30px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Service Card Extreme */
.service-hero-card {
    padding: 80px;
    border-radius: 50px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.3;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 40px auto;
}

.service-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.step-num {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 15px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cases Section Styles */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    aspect-ratio: 16/10;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-img {
    transform: scale(1.1);
}

/* Certificates Section Styles */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.cert-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.cert-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: 0.5s ease;
}

.cert-card:hover {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.cert-card:hover img {
    filter: brightness(1.1);
}

.case-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.case-card:nth-child(1) .case-img-placeholder {
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.2), transparent),
        linear-gradient(135deg, #08080c 0%, #030305 100%);
}

.case-card:nth-child(2) .case-img-placeholder {
    background: radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.2), transparent),
        linear-gradient(135deg, #030305 0%, #08080c 100%);
}

.mock-ui-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.mock-ui-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.3;
    margin-bottom: 10px;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(3, 3, 5, 0.95), transparent);
    backdrop-filter: blur(5px);
}

.case-title {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.case-category {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: auto;
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        /* More space for header on mobile */
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 400px;
        order: -1;
        background-position: center;
    }

    .hero::before {
        background: linear-gradient(to bottom,
                rgba(3, 3, 5, 0) 0%,
                rgba(3, 3, 5, 1) 100%);
        height: 50vh;
        top: 0;
    }

    .hero-container {
        padding: 40px 20px 80px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-features {
        display: inline-block;
        text-align: left;
    }

    .header {
        padding: 20px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2.6rem;
        margin-bottom: 30px;
    }

    .service-hero-card {
        padding: 40px 24px;
        border-radius: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 60px 20px !important;
        border-radius: 40px !important;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .header .btn {
        width: auto;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    section {
        padding: 40px 0;
    }
}

/* Testimonials Section Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    transition: 0.5s ease;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info strong {
    display: block;
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--accent);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Section Styles */
.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.faq-header {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-header h3 {
    font-size: 1.2rem;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.faq-header:hover h3 {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: 0.4s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body p {
    padding-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-body {
    max-height: 200px;
}

/* Footer Enhanced Styles */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.footer-nav,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a,
.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.footer-nav a:hover,
.footer-social a:hover {
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-info p {
        margin: 20px auto 0;
    }
}

/* Lead Magnet Styles */
.lead-magnet {
    padding: 100px 0;
}

.magnet-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a0a0f 100%);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.magnet-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.magnet-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.magnet-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .magnet-card {
        padding: 60px 30px;
        border-radius: 40px;
    }
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(168, 85, 247, 0.4));
    }

    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(168, 85, 247, 0.4));
    }
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-item strong {
    font-size: 1.5rem;
    color: var(--text-white);
    font-family: 'Syne', sans-serif;
}

.proof-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Who it's for Section */
.segment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.segment-card {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.segment-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
}

/* Visibility Utilities */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}

.segment-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.segment-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Results Section */
.results-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0;
}

.result-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.result-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-text h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--text-white);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .segment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-social-proof {
        gap: 30px;
        flex-wrap: wrap;
    }

    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Cases Extended Styles */
.cases-overhaul-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.case-card-extended {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 40px;
    border: 1px solid var(--border);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card-extended:hover {
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.case-img-box {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

.case-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.case-card-extended:hover .case-img-box img {
    transform: scale(1.05);
}

.case-label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.case-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.case-specs {
    margin-bottom: 30px;
}

.spec {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.spec strong {
    color: var(--text-white);
    margin-right: 5px;
}

@media (max-width: 900px) {
    .case-card-extended {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .case-img-box {
        height: 250px;
    }
}

/* Pricing Section Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
    /* Cards will have equal height */
}

.pricing-card {
    background: var(--bg-dark);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 700px;
    /* Set a base height to ensure visual consistency */
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(168, 85, 247, 0.05);
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.3);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, var(--bg-dark) 100%);
}

.pricing-card.premium {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.15) 0%, rgba(3, 3, 5, 1) 100%);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
    border-width: 2px;
}

.pricing-card.premium:hover {
    box-shadow: 0 30px 60px rgba(168, 85, 247, 0.4);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 30px;
    background: var(--accent);
    color: var(--text-white);
    font-size: 0.65rem;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.pricing-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.pricing-footer .btn-sm {
    padding: 12px 20px;
    font-size: 0.8rem;
    flex-grow: 1;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    margin-top: 20px;
}

.pricing-features li {
    margin-bottom: 24px;
    color: #e2e2e7;
    font-size: 0.95rem;
    display: flex;
    gap: 15px;
    line-height: 1.4;
    align-items: flex-start;
}

.feature-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-title {
    font-weight: 700;
    color: var(--text-white);
    font-size: 1rem;
    display: block;
}

.feature-desc {
    font-size: 0.85rem;
    color: #a1a1aa;
    line-height: 1.5;
    display: block;
}

.pricing-features li span {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    /* Align icon better with first line */
}

.check-icon {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.pricing-footer {
    border-top: 1px solid var(--border);
    padding-top: 25px;
}

.terms {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Premium Aesthetic Refinements */
section {
    padding: clamp(60px, 10vh, 120px) 0;
}

/* Anti-gravity Effect (Micro-movements) */
.segment-card,
.pricing-card,
.case-card-extended,
.testimonial-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.segment-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
}

/* Floating animation for icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.segment-icon,
.result-icon {
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom SVG Icons Styling */
.mystic-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: 0.3s;
}

.segment-card:hover .mystic-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--accent));
}

.result-item:hover .mystic-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--accent));
}

.hero-mobile-benefit {
    margin-top: 30px;
    padding: 20px;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    text-align: center;
}

.hero-mobile-benefit p {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.5;
}

.hero-mobile-benefit strong {
    color: var(--accent);
    text-transform: uppercase;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
        /* More air between sections on mobile */
    }

    .container {
        padding: 0 20px;
        /* Reduced padding for mobile */
    }

    /* Mobile Hero Optimization */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 140px;
        /* Increased to push content lower and avoid header overlap */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Switch to top-start to control the flow better */
        text-align: center;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-position: center 20%;
        /* Adjusted for mobile crop */
        background-size: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .results .tagline,
    .results .section-title {
        text-align: center;
    }

    .results .section-title br {
        display: none;
        /* Flatten title on mobile if needed or just center */
    }

    .hero-content {
        margin-top: 0;
        width: 100%;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 5;
    }

    .hero-title {
        font-size: 1.8rem;
        /* Hard limit for mobile */
        line-height: 1.2;
        margin-bottom: 15px;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .hero-features {
        display: none;
        /* Hide features on mobile to save space */
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        /* More space between buttons */
        margin-top: 30px;
        margin-bottom: 40px;
        /* More 'air' before the benefit block */
    }

    .hero-actions .btn {
        width: 100%;
        padding: 18px 25px;
        /* Slightly taller buttons */
        font-size: 1rem;
    }

    /* Mobile Header Optimization */
    .header {
        padding: 5px 0;
    }

    .logo {
        font-size: 1rem;
    }

    .header-tagline {
        display: none;
        /* Mandatory for mobile width */
    }

    .nav {
        gap: 8px;
        /* Reduced gap */
        align-items: center;
    }

    .nav-link {
        font-size: 0.6rem;
        padding: 6px 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        color: var(--text-white);
        white-space: nowrap;
    }

    .btn-gift {
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
        border-radius: 50px !important;
        background: rgba(168, 85, 247, 0.2) !important;
        border-color: var(--accent) !important;
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.2) !important;
    }

    .pricing-card {
        padding: 50px 30px;
        min-height: auto;
        border-radius: 40px;
        background: rgba(13, 13, 18, 0.95);
        border: 2px solid rgba(168, 85, 247, 0.4);
        /* Stronger border */
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(168, 85, 247, 0.2);
        /* Much stronger glow */
        margin-bottom: 40px;
        /* More spacing between cards */
        position: relative;
    }

    .pricing-card.premium {
        border: 2px solid var(--accent);
        box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3), 0 0 40px rgba(168, 85, 247, 0.2);
        background: linear-gradient(180deg, rgba(168, 85, 247, 0.15) 0%, rgba(8, 8, 12, 1) 100%);
    }

    .premium-badge {
        top: -15px;
        /* Move badge outside to avoid overlap */
        right: 30px;
        font-size: 0.7rem;
        padding: 6px 16px;
        box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
    }

    .pricing-header h3 {
        font-size: 2rem;
        margin-top: 10px;
    }

    .price {
        font-size: 2.2rem;
        margin-top: 20px;
    }

    .segment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .segment-card {
        padding: 30px 20px;
        text-align: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .segment-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .segment-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .segment-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .pricing-grid {
        gap: 40px;
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid {
        gap: 30px;
        /* Better separation for feature cards */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}