/* Self-hosted font swap fallback */
/* Add @font-face blocks if self-hosting later */
/* Visionary Video App - Design System ("Classic Chic" Dark Mode) */

:root {
    /* Color Palette */
    --color-bg: #050505;
    /* Deepest black */
    --color-bg-soft: #0e0e0e;
    /* Slightly lighter for cards */
    --color-accent: #caeb01;
    /* Neon Lime */
    --color-accent-glow: rgba(202, 235, 1, 0.3);
    --color-text-main: #f0f0f0;
    /* Off-white for less harsh contrast */
    --color-text-muted: #d0d0d0;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-glass: rgba(255, 255, 255, 0.02);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    /* Classic/Chic touch */
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --header-padding: 14px;
    --safe-area-top: env(safe-area-inset-top, 0px);
    --header-total-height: calc(var(--header-height) + (var(--header-padding) * 2) + var(--safe-area-top));
}

/* Skip Link for Accessibility - Only visible when focused (Tab key) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
}

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    overflow: visible;
    background: var(--color-accent);
    color: #000;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    opacity: 1;
    pointer-events: auto;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    overflow-anchor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Accessibility: Underline links in paragraphs */
p a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

p a:hover {
    text-decoration-color: var(--color-accent);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Glassmorphism */
.glass {
    background: var(--color-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
}

/* --- Testimonial Marquee --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: inline-flex;
    animation: scroll 60s linear infinite;
    gap: 24px;
}

.marquee-card {
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    /* Much clearer border */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    width: 400px;
    flex-shrink: 0;
    white-space: normal;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    /* Deep shadow + Inner highlight */
    position: relative;
    overflow: hidden;
}

.marquee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(145deg, rgba(202, 235, 1, 0.03) 0%, transparent 100%);
    /* Subtle global tint */
    opacity: 1;
    pointer-events: none;
}

.marquee-card:hover {
    transform: translateY(-8px);
    border-color: rgba(202, 235, 1, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(202, 235, 1, 0.1);
}

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

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- Laurel Wreath Header --- */
.trusted-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.laurel-icon {
    width: 48px;
    height: 48px;
    fill: var(--color-accent);
    opacity: 0.8;
}

.trusted-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    text-align: center;
}

.trusted-subtitle {
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 10px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    /* Body font for buttons looks cleaner */
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 100px;
    /* Sadece hover için gerekli özellikler - sayfa yüklenirken animasyon olmaz */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #000;
    border: 1px solid var(--color-accent);
    /* Subtle glow instead of heavy shadow */
    box-shadow: 0 0 20px rgba(202, 235, 1, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(202, 235, 1, 0.3);
    background-color: #d4f500;
    /* Slightly lighter on hover */
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

/* =========================================
   Header & Navigation Redesign (Final Fix) 
   ========================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--header-total-height);
    height: auto;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    /* High opacity */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: calc(var(--header-padding) + var(--safe-area-top)) 0 var(--header-padding);
}

header .container {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav {
    min-height: var(--header-height);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1002;
    flex-shrink: 0;
}

.logo img:first-child {
    width: 32px;
    height: 32px;
}

.logo img:nth-child(2) {
    height: 28px;
    width: auto;
}

/* Nav Links Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    height: auto;
    position: relative;
    flex: 1 1 520px;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
    /* Context for absolute children if needed */
}

/* Top Level Links */
.nav-links>a,
.nav-dropdown-toggle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-weight: 600;
    transition: color 0.2s ease;
    padding: 10px 0;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 6px;
    line-height: 1.2;
}

.btn-app-store {
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 18px;
    }

    .nav-links>a,
    .nav-dropdown-toggle {
        font-size: 0.78rem;
        letter-spacing: 0.6px;
    }

    .logo img:nth-child(2) {
        height: 24px;
    }

    .btn-app-store img {
        height: 54px;
    }
}

.nav-links>a:hover,
.nav-dropdown-toggle:hover,
.nav-links>a.active {
    color: #fff;
}

/* Dropdown Wrapper */
.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Dropdown Menu - The Critical Part */
.nav-dropdown-menu {
    /* Layout & Positioning */
    display: none;
    /* Default state: HIDDEN */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    /* Appearance */
    background: #0a0a0a;
    /* Solid black to prevent transparency issues */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);

    /* Content Layout */
    flex-direction: column;
    gap: 2px;
    z-index: 10001;
}

/* Triangle/Arrow */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #0a0a0a;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Show on Hover */
.nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
    /* Changed from block to flex for column layout */
    animation: fadeInSlide 0.2s ease-out forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Dropdown Items */
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: #bbb;
    text-transform: none;
    /* Regular case for submenu */
    font-weight: 500;
    letter-spacing: 0;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(202, 235, 1, 0.1);
    color: var(--color-accent);
}

