*, *::before, *::after { box-sizing: border-box; }
  html, body { overflow-x: hidden; max-width: 100vw; }
  img, video, svg, canvas { max-width: 100%; height: auto; }

:root {
            --slate: #0F172A;
            --pink: #F2A2C3;
            --orange: #F97316;
            --blue: #E0F2FE;
            --offwhite: #F5F5F4;
            --white: #FFFFFF;
            
            --font-sans: 'Roboto', sans-serif;
            --font-serif: 'Merriweather', serif;
            
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 8rem;
        }

        /* Reset & Base */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: var(--font-sans);
            background-color: var(--slate);
            color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        button { cursor: pointer; border: none; background: none; font-family: inherit; }

        /* Typography */
        h1, h2, h3, h4, .serif-text { font-family: var(--font-serif); }
        .text-sans { font-family: var(--font-sans); }
        .uppercase { text-transform: uppercase; letter-spacing: 0.05em; }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-orange {
            background-color: var(--orange);
            color: var(--white);
            border-radius: 25px !important;
        }
        .btn-orange:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
        }
        .btn-outline {
            border: 2px solid var(--orange);
            color: var(--orange);
            border-radius: 4px;
        }
        .btn-outline:hover {
            background-color: var(--orange);
            color: var(--white);
        }

        /* Layout Utilities */
        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        @media (max-width: 768px) { .container { padding: 0 var(--spacing-sm); } }

        /* --- Header --- */
        .global-cta {
            background-color: var(--orange);
            color: var(--white);
            text-align: center;
            padding: 0.5rem;
            font-size: 0.8rem;
            font-weight: 700;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        .site-header {
            position: fixed;
            top: 32px; /* Height of global CTA */
            width: 100%;
            z-index: 999;
            transition: background-color 0.3s, backdrop-filter 0.3s;
            padding: 1rem 0;
        }
        .site-header.scrolled {
            background-color: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(12px);
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo img { width: auto !important;
  height: 80px !important;
}
        @media (min-width: 768px) {
.logo img { height: 80px !important; width: auto !important; }
}
        
        .nav-links {
            display: none;
            gap: 2rem;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .nav-links a { position: relative; }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after { width: 100%; }
        
        .header-actions { display: none; }
        
        .mobile-menu-btn {
            display: block;
            color: var(--white);
            font-size: 1.5rem;
        }

        @media (min-width: 1024px) {
            .nav-links { display: flex; }
            .header-actions { display: block; }
            .mobile-menu-btn { display: none; }
        }

        /* Mobile Menu Panel */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background-color: var(--slate);
            z-index: 1001;
            padding: 5rem 2rem;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu a {
            font-size: 1.5rem !important;
            font-family: var(--font-serif);
            display: block;
            padding: 0.5rem 0 !important;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-menu-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2rem;
            color: var(--white);
        }

        /* --- Hero --- */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 120%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.4;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        .hero p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 600px;
            color: var(--offwhite);
        }

        /* --- Community Pulse --- */
        .pulse {
            padding: var(--spacing-xl) 0;
            background-color: var(--slate);
            overflow: hidden;
            position: relative;
        }
        .pulse-container {
            display: flex;
            gap: var(--spacing-md);
            white-space: nowrap;
        }
        .pulse-card {
            background: rgba(255,255,255,0.05);
            padding: 2rem 3rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            display: inline-flex;
            flex-direction: column;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        .pulse-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--orange);
            transform: translateY(-5px);
        }
        .pulse-num {
            font-size: 3rem;
            font-weight: 700;
            color: var(--orange);
            font-family: var(--font-sans);
        }
        .pulse-label {
            font-size: 1.2rem;
            color: var(--white);
        }

        /* --- The Feed --- */
        .feed {
            background-color: var(--offwhite);
            color: var(--slate);
            padding: var(--spacing-xl) 0;
            min-height: 100vh;
        }
        .feed-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
            align-items: start;
        }
        @media (min-width: 1024px) {
            .feed-grid { grid-template-columns: 1fr 1fr; }
        }
        .feed-content h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 2rem;
        }
        .accordion-item {
            border-bottom: 1px solid rgba(15, 23, 42, 0.2);
            margin-bottom: 1rem;
        }
        .accordion-header {
            width: 100%;
            text-align: left;
            padding: 1.5rem 0;
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }
        .accordion-content p {
            padding-bottom: 1.5rem;
            line-height: 1.6;
            color: #334155;
        }
        .feed-visual {
            position: relative;
            height: 600px;
            border-radius: 8px;
            overflow: hidden;
        }
        .feed-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- Featured Creators --- */
        .creators {
            background-color: var(--offwhite);
            padding: var(--spacing-xl) 0;
        }
        .creators-header {
            text-align: center;
            margin-bottom: var(--spacing-lg);
            color: var(--slate);
        }
        .creators-header h2 { font-size: 3rem; margin-bottom: 1rem; }
        
        .masonry-grid {
            column-count: 1;
            column-gap: 1.5rem;
        }
        @media (min-width: 768px) { .masonry-grid { column-count: 2; } }
        @media (min-width: 1024px) { .masonry-grid { column-count: 3; } }
        
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
            position: relative;
            border: 8px solid var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            overflow: hidden;
            border-radius: 4px;
        }
        .masonry-item img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }
        .masonry-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.8);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: var(--white);
            text-align: center;
            padding: 1rem;
        }
        .masonry-item:hover img { transform: scale(1.05); }
        .masonry-item:hover .masonry-overlay { opacity: 1; }

        /* --- Learn --- */
        .learn {
            background-color: var(--slate);
            padding: var(--spacing-xl) 0;
            min-height: 100vh;
        }
        .learn-header { margin-bottom: var(--spacing-lg); max-width: 600px; }
        .learn-header h2 { font-size: 3rem; margin-bottom: 1rem; }
        .learn-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .tutorial-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 16/9;
            cursor: pointer;
        }
        .tutorial-card img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .tutorial-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 1.5rem;
            display: flex;
            align-items: flex-end;
            transition: background 0.3s;
        }
        .tutorial-card:hover img { transform: scale(1.05); }
        .tutorial-card:hover .tutorial-overlay { background: rgba(0,0,0,0.2); }
        .tutorial-title {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* --- Magazine --- */
        .magazine {
            background-color: var(--white);
            color: var(--slate);
            padding: var(--spacing-xl) 0;
            position: relative;
            overflow: hidden;
        }
        .mag-shape {
            position: absolute;
            z-index: 0;
            border-radius: 50%;
        }
        .shape-pink { background: var(--pink); width: 400px; height: 400px; top: -100px; right: -100px; opacity: 0.2; }
        .shape-blue { background: var(--blue); width: 600px; height: 600px; bottom: -200px; left: -200px; opacity: 0.3; }
        
        .mag-container { position: relative; z-index: 1; }
        .mag-header h2 { font-size: clamp(2.5rem, 6vw, 4rem); text-transform: uppercase; margin-bottom: 3rem; }
        
        .mag-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
        }
        @media (min-width: 768px) {
            .mag-grid { grid-template-columns: repeat(2, 1fr); }
            .mag-article:nth-child(even) { margin-top: 4rem; }
        }
        .mag-article img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            margin-bottom: 1.5rem;
        }
        .mag-article h3 { font-size: 1.8rem; margin-bottom: 1rem; font-family: var(--font-serif); }

        /* --- Events --- */
        .events {
            position: relative;
            padding: 12rem 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            min-height: 80vh;
        }
        .events-bg {
            position: absolute;
            inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .events-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.7);
            z-index: 1;
        }
        .events-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        .events h2 {
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .events p { font-size: 1.2rem; margin-bottom: 2rem; }

        /* --- Pricing --- */
        .pricing {
            background-color: var(--slate);
            padding: var(--spacing-xl) 0;
            text-align: center;
        }
        .pricing-card {
            max-width: 500px;
            margin: 0 auto;
            border: 2px solid var(--orange);
            padding: 4rem 2rem;
            border-radius: 25px !important;
            background: rgba(15, 23, 42, 0.5);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
        }
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1) !important;
        }
        .pricing-card h2 { font-size: 2.5rem; margin-bottom: 1rem; }
        .pricing-card .price { font-size: 4rem; font-weight: 700; color: var(--orange); margin-bottom: 2rem; }
        .pricing-features { text-align: left; margin-bottom: 3rem; }
        .pricing-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 1.1rem;
        }

        /* --- Safety --- */
        .safety {
            background-color: var(--offwhite);
            color: var(--slate);
            padding: var(--spacing-xl) 0;
            text-align: center;
        }
        .safety-content { max-width: 800px; margin: 0 auto; }
        .safety h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
        .safety p { font-size: 1.2rem; line-height: 1.8; color: #475569; }

        /* --- Footer --- */
        .site-footer {
            background-color: var(--slate);
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: var(--spacing-lg) 0 2rem;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }
        .footer-col h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .footer-col ul li { margin-bottom: 0.8rem; }
        .footer-col a {
            color: #94A3B8;
            position: relative;
            transition: color 0.3s;
        }
        .footer-col a:hover { color: var(--white); }
        .footer-col a::after {
            content: '';
            position: absolute;
            bottom: -2px; left: 0; width: 0; height: 1px;
            background: var(--white);
            transition: width 0.3s ease;
        }
        .footer-col a:hover::after { width: 100%; }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #64748B;
        }
        .footer-bottom a { text-decoration: underline; }

/* === Page-specific styles added by sub-page: About us === */
/* Page-Specific Styles for About Us */
        
        .about-hero {
            min-height: 70vh;
            padding-top: 120px;
        }

        .about-paragraph {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.8;
        }

        .about-img-cover {
            object-position: center 20%;
        }

        .about-grid-reverse {
            align-items: center;
        }

        .about-visual-short {
            height: 500px;
        }

        .about-img-top {
            object-position: top center;
        }

        .about-content-light h2 {
            color: var(--white);
        }

        .about-content-light .about-paragraph {
            color: var(--offwhite);
            opacity: 0.9;
        }

        .about-magazine {
            padding: 8rem 0;
        }

        .about-centered-text {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-centered-text h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 2rem;
            color: var(--slate);
        }

        .about-paragraph-large {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 2rem;
        }

        .about-paragraph-large strong {
            color: var(--orange);
            font-weight: 700;
        }

        /* Desktop Layout Overrides */
        @media (min-width: 1024px) {
            .about-grid-reverse {
                direction: rtl;
            }
            .about-grid-reverse > * {
                direction: ltr;
            }
        }

        /* Contact Form Styles */
        .about-contact-section {
            background-color: var(--slate);
            padding: var(--spacing-xl) 0;
            position: relative;
            overflow: hidden;
        }

        .about-contact-card {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 2rem;
            border-radius: 8px;
            backdrop-filter: blur(12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        @media (min-width: 768px) {
            .about-contact-card {
                padding: 4rem;
            }
        }

        .about-contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-contact-header h2 {
            color: var(--white);
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }

        .about-contact-header p {
            color: #94A3B8;
            font-size: 1.1rem;
        }

        .about-contact-form .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .about-contact-form .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .about-contact-form .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .about-contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--offwhite);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 700;
        }

        .about-contact-form input,
        .about-contact-form textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
            border-radius: 4px;
            font-family: var(--font-sans);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .about-contact-form input:focus,
        .about-contact-form textarea:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 15px rgba(249, 115, 22, 0.2);
            background: rgba(15, 23, 42, 0.8);
        }

        .about-submit-btn {
            width: 100%;
            margin-top: 1rem;
            font-size: 1.1rem;
            padding: 1.2rem;
        }