/* Mobile Toggle (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
}

.nav-dropdown-menu a svg {
    margin-right: 10px;
    opacity: 0.7;
}

.nav-dropdown-menu a:hover svg {
    opacity: 1;
    color: var(--color-accent);
}

/* Specific highlight for 'Pro' items or main tools if we want later */
.nav-dropdown-menu a.highlight {
    color: var(--color-accent) !important;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-total-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(202, 235, 1, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: -1;
    contain: layout style paint;
    will-change: transform;
}

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

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 400;
    /* Lighter weight for chic look */
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Feature Grid (Bento Box) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* grid-template-rows: auto; Remove fixed rows, let content dictate */
    gap: 24px;
    margin: 80px 0;
}

.feature-card {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    /* Clickable */
}

.feature-card:hover {
    border-color: rgba(202, 235, 1, 0.2);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
}

.feature-card h3 {
    font-family: var(--font-body);
    /* Keep UI text clean */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Grid Spans */
.col-span-12 {
    grid-column: span 12;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-6 {
    grid-column: span 6;
}

.col-span-4 {
    grid-column: span 4;
}

/* Custom Icons (Abstract/Thin) */
.icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.icon-box svg {
    stroke-width: 1.5px;
    /* Thin lines */
}

/* Image Card Style - Blog tarzı fotoğraf içinde title */
.image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.image-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.image-card .card-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Style Cards Grid */
.style-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .style-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .style-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Fixed Product Hunt Badge */
.ph-badge-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.ph-badge-fixed:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .features-grid {
        display: flex;
        flex-direction: column;
    }

    .hero {
        padding-top: 120px;
    }

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

    .ph-badge-fixed {
        bottom: 20px;
        right: 20px;
        transform: scale(0.8);
        transform-origin: bottom right;
    }
}

/* --- Sticky Mobile CTA (Item 33) --- */
.sticky-mobile-cta {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px 30px;
    /* Extra padding for iPhone home indicator */
    z-index: 9998;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: space-between;
}

.sticky-mobile-cta .cta-text {
    display: flex;
    flex-direction: column;
}

.sticky-mobile-cta strong {
    color: #fff;
    font-size: 0.95rem;
}

.sticky-mobile-cta span {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.sticky-mobile-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
        animation: slideUp 0.5s ease-out 2s forwards;
        /* Delay appearing */
        transform: translateY(100%);
    }
}

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

/* --- Exit Intent Popup (Item 34) --- */
.exit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.exit-modal {
    background: #111;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.exit-modal-overlay.active .exit-modal {
    transform: scale(1);
}

.exit-modal h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.exit-modal p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.exit-close:hover {
    color: #fff;
}

/* --- Sticky Mobile CTA (Item 33) --- */
.sticky-mobile-cta {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px 30px;
    /* Extra padding for iPhone home indicator */
    z-index: 9998;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: space-between;
}

.sticky-mobile-cta .cta-text {
    display: flex;
    flex-direction: column;
}

.sticky-mobile-cta strong {
    color: #fff;
    font-size: 0.95rem;
}

.sticky-mobile-cta span {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.sticky-mobile-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
        animation: slideUp 0.5s ease-out 2s forwards;
        /* Delay appearing */
        transform: translateY(100%);
    }
}

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

/* --- Exit Intent Popup (Item 34) --- */
.exit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.exit-modal {
    background: #111;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.exit-modal-overlay.active .exit-modal {
    transform: scale(1);
}

.exit-modal h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.exit-modal p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.exit-close:hover {
    color: #fff;
}

/* =========================================
   Pricing Section Redesign (Apple-esque) 
   ========================================= */
.pricing-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px 32px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(202, 235, 1, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 20px rgba(202, 235, 1, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(202, 235, 1, 0.02) 100%);
    border-color: rgba(202, 235, 1, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.5;
}

.plan-badge {
    position: absolute;
    top: 24px;
    right: 32px;
    background: var(--color-accent);
    color: #000;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ddd;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li svg {
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.buy-button {
    width: 100%;
    text-align: center;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Partner/Directory Badges (Subtle) --- */
.partner-badge {
    margin-top: 20px;
    text-align: center;
    opacity: 0.15;
    /* Very subtle by default */
    transition: opacity 0.3s ease;
}

.partner-badge:hover {
    opacity: 1;
}

.partner-badge img {
    width: 140px;
    height: auto;
    filter: grayscale(100%);
    /* Black and white to blend in */
    transition: filter 0.3s ease;
}

.partner-badge:hover img {
    filter: none;
    /* Restore color on hover */
}

/* Non-English header cleanup */
html:not([lang="en"]) .nav-links > a[href*="#features"],
html:not([lang="en"]) .nav-links > a[href*="/blog"] {
  display: none !important;
}

html:not([lang="en"]) .btn-app-store img {
  height: 46px;
  width: auto;
  filter: none;
}