/* === Page-specific styles added by sub-page: Kontakta oss === */
/* Page-specific styles for Contact Us */
        .contact-page-hero {
            background-color: var(--offwhite);
            padding: 180px 0 4rem;
            text-align: center;
        }
        
        .contact-page-hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            color: var(--slate);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        
        .contact-page-hero p {
            font-size: 1.2rem;
            color: #475569;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .contact-info-section {
            background-color: var(--offwhite);
            padding-bottom: var(--spacing-xl);
        }
        
        .contact-info-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        @media (min-width: 768px) {
            .contact-info-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .contact-info-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-bottom: 4px solid transparent;
        }
        
        .contact-info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-bottom-color: var(--orange);
        }
        
        .contact-info-card h3 {
            color: var(--slate);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        
        .contact-info-card p {
            color: #64748B;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        .contact-info-link {
            color: var(--orange);
            font-weight: 700;
            letter-spacing: 0.05em;
            font-size: 0.95rem;
            display: inline-block;
            position: relative;
            text-decoration: none;
        }
        
        .contact-info-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s ease;
        }
        
        .contact-info-link:hover::after {
            width: 100%;
        }

        /* Select styling to match existing inputs */
        select:focus {
            outline: none;
            border-color: var(--orange) !important;
            box-shadow: 0 0 15px rgba(249, 115, 22, 0.2);
            background: rgba(15, 23, 42, 0.8) !important;
        }

.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    max-width: none !important;
    height: 100vh !important;
    background-color: var(--slate) !important;
    z-index: 1000 !important;
    padding: 2rem !important;
    transition: right 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5) !important;
  padding-top: 6rem !important;
}
.mobile-menu.active {
    right: 0 !important;
}
.mobile-menu-close {
    align-self: flex-end !important;
    background: none !important;
    border: none !important;
    color: var(--white) !important;
    font-size: 2.5rem !important;
    cursor: pointer !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.mobile-nav-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    font-size: 1.5rem !important;
}
.mobile-nav-links a {
    color: var(--white) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}
@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.pricing-tier-grid {
  display: flex !important;
  gap: 2rem !important;
  justify-content: center !important;
}

.pricing-tier-grid {
  flex-wrap: wrap !important;
}

/* === Page-specific styles added by sub-page: Pricing === */
/* Page-Specific Styles for Pricing */
        .pricing-page-wrapper {
            padding: 160px 0 var(--spacing-xl);
            background-color: var(--slate);
            position: relative;
            overflow: hidden;
            min-height: 80vh;
        }

        /* Geometric Background Accents */
        .pricing-page-wrapper::before {
            content: '';
            position: absolute;
            top: -200px;
            left: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, rgba(15, 23, 42, 0) 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }
        .pricing-page-wrapper::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -150px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(242, 162, 195, 0.06) 0%, rgba(15, 23, 42, 0) 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        .pricing-page-wrapper .container {
            position: relative;
            z-index: 1;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 5rem;
        }
        
        .pricing-header h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            color: var(--white);
            letter-spacing: -0.02em;
        }
        
        .pricing-header p {
            font-size: 1.2rem;
            color: #94A3B8;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Overrides for the grid to ensure 3 in a row */
        .pricing-tier-grid {
            align-items: stretch;
            margin: 0 auto;
            max-width: 1200px;
        }

        .pricing-tier-grid > .pricing-card {
            flex: 1 1 300px;
            max-width: 380px;
            display: flex;
            flex-direction: column;
            margin: 0; 
            text-align: left;
            padding: 3rem 2.5rem;
        }

        .pricing-card h2 {
            text-align: center;
            font-size: 2rem;
        }

        .pricing-card .price {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .price-period {
            font-size: 1.2rem;
            color: #64748B;
            font-weight: 400;
        }

        .tier-desc {
            text-align: center;
            color: #94A3B8;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            font-size: 1rem;
            min-height: 3rem;
        }

        .pricing-card .btn {
            margin-top: auto;
            width: 100%;
        }

        /* Custom Tier Styling */
        .pricing-card-basic {
            border-color: rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.02);
            box-shadow: none;
        }
        .pricing-card-basic:hover {
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1) !important;
            border-color: rgba(255,255,255,0.3);
            transform: translateY(-5px);
        }
        .pricing-card-basic .price {
            color: var(--white);
        }
        .btn-basic {
            color: var(--white);
            border-color: rgba(255,255,255,0.3);
        }
        .btn-basic:hover {
            background-color: var(--white);
            color: var(--slate);
            border-color: var(--white);
        }

        .pricing-card-popular {
            transform: scale(1.05);
            z-index: 2;
            background: rgba(15, 23, 42, 0.8);
            box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important;
        }
        .pricing-card-popular:hover {
            transform: scale(1.05) translateY(-10px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1) !important;
}
        @media (max-width: 1024px) {
            .pricing-card-popular {
                transform: scale(1);
            }
            .pricing-card-popular:hover {
                transform: translateY(-10px);
            }
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--orange);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
            white-space: nowrap;
        }

        .pricing-card-premium {
            border-color: rgba(242, 162, 195, 0.5);
            background: rgba(242, 162, 195, 0.03);
        }
        .pricing-card-premium:hover {
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1) !important;
            border-color: var(--pink);
            transform: translateY(-5px);
        }
        .pricing-card-premium .price {
            color: var(--pink);
        }
        .btn-premium {
            color: var(--pink);
            border-color: var(--pink);
        }
        .btn-premium:hover {
            background-color: var(--pink);
            color: var(--slate);
        }

        /* Checkmark list style overrides */
        .pricing-features {
            margin-bottom: 2.5rem;
        }
        .pricing-features li {
            position: relative;
            padding-left: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            color: #CBD5E1;
            font-size: 1.05rem;
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
        }
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--orange);
            font-weight: bold;
            font-size: 1.2rem;
        }
        .pricing-card-premium .pricing-features li::before {
            color: var(--pink);
        }
        .pricing-card-basic .pricing-features li::before {
            color: #94A3B8;
        }

        /* FAQ Section */
        .pricing-faq {
            background-color: var(--slate);
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 6rem 0;
            text-align: center;
        }
        .faq-content {
            max-width: 700px;
            margin: 0 auto;
        }
        .faq-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }
        .faq-content p {
            font-size: 1.15rem;
            color: #94A3B8;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        .faq-action {
            margin-top: 2rem;
        }
        .faq-action .contact-info-link {
            color: var(--pink);
            font-size: 1.1rem;
        }
        .faq-action .contact-info-link::after {
            background: var(--pink);
        }