:root {
    --bg-color: #ffffff;
    --bg-light: #faf7ff;
    --accent: #7b3fb0;
    --accent-dark: #4a2680;
    --accent-glow: rgba(123, 63, 176, 0.18);
    --secondary: #ff7a00;
    --secondary-dark: #e25d00;
    --tertiary: #fbbf24;
    --text-primary: #2a1746;
    --text-secondary: #5a4b78;
    --text-muted: #8a82a8;
    --border: #ece4f5;
    --success: #22c55e;
    --danger: #ef4444;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.header.scrolled {
    border-bottom: 1px solid var(--border);
    padding: 6px 0;
    box-shadow: var(--shadow-sm);
}

.header.scrolled .logo {
    height: 48px;
}

.header.scrolled .logo-img {
    height: 72px;
    top: -6px;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    width: 180px;
    height: 58px;
    position: relative;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    position: absolute;
    top: -8px;
    left: 0;
    z-index: 1001;
}

/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 20px 0;
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 24px;
    height: 3px;
    border-radius: 99px;
    background: var(--secondary);
    transform: translateX(-50%);
}

.nav-arrow {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover > .nav-link,
.nav-dropdown:hover > .nav-link .nav-arrow {
    color: var(--accent);
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(42, 23, 70, 0.18), 0 4px 12px rgba(42, 23, 70, 0.08);
    border: 1px solid #ece4f5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 1001;
}

.nav-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid #ece4f5;
    border-top: 1px solid #ece4f5;
    border-radius: 3px 0 0 0;
}

.nav-menu-wide {
    min-width: 280px;
}

.nav-dropdown:hover .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-menu-item {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.nav-menu-item:hover {
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    color: #fff;
}

.nav-menu-item:first-child {
    /* keep visual flow */
}

.nav-menu-divider {
    display: block;
    height: 1px;
    background: #ece4f5;
    margin: 6px 8px;
}

.nav-menu-all {
    color: var(--accent);
    font-weight: 600;
}

.pricing-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 4px;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 32px;
    flex-shrink: 0;
}

.header-contact-btn {
    width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(74, 38, 128, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.header-contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(74, 38, 128, 0.3);
}

.header-cta-primary {
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    color: #fff;
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta-primary:hover {
    box-shadow: 0 4px 16px rgba(123, 63, 176, 0.35);
    transform: translateY(-1px);
}

.header-cta-outline {
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(123, 63, 176, 0.1);
}

/* ===== PROMO BAR ===== */
.promo-bar {
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    color: #fff;
    text-align: center;
    padding: 0 20px;
    min-height: 42px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 86px;
}

.promo-bar .material-icons-outlined {
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
    padding: 42px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-color) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 63, 176, 0.08);
    border: 1px solid rgba(123, 63, 176, 0.2);
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 32px;
}

.hero-badge .material-icons-outlined {
    font-size: 18px;
    color: var(--accent);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ===== VIDEO — 1440px wide ===== */
.video-section {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    padding: 0;
}

.video-card {
    background: var(--bg-color);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 1440px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition:
        box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.8s ease,
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-card:hover {
    border-color: rgba(123, 63, 176, 0.7);
    transform: translateY(-3px);
    box-shadow:
        0 0 40px rgba(123, 63, 176, 0.7),
        0 0 80px rgba(123, 63, 176, 0.55),
        0 0 140px rgba(123, 63, 176, 0.4),
        0 0 200px rgba(123, 63, 176, 0.25),
        0 0 280px rgba(123, 63, 176, 0.12),
        0 30px 70px rgba(0, 0, 0, 0.12);
}

.video-header {
    background: var(--accent);
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.video-header .material-icons-outlined {
    font-size: 18px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* ===== CTA BUTTON ===== */
.cta-section {
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent);
    border: none;
    padding: 18px 64px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 0 var(--accent-dark), 0 15px 30px rgba(123, 63, 176, 0.3);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    top: 0;
}

.cta-button:hover {
    top: 3px;
    box-shadow: 0 5px 0 var(--accent-dark), 0 20px 40px rgba(123, 63, 176, 0.4);
    background: #a55edb;
}

.cta-button:active {
    top: 6px;
    box-shadow: 0 2px 0 var(--accent-dark);
}

.cta-button .material-icons-outlined {
    color: #fff;
    font-size: 20px;
    margin-bottom: 2px;
}

.btn-text {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 2px;
}

/* ===== HERO CONTENT GRID (below video) ===== */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 96px;
    align-items: center;
    margin: 96px 0 96px;
    text-align: left;
}

.hero-content-left .hero-title {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
    color: var(--text-primary);
    text-align: left;
}

.hero-content-left .hero-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 48px;
    max-width: none;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid var(--accent);
}

.hero-btn-outline {
    background: transparent;
    color: var(--accent);
}

.hero-btn-outline:hover {
    background: rgba(123, 63, 176, 0.08);
    transform: translateY(-2px);
}

.hero-btn-primary {
    background: var(--accent-dark);
    color: #fff;
    border-color: var(--accent-dark);
    box-shadow: 0 8px 20px rgba(74, 38, 128, 0.25);
}

.hero-btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(123, 63, 176, 0.35);
}

.hero-social-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-social-row .avatar-stack {
    display: flex;
}

.hero-social-row .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hero-social-row .avatar:first-child {
    margin-left: 0;
}

.hero-social-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stars {
    display: flex;
    gap: 1px;
    color: #f59e0b;
}

.hero-stars .material-icons-outlined {
    font-size: 16px;
}

.hero-social-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-content-left .hero-title,
    .hero-content-left .hero-subtitle {
        text-align: center;
    }
    .hero-content-left .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-social-row {
        justify-content: center;
    }
}

.contact-card {
    position: relative;
    background: linear-gradient(135deg, #a55edb 0%, var(--accent) 50%, #0284c7 100%);
    border-radius: 24px;
    padding: 56px 56px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(123, 63, 176, 0.35), 0 8px 20px rgba(123, 63, 176, 0.2);
}

.contact-card::before,
.contact-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.contact-card::before {
    width: 220px;
    height: 220px;
    top: -80px;
    right: -60px;
}

.contact-card::after {
    width: 160px;
    height: 160px;
    bottom: -60px;
    left: -40px;
}

.contact-card-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 2;
}

.contact-card-badge .material-icons-outlined {
    font-size: 14px;
    color: #fbbf24;
}

.contact-card-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 10px 24px rgba(74, 38, 128, 0.35);
}

.contact-card-icon .material-icons-outlined {
    font-size: 32px;
    color: var(--accent);
}

.contact-card-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 18px;
    letter-spacing: -0.3px;
}

.contact-card-subtitle {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.75;
    margin: 0 auto 40px;
    max-width: none;
}

.contact-card-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent-dark);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.contact-card-button .material-icons-outlined {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.contact-card-button:hover .material-icons-outlined {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .contact-card {
        padding: 36px 24px;
    }
    .contact-card-badge {
        position: static;
        margin-bottom: 16px;
    }
    .contact-card-title {
        font-size: 1.3rem;
    }
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.avatar-container {
    display: flex;
    align-items: center;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}


/* ===== SECTION COMMON ===== */
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 48px;
}

/* ===== FEATURES ===== */
.features-section {
    padding: 100px 0;
    text-align: center;
}

.features-badge {
    display: inline-block;
    background: rgba(123, 63, 176, 0.08);
    color: #7b3fb0;
    padding: 6px 20px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.features-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    text-align: left;
}

.features-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 100%;
    padding-bottom: 40vh;
}

.features-right {
    flex: 1;
    position: relative;
    align-self: stretch;
}

.feature-preview-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Cards */
.feature-card {
    background: var(--bg-color);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: default;
}

.feature-card.active {
    border-color: rgba(123, 63, 176, 0.3);
    box-shadow: 0 8px 30px rgba(123, 63, 176, 0.08);
    background: var(--bg-color);
}

.feature-card:not(.active) {
    opacity: 0.55;
}

.feature-card:not(.active):hover {
    opacity: 0.8;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(123, 63, 176, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card.active .feature-icon-wrap {
    background: rgba(123, 63, 176, 0.12);
}

.feature-icon-wrap .material-icons-outlined {
    color: #7b3fb0;
    font-size: 24px;
}

.feature-content {
    flex: 1;
}

.feature-number {
    font-size: 0.72rem;
    font-weight: 700;
    color: #a55edb;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    color: var(--text-primary);
}

.feature-card.active h3 {
    color: #7b3fb0;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ===== FEATURE PREVIEWS ===== */
.feature-preview {
    display: none;
    position: relative;
    animation: previewFadeIn 0.5s ease;
}

.feature-preview.active {
    display: block;
    width: 100%;
}

.service-photo-panel {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(74, 38, 128, 0.13);
}

.service-photo-main {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5e6, #f6f1fc);
}

.service-photo-main img,
.service-photo-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-photo-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(42, 23, 70, 0.18);
}

.service-photo-caption {
    padding: 22px 24px 18px;
}

.service-photo-kicker {
    display: block;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-photo-caption h3 {
    margin: 0 0 8px;
    color: var(--text-primary);
    font-size: 1.35rem;
    line-height: 1.2;
}

.service-photo-caption p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.65;
}

.service-photo-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 24px 24px;
}

.service-photo-thumbs img {
    aspect-ratio: 16/10;
    border-radius: 14px;
}

@keyframes previewFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.preview-mockup {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #facc15; }
.mockup-dot.green { background: #22c55e; }

.mockup-title {
    margin-left: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mockup-body {
    padding: 24px;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Floating pills */
.preview-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: floatBounce 3s ease-in-out infinite;
    white-space: nowrap;
}

.preview-float .material-icons-outlined {
    font-size: 18px;
}

.float-1 {
    top: 40px; right: -30px;
    color: var(--success);
}
.float-1 .material-icons-outlined { color: var(--success); }

.float-2 {
    bottom: 60px; left: -20px;
    color: #f59e0b;
}
.float-2 .material-icons-outlined { color: #f59e0b; }

.float-3 {
    bottom: 30px; right: -20px;
    color: #7b3fb0;
}
.float-3 .material-icons-outlined { color: #7b3fb0; }

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

/* === Dashboard Mock === */
.dashboard-mock { padding: 12px; }
.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 10px;
}
.dash-summary {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}
.dash-summary-head {
    background: linear-gradient(135deg, #a55edb, #7b3fb0);
    color: #fff;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.dash-summary-title {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
}
.dash-summary-sub {
    font-size: 0.6rem;
    opacity: 0.9;
    margin-top: 4px;
}
.dash-summary-icon {
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 4px;
    font-size: 14px !important;
}
.dash-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
}
.dash-stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 8px;
    align-items: center;
}
.dash-stat-icon {
    grid-row: 1 / span 2;
    background: rgba(123, 63, 176, 0.1);
    color: #7b3fb0;
    border-radius: 6px;
    padding: 6px;
    font-size: 14px !important;
}
.dash-stat-num {
    font-size: 1rem;
    font-weight: 800;
    color: #7b3fb0;
    line-height: 1;
}
.dash-stat-label {
    font-size: 0.55rem;
    color: var(--text-muted);
}
.dash-quick-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 10px 10px;
}
.dash-quick {
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border: 1px dashed;
}
.dash-quick .material-icons-outlined {
    font-size: 14px !important;
    border-radius: 6px;
    padding: 4px;
}
.dash-quick strong {
    font-weight: 700;
    font-size: 0.65rem;
}
.dash-quick em {
    font-style: normal;
    font-size: 0.5rem;
    color: var(--text-muted);
    line-height: 1.2;
}
.dash-quick.purple { background: #f5f3ff; border-color: #c4b5fd; }
.dash-quick.purple .material-icons-outlined { background: #ede9fe; color: #7c3aed; }
.dash-quick.purple strong { color: #7c3aed; }
.dash-quick.blue { background: #eff6ff; border-color: #93c5fd; }
.dash-quick.blue .material-icons-outlined { background: #f1e8fb; color: #7b3fb0; }
.dash-quick.blue strong { color: #7b3fb0; }
.dash-quick.green { background: #ecfdf5; border-color: #86efac; }
.dash-quick.green .material-icons-outlined { background: #d1fae5; color: #16a34a; }
.dash-quick.green strong { color: #16a34a; }
.dash-quick.yellow { background: #fefce8; border-color: #fbbf24; }
.dash-quick.yellow .material-icons-outlined { background: #fef9c3; color: #ca8a04; }
.dash-quick.yellow strong { color: #ca8a04; }

.dash-appts {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
}
.dash-appts-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}
.dash-appts-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}
.dash-appts-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.dash-appts-btn {
    font-size: 0.58rem;
    color: var(--text-muted);
    background: #f3f4f6;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 8px;
    white-space: nowrap;
}
.dash-appt-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.9fr 0.8fr;
    gap: 6px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.62rem;
    color: var(--text-primary);
    align-items: center;
}
.dash-appt-row span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.dash-appt-row strong {
    font-weight: 600;
    font-size: 0.65rem;
}
.dash-appt-row em {
    font-style: normal;
    font-size: 0.55rem;
    color: var(--text-muted);
}
.dash-appt-head {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.dash-appt-head span {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 600;
}
.dash-appt-name {
    flex-direction: row !important;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.dash-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e2e8f0;
    flex-shrink: 0;
    display: inline-block;
}
.dash-appt-name strong {
    flex: 0 0 auto;
}
.dash-appt-name em {
    flex-basis: 100%;
    margin-left: 28px;
}

.mock-stat-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.mock-stat {
    flex: 1;
    background: var(--bg-light);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-secondary);
}
.mock-stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.mock-stat.highlight {
    background: rgba(123, 63, 176, 0.06);
    border: 1px solid rgba(123, 63, 176, 0.15);
}
.mock-stat.highlight span { color: #7b3fb0; }

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    padding-top: 10px;
}
.chart-bar {
    flex: 1;
    background: #e2e8f0;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s;
}
.chart-bar.active {
    background: linear-gradient(180deg, #7b3fb0, #a55edb);
}

/* === Calendar Mock === */
.calendar-mock { padding: 12px 14px; }
.cal-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}
.cal-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}
.cal-sub {
    font-size: 0.66rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.cal-list-btn {
    font-size: 0.62rem;
    color: var(--text-muted);
    background: #f3f4f6;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 10px;
    white-space: nowrap;
}
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.cal-nav-left {
    display: flex;
    align-items: center;
    gap: 4px;
}
.cal-nav-btn {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1;
}
.cal-today {
    font-size: 0.6rem;
    color: var(--text-muted);
    background: #f3f4f6;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 8px;
}
.cal-range {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
}
.cal-views {
    display: flex;
    gap: 2px;
}
.cal-view {
    font-size: 0.58rem;
    color: var(--text-muted);
    padding: 4px 6px;
    border-radius: 4px;
}
.cal-view.active {
    background: rgba(123, 63, 176, 0.12);
    color: #7b3fb0;
    font-weight: 600;
}
.cal-week {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.cal-week-head {
    display: grid;
    grid-template-columns: 36px repeat(7, 1fr);
    background: #fafafa;
    border-bottom: 1px solid var(--border);
}
.cal-day-head {
    text-align: center;
    font-size: 0.56rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 2px;
    border-left: 1px solid var(--border);
}
.cal-week-body {
    display: grid;
    grid-template-columns: 36px repeat(7, 1fr);
    position: relative;
    height: 200px;
    overflow: hidden;
}
.cal-week-body .cal-time-col {
    border-right: 1px solid var(--border);
    background: #fafafa;
}
.cal-time {
    height: 22px;
    font-size: 0.54rem;
    color: var(--text-muted);
    padding: 2px 4px;
    text-align: right;
    border-bottom: 1px dashed var(--border);
}
.cal-day-col {
    border-left: 1px solid var(--border);
    position: relative;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 21px,
        var(--border) 21px,
        var(--border) 22px
    );
}
.cal-evt {
    position: absolute;
    left: 2px;
    right: 2px;
    border-radius: 4px;
    padding: 3px 4px;
    font-size: 0.5rem;
    color: #fff;
    line-height: 1.15;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.cal-evt strong {
    font-weight: 700;
    font-size: 0.5rem;
}
.cal-evt.green { background: #22c55e; }
.cal-evt.yellow { background: #f59e0b; }
.cal-evt.red { background: #ec4899; }
.cal-evt.blue { background: #7b3fb0; }

.cal-header {
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.cal-days {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}
.cal-days span {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.cal-event {
    padding: 6px 4px;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 600;
    text-align: center;
    min-height: 36px;
}
.cal-event.green { background: rgba(34,197,94,0.12); color: #16a34a; }
.cal-event.blue { background: rgba(123, 63, 176,0.1); color: #7b3fb0; }
.cal-event.orange { background: rgba(245,158,11,0.12); color: #d97706; }
.cal-event.purple { background: rgba(139,92,246,0.12); color: #7c3aed; }
.cal-event.empty { background: var(--bg-light); }

/* === List Mock === */
.list-mock { padding: 14px 16px; }
.list-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.list-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}
.list-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.list-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.list-filter {
    font-size: 0.62rem;
    color: var(--text-muted);
    background: #f3f4f6;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    white-space: nowrap;
}
.list-filter.list-search {
    min-width: 70px;
}
.list-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.9fr 1fr 0.8fr;
    gap: 8px;
    padding: 10px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 0.7rem;
    color: var(--text-primary);
    align-items: center;
}
.list-row span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.list-row strong {
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--text-primary);
}
.list-row em {
    font-style: normal;
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.list-row.header-row {
    padding: 8px 4px;
    background: transparent;
    border-bottom: 1px solid var(--border);
}
.list-row.header-row span {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.6rem;
    text-transform: none;
    letter-spacing: 0.2px;
}
.badge {
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.62rem;
    font-weight: 600;
    text-align: center;
    display: inline-block !important;
    width: fit-content;
}
.badge.done { background: rgba(34,197,94,0.12); color: #16a34a; }
.badge.waiting { background: rgba(245,158,11,0.12); color: #d97706; }
.badge.active-b { background: rgba(123, 63, 176,0.12); color: #7b3fb0; }
.badge.cancelled { background: rgba(244,63,94,0.12); color: #e11d48; }

/* === Form Mock === */
.form-mock { padding: 0; }
.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
}
.modal-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
}
.modal-close {
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
}
.modal-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 12px;
    padding: 12px 14px;
}
.modal-form .form-field {
    margin-bottom: 10px;
}
.modal-form label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.modal-form .req { color: #ef4444; }
.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.label-row label { margin-bottom: 0; }
.add-patient {
    font-size: 0.55rem;
    color: #fff;
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    border-radius: 5px;
    padding: 3px 7px;
    font-weight: 600;
}
.form-input {
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 0.65rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 26px;
}
.form-input.placeholder { color: #9ca3af; }
.form-input .caret { font-size: 14px !important; color: var(--text-muted); }
.form-row {
    display: flex;
    gap: 8px;
}
.form-row .form-field { flex: 1; }
.form-row .form-field-sm { flex: 0 0 80px; }
.form-stepper {
    justify-content: space-between;
    padding: 4px 8px;
}
.form-stepper span:not(.step-num) {
    color: var(--text-muted);
    font-weight: 700;
    cursor: pointer;
}
.step-num {
    font-weight: 700;
    color: var(--text-primary);
}

.modal-slots {
    border-left: 1px solid var(--border);
    padding-left: 12px;
    display: flex;
    flex-direction: column;
}
.slots-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 6px;
}
.slots-date {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-primary);
}
.slots-refresh {
    font-size: 0.55rem;
    color: #fff;
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    border-radius: 5px;
    padding: 3px 7px;
    font-weight: 600;
}
.slots-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-height: 200px;
    overflow: hidden;
}
.slot {
    font-size: 0.62rem;
    color: var(--text-primary);
    padding: 5px 8px;
    border-radius: 4px;
    text-align: left;
}
.slot.active {
    background: #7b3fb0;
    color: #fff;
    font-weight: 700;
}
.modal-foot {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid var(--border);
}
.modal-btn {
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 7px 16px;
}
.modal-btn.cancel {
    color: var(--text-muted);
    background: #f3f4f6;
}
.modal-btn.save {
    color: #fff;
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
}

.form-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.form-btn {
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-top: 8px;
}

/* === Patient Mock === */
.patient-mock { padding: 20px; }
.patient-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.patient-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
}
.patient-header strong {
    display: block;
    font-size: 1rem;
}
.patient-header span {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.patient-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.patient-info > div {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.patient-info label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}
.patient-info span {
    font-size: 0.82rem;
    color: var(--text-primary);
    font-weight: 500;
}
.patient-notes label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}
.note-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === Report Mock === */
.report-mock { padding: 20px; }
.report-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
}
.report-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.report-stats > div {
    flex: 1;
    background: var(--bg-light);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}
.r-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.r-num.up { color: #16a34a; }
.report-stats label {
    font-size: 0.68rem;
    color: var(--text-muted);
}
.report-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.r-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.r-bar-row > span:first-child { width: 70px; font-weight: 500; }
.r-bar-row > span:last-child { width: 45px; text-align: right; font-weight: 600; color: var(--text-primary); }
.r-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
}
.r-bar div {
    height: 100%;
    background: linear-gradient(90deg, #7b3fb0, #a55edb);
    border-radius: 99px;
}

/* ===== INTEGRATIONS ===== */
.integrations-section {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-light);
}

.integrations-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 24px;
    background: var(--bg-color);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
}

.integration-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.integration-item.active {
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(123, 63, 176, 0.25);
}

.integration-item.active .material-icons-outlined {
    color: #fff;
}

.integration-item .material-icons-outlined {
    font-size: 24px;
    color: var(--accent);
}

.integration-item svg {
    opacity: 0.6;
}

.integration-item:hover svg {
    opacity: 1;
}

/* Brand cards panel */
.brands-panel {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.brands-panel.active {
    display: grid;
    animation: brandsFadeIn 0.35s ease;
}

@keyframes brandsFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.brand-card {
    aspect-ratio: 1 / 1;
    background: var(--bg-color);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.2s ease;
    position: relative;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent 0 18px,
        rgba(123, 63, 176, 0.04) 18px 19px
    );
    border-radius: 16px;
    pointer-events: none;
}

.brand-card:hover {
    border-color: rgba(123, 63, 176, 0.3);
    box-shadow: 0 8px 24px rgba(123, 63, 176, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .brands-panel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .brands-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== WHY SUPERBILIM ===== */
.why-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #faf7ff 0%, #f3ecfb 100%);
    overflow: hidden;
}

.why-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
}

.why-bg-orb-1 {
    top: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, #c79df0, transparent 70%);
}

.why-bg-orb-2 {
    bottom: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #a55edb, transparent 70%);
    opacity: 0.3;
}

.why-header {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto 56px;
}

.why-badge {
    display: inline-block;
    background: rgba(123, 63, 176, 0.1);
    color: #7b3fb0;
    padding: 6px 20px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 32px 26px 30px;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7b3fb0, #a55edb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px rgba(123, 63, 176, 0.14),
        0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: rgba(123, 63, 176, 0.18);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 10px 24px rgba(123, 63, 176, 0.28);
}

.why-icon .material-icons-outlined {
    font-size: 28px;
}

.why-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.why-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

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

@media (max-width: 600px) {
    .why-section {
        padding: 80px 0;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .why-card {
        padding: 28px 22px;
    }
}

/* ===== STATS ===== */
.stats-section {
    padding: 80px 0 80px;
    background: var(--bg-color);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--bg-color);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    position: relative;
}

/* Alt çizgi */
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #7b3fb0, #a55edb);
    border-radius: 99px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card:hover {
    border-color: rgba(123, 63, 176, 0.15);
    box-shadow:
        0 8px 30px rgba(123, 63, 176, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -1px;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 14px;
}

/* ===== PRICING ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

/* Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.toggle-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--text-primary);
}

.save-badge {
    background: rgba(255, 122, 0, 0.12);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-left: 6px;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--border);
    border-radius: 28px;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
    background: #7b3fb0;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

/* Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
    max-width: 1050px;
    margin: 0 auto;
}

/* Base card */
.pricing-card {
    background: var(--bg-color);
    border: 1px solid var(--border);
    padding: 44px 36px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

/* Plan Ribbons (sağ üst köşe bayrakları) */
.plan-ribbon {
    position: absolute;
    top: 0;
    right: 22px;
    width: 50px;
    padding: 14px 0 24px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.4px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
    z-index: 3;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
    line-height: 1;
}

.ribbon-start {
    background: linear-gradient(180deg, #a55edb 0%, #7b3fb0 100%);
}

.plan-ribbon-img {
    position: absolute;
    top: 0;
    right: 22px;
    width: 56px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
}

.ribbon-pro {
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.ribbon-plus {
    background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
}

.pricing-card:first-child {
    border-radius: 20px 0 0 20px;
    border-right: none;
}

.pricing-card:last-child {
    border-radius: 0 20px 20px 0;
    border-left: none;
}

/* Plan icon */
.plan-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.plan-icon-wrap .material-icons-outlined {
    font-size: 26px;
}

.tier-start-icon {
    background: rgba(100, 116, 139, 0.08);
}
.tier-start-icon .material-icons-outlined { color: #64748b; }

.tier-pro-icon {
    background: rgba(123, 63, 176, 0.1);
}
.tier-pro-icon .material-icons-outlined { color: #7b3fb0; }

.tier-plus-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.12));
}
.tier-plus-icon .material-icons-outlined {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Plan name */
.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.plan-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Price */
.price-display {
    margin-bottom: 6px;
    text-align: left;
}

.old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}

.price-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1;
}

.price-meta {
    display: flex;
    flex-direction: column;
    padding-bottom: 6px;
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.annual-savings {
    font-size: 0.78rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 24px;
    text-align: left;
}

/* CTA buttons */
.plan-cta {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.tier-start-cta {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}
.tier-start-cta:hover {
    border-color: #94a3b8;
    background: #f1f5f9;
}

.tier-pro-cta {
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    color: #fff;
    box-shadow: 0 6px 0 #4a2680, 0 12px 30px rgba(123, 63, 176, 0.3);
    position: relative;
    top: 0;
}
.tier-pro-cta:hover {
    top: 3px;
    box-shadow: 0 3px 0 #4a2680, 0 8px 20px rgba(123, 63, 176, 0.4);
}

.tier-plus-cta {
    position: relative;
    top: 0;
}

/* Divider & includes */
.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0 20px;
}

.plan-includes {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: left;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature list */
.pricing-features {
    list-style: none;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    display: block;
    padding: 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

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

.pricing-features .material-icons-outlined {
    font-size: 18px;
    color: var(--success);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.55;
}

.pricing-features li.disabled .feat-check {
    color: var(--text-muted);
}

.feature-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    font-family: inherit;
    transition: color 0.2s ease;
}

.feature-btn:hover {
    color: #7b3fb0;
}

.feature-name {
    flex: 1;
}

.feat-arrow {
    color: var(--text-muted) !important;
    transition: transform 0.3s ease;
}

.feature-item.open .feat-arrow {
    transform: rotate(180deg);
    color: #7b3fb0 !important;
}

.feature-item.open .feature-btn {
    color: #7b3fb0;
}

.feature-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.feature-item.open .feature-desc {
    max-height: 300px;
    transition: max-height 0.4s ease;
}

.feature-desc > p {
    margin: 8px 4px 10px 30px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.55;
    font-weight: 400;
    background: rgba(123, 63, 176, 0.05);
    border-radius: 10px;
}

/* ——— TIER: START (sade) ——— */
.tier-start {
    background: var(--bg-color);
}

.tier-start:hover {
    background: #fdfdfe;
}

/* ——— TIER: PRO (featured, ortadaki — mavi dolgu) ——— */
.tier-pro.featured {
    background: linear-gradient(180deg, #7b3fb0 0%, #4a2680 100%);
    border: 2px solid #7b3fb0;
    border-radius: 24px !important;
    z-index: 2;
    transform: scale(1.06);
    box-shadow:
        0 0 40px rgba(123, 63, 176, 0.25),
        0 20px 60px rgba(123, 63, 176, 0.22),
        0 0 0 1px rgba(123, 63, 176, 0.15);
    padding: 52px 40px;
}

.tier-pro.featured:hover {
    box-shadow:
        0 0 50px rgba(123, 63, 176, 0.35),
        0 24px 70px rgba(123, 63, 176, 0.28),
        0 0 0 1px rgba(123, 63, 176, 0.25);
    transform: scale(1.06) translateY(-4px);
}

.tier-pro.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.22) 0%, transparent 45%);
    border-radius: inherit;
    pointer-events: none;
}

.tier-pro.featured .tier-pro-icon {
    background: rgba(255, 255, 255, 0.18);
}

.tier-pro.featured .tier-pro-icon .material-icons-outlined {
    color: #fff;
}

.tier-pro.featured .plan-name {
    color: #fff;
}

.tier-pro.featured .plan-tagline {
    color: rgba(255, 255, 255, 0.78);
}

.tier-pro.featured .old-price {
    color: rgba(255, 255, 255, 0.6);
}

.tier-pro.featured .current-price {
    color: #fff;
}

.tier-pro.featured .price-currency {
    color: #fff;
}

.tier-pro.featured .price-period {
    color: rgba(255, 255, 255, 0.75);
}

.tier-pro.featured .annual-savings {
    color: #b9f5d1;
}

.tier-pro.featured .tier-pro-cta {
    background: #fff;
    color: #7b3fb0;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15), 0 12px 30px rgba(0, 0, 0, 0.15);
}

.tier-pro.featured .tier-pro-cta:hover {
    background: #f5f9ff;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.18);
}

.tier-pro.featured .plan-divider {
    background: rgba(255, 255, 255, 0.2);
}

.tier-pro.featured .plan-includes {
    color: rgba(255, 255, 255, 0.72);
}

.tier-pro.featured .pricing-features li {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.tier-pro.featured .pricing-features .feat-check {
    color: #fff;
}

.tier-pro.featured .pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.tier-pro.featured .pricing-features li.disabled .feat-check {
    color: rgba(255, 255, 255, 0.5);
}

.tier-pro.featured .feature-btn:hover,
.tier-pro.featured .feature-item.open .feature-btn {
    color: #fff;
}

.tier-pro.featured .feat-arrow {
    color: rgba(255, 255, 255, 0.55) !important;
}

.tier-pro.featured .feature-item.open .feat-arrow {
    color: #fff !important;
}

.tier-pro.featured .feature-desc > p {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 22px;
    background: linear-gradient(135deg, #ff7a00, #fbbf24);
    color: #fff;
    padding: 6px 22px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(255, 122, 0, 0.4);
    z-index: 3;
}

.popular-badge .material-icons-outlined {
    font-size: 16px;
    color: #fff;
}

/* Extras Block */
.extras-block {
    max-width: 1050px;
    margin: 72px auto 0;
    padding: 40px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f5f9ff 0%, #fafbff 100%);
    border: 1px dashed rgba(123, 63, 176, 0.25);
    position: relative;
}

.extras-header {
    text-align: center;
    margin-bottom: 28px;
}

.extras-chip {
    display: inline-block;
    background: #fff;
    color: #7b3fb0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 99px;
    border: 1.5px solid rgba(123, 63, 176, 0.25);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.extras-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.extra-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.extra-card:hover {
    border-color: rgba(123, 63, 176, 0.35);
    box-shadow: 0 10px 24px rgba(123, 63, 176, 0.08);
    transform: translateY(-3px);
}

.extra-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(123, 63, 176, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.extra-icon .material-icons-outlined {
    color: #7b3fb0;
    font-size: 22px;
}

.extra-card h4 {
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.extra-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 768px) {
    .extras-grid {
        grid-template-columns: 1fr;
    }
    .extras-block {
        padding: 28px 20px;
    }
}

/* ——— TIER: PRO+ (beyaz zemin, mavi çerçeve) ——— */
.tier-plus {
    background: #fff;
    border: 2px solid #7b3fb0 !important;
    border-radius: 20px 24px 24px 20px !important;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(123, 63, 176, 0.1),
        0 15px 40px rgba(123, 63, 176, 0.08);
}

.tier-plus:hover {
    box-shadow:
        0 0 40px rgba(123, 63, 176, 0.15),
        0 20px 50px rgba(123, 63, 176, 0.12);
    transform: translateY(-4px);
}

.plus-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 63, 176, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tier-plus-icon {
    background: rgba(123, 63, 176, 0.1) !important;
}

.tier-plus-icon .material-icons-outlined {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #7b3fb0 !important;
    background-clip: initial !important;
    color: #7b3fb0 !important;
}

.tier-plus .plan-name {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #7b3fb0;
}

.tier-plus .current-price {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #7b3fb0;
}

.tier-plus .pricing-features .material-icons-outlined {
    color: #7b3fb0;
}

.tier-plus .annual-savings {
    color: var(--success);
}

.tier-plus-cta {
    background: linear-gradient(135deg, #7b3fb0, #a55edb);
    color: #fff;
    box-shadow: 0 6px 0 #4a2680, 0 12px 30px rgba(123, 63, 176, 0.3);
}

.tier-plus-cta:hover {
    top: 3px;
    box-shadow: 0 3px 0 #4a2680, 0 8px 20px rgba(123, 63, 176, 0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    text-align: center;
}

.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4px;
}

.testimonials-header .section-title {
    margin-bottom: 0;
    line-height: 1;
}

.testimonials-header .material-icons-outlined {
    color: var(--accent);
    font-size: 32px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.stars .material-icons-outlined {
    color: #facc15;
    font-size: 18px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
}

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

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.faq-list {
    max-width: none;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--text-muted);
    font-size: 24px;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== PAGE HERO (sub-page banner) ===== */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2a1746 0%, #4a2680 50%, #7b3fb0 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.4), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(165, 94, 219, 0.5), transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s;
}

.page-breadcrumb a:hover { color: #fbbf24; }

.page-breadcrumb .material-icons-outlined {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: #fff;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero { padding: 100px 0 60px; }
    .page-hero-title { font-size: 2rem; }
    .page-hero-subtitle { font-size: 0.95rem; }
}

/* ===== PAGE CONTENT (generic content sections) ===== */
.page-content {
    padding: 80px 0;
    background: var(--bg-color);
}

.page-content-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-info-section {
    max-width: none;
    width: 100%;
    margin-top: 8px;
    padding: 32px 0 0;
    border-top: 1px solid var(--border);
}

.product-info-intro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.product-info-intro p {
    margin: 0;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(74, 38, 128, 0.05);
    font-size: 0.96rem;
    line-height: 1.6;
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.product-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 100%;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(74, 38, 128, 0.05);
}

.product-info-card > .material-icons-outlined {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--accent);
    background: rgba(123, 63, 176, 0.1);
    font-size: 20px;
}

.product-info-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.product-info-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
}

.product-info-card ul {
    margin: 0;
}

.product-info-card ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 0.95rem;
}

.page-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 32px 0 14px;
    letter-spacing: -0.02em;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 24px 0 10px;
}

.page-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 1.02rem;
}

.page-content ul {
    margin: 12px 0 18px 0;
    padding: 0;
    list-style: none;
}

.page-content ul li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #fbbf24);
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.35);
}

/* Card grids for sub-pages */
.page-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.page-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}

.page-card:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 63, 176, 0.4);
    box-shadow: 0 22px 50px rgba(74, 38, 128, 0.14);
}

.page-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(123, 63, 176, 0.3);
}

.page-card:nth-child(even) .page-card-icon {
    background: linear-gradient(135deg, #ff7a00, #fbbf24);
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.3);
}

.page-card-icon .material-icons-outlined { font-size: 28px; }

.page-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text-primary);
}

.page-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.page-card-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    background: rgba(123, 63, 176, 0.1);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    border-radius: 6px;
    text-transform: uppercase;
}

.sets-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.set-card {
    padding: 0;
    overflow: hidden;
}

.set-card-image {
    height: 240px;
    background: linear-gradient(135deg, #fff5e6 0%, #f6f1fc 100%);
    overflow: hidden;
}

.set-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.set-card-image.image-missing::before {
    content: "Görsel bekleniyor";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.set-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.set-card .page-card-tag {
    width: fit-content;
}

.set-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.set-card-link .material-icons-outlined {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.set-card:hover .set-card-link .material-icons-outlined {
    transform: translateX(4px);
}

/* Story / two-column layout */
.page-two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    margin: 32px 0;
}

.page-two-col-image {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #f6f1fc, #fff5e6);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 24px 60px rgba(74, 38, 128, 0.12);
}

.page-two-col-image .material-icons-outlined {
    font-size: 7rem;
    background: linear-gradient(135deg, #7b3fb0, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .page-two-col { grid-template-columns: 1fr; gap: 32px; }
    .page-content { padding: 56px 0; }
}

/* ===== ABOUT (Şirketimiz) PAGE ===== */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    margin: 24px 0 72px;
}

.about-intro-text > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-intro-text > p:first-child::first-letter {
    font-size: 3.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7b3fb0, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    float: left;
    line-height: 0.9;
    margin-right: 10px;
    padding-top: 4px;
}

.about-quote-card {
    position: relative;
    border-radius: 28px;
    padding: 56px 40px;
    background: linear-gradient(135deg, #2a1746 0%, #4a2680 50%, #7b3fb0 100%);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(74, 38, 128, 0.25);
    text-align: center;
}

.about-quote-card::before,
.about-quote-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.about-quote-card::before {
    top: -90px;
    right: -90px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.6), transparent 70%);
}

.about-quote-card::after {
    bottom: -90px;
    left: -90px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(165, 94, 219, 0.5), transparent 70%);
}

.about-quote-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #fbbf24);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 14px 30px rgba(255, 122, 0, 0.35);
}

.about-quote-icon .material-icons-outlined { font-size: 32px; }

.about-quote-text {
    position: relative;
    z-index: 1;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.01em;
}

.about-quote-text span {
    background: linear-gradient(135deg, #ff7a00, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-quote-sub {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-quote-card { padding: 40px 24px; }
    .about-quote-text { font-size: 1.3rem; }
}

/* Stats strip */
.about-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 64px 0;
    padding: 36px;
    background: linear-gradient(135deg, #faf7ff 0%, #fff5e6 100%);
    border-radius: 24px;
    border: 1px solid #ece4f5;
}

.about-stat {
    text-align: center;
    padding: 8px;
    border-right: 1px dashed #ece4f5;
}

.about-stat:last-child { border-right: none; }

.about-stat-num {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px 18px;
    }
    .about-stat:nth-child(2) { border-right: none; }
}

/* Timeline */
.about-timeline-section {
    margin: 72px 0 56px;
}

.about-section-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.about-section-sub {
    text-align: center;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.about-timeline {
    position: relative;
    padding: 24px 0;
    max-width: 920px;
    margin: 0 auto;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(180deg, #7b3fb0 0%, #ff7a00 100%);
    transform: translateX(-50%);
    border-radius: 99px;
}

.timeline-item {
    position: relative;
    padding: 18px 0;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    padding-right: 56px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 56px;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b3fb0, #ff7a00);
    box-shadow: 0 0 0 6px #fff, 0 0 0 7px rgba(123, 63, 176, 0.25);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -11px; }
.timeline-item:nth-child(even) .timeline-dot { left: -11px; }

.timeline-year {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff7a00, #fbbf24);
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.timeline-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .about-timeline::before { left: 16px; }
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding: 18px 0 18px 44px;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot { left: 5px; right: auto; }
}

/* Activities grid */
.activity-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.activity-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #7b3fb0, #ff7a00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 63, 176, 0.35);
    box-shadow: 0 22px 50px rgba(74, 38, 128, 0.15);
}

.activity-card:hover::after { transform: scaleX(1); }

.activity-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.activity-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(123, 63, 176, 0.25);
}

.activity-card:nth-child(even) .activity-icon {
    background: linear-gradient(135deg, #ff7a00, #fbbf24);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.28);
}

.activity-icon .material-icons-outlined { font-size: 22px; }

.activity-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.activity-card .new-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #ff7a00, #fbbf24);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    border-radius: 6px;
    text-transform: uppercase;
}

.activity-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}

/* Lightbox (full-screen image preview) */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 7, 30, 0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
    backdrop-filter: blur(8px);
    animation: lbFade 0.25s ease;
}

.lightbox.open { display: flex; }

@keyframes lbFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: lbZoom 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes lbZoom {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.lightbox-close .material-icons-outlined { font-size: 24px; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-nav .material-icons-outlined { font-size: 28px; }

@media (max-width: 768px) {
    .lightbox { padding: 16px; }
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-nav.prev { left: 8px; }
    .lightbox-nav.next { right: 8px; }
}

/* Stage gallery — 4-image mosaic */
.stage-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 14px;
    margin: 0 0 48px;
}

.stage-gallery .stage-img {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(74, 38, 128, 0.16);
    background: #2a1746;
    cursor: zoom-in;
}

.stage-gallery .stage-img .zoom-icon,
.party-gallery .stage-img .zoom-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
    box-shadow: 0 6px 16px rgba(74, 38, 128, 0.25);
}

.stage-gallery .stage-img:hover .zoom-icon,
.party-gallery .stage-img:hover .zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

.stage-gallery .stage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.stage-gallery .stage-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 23, 70, 0) 50%, rgba(42, 23, 70, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stage-gallery .stage-img:hover img {
    transform: scale(1.06);
}

.stage-gallery .stage-img:hover::after { opacity: 1; }

.stage-gallery .stage-img:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1;
}
.stage-gallery .stage-img:nth-child(2) { grid-column: 2; grid-row: 1; }
.stage-gallery .stage-img:nth-child(3) { grid-column: 3; grid-row: 1; }
.stage-gallery .stage-img:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }

.stage-gallery .stage-img-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(74, 38, 128, 0.18);
}

@media (max-width: 768px) {
    .stage-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
        gap: 10px;
    }
    .stage-gallery .stage-img:nth-child(1) {
        grid-row: 1;
        grid-column: 1 / 3;
    }
    .stage-gallery .stage-img:nth-child(2) { grid-column: 1; grid-row: 2; }
    .stage-gallery .stage-img:nth-child(3) { grid-column: 2; grid-row: 2; }
    .stage-gallery .stage-img:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3;
    }
}

/* Party gallery — 6-image asymmetric mosaic */
.party-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 14px;
    margin: 0 0 48px;
}

.party-gallery .stage-img {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(74, 38, 128, 0.16);
    background: #2a1746;
    cursor: zoom-in;
}

.party-gallery .stage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.party-gallery .stage-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 23, 70, 0) 50%, rgba(42, 23, 70, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.party-gallery .stage-img:hover img { transform: scale(1.06); }
.party-gallery .stage-img:hover::after { opacity: 1; }

/* Asymmetric layout: 1 big + 2 small (top row), 3 small (bottom row) */
.party-gallery .stage-img:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1;
}
.party-gallery .stage-img:nth-child(2) { grid-column: 2; grid-row: 1; }
.party-gallery .stage-img:nth-child(3) { grid-column: 3; grid-row: 1; }
.party-gallery .stage-img:nth-child(4) { grid-column: 2; grid-row: 2; }
.party-gallery .stage-img:nth-child(5) { grid-column: 3; grid-row: 2; }
.party-gallery .stage-img:nth-child(6) {
    /* 6th image goes to overflow row spanning all */
    grid-column: 1 / 4;
    grid-row: 3;
}

/* Add 3rd row dynamically via auto-rows */
.party-gallery {
    grid-auto-rows: 220px;
}

@media (max-width: 768px) {
    .party-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 180px;
        grid-auto-rows: 180px;
    }
    .party-gallery .stage-img:nth-child(1) {
        grid-row: 1;
        grid-column: 1 / 3;
    }
    .party-gallery .stage-img:nth-child(2) { grid-column: 1; grid-row: 2; }
    .party-gallery .stage-img:nth-child(3) { grid-column: 2; grid-row: 2; }
    .party-gallery .stage-img:nth-child(4) { grid-column: 1; grid-row: 3; }
    .party-gallery .stage-img:nth-child(5) { grid-column: 2; grid-row: 3; }
    .party-gallery .stage-img:nth-child(6) {
        grid-column: 1 / 3;
        grid-row: 4;
    }
}

/* Founder block (photo + bio side-by-side) */
.founder-block {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}

.founder-block:last-child { border-bottom: none; }

.founder-block-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 22%;
    box-shadow:
        0 0 0 5px #fff,
        0 0 0 7px rgba(123, 63, 176, 0.18),
        0 18px 40px rgba(74, 38, 128, 0.18);
    display: block;
}

.founder-block-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0 0 4px;
}

.founder-block-info .founder-role {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.founder-block-info p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .founder-block {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }
    .founder-block-photo {
        width: 160px;
        height: 160px;
    }
}

/* Founder cards */
.founder-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(74, 38, 128, 0.14);
}

.founder-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b3fb0, #ff7a00);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: 0 14px 30px rgba(123, 63, 176, 0.35);
}

.founder-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text-primary);
}

.founder-card .founder-role {
    display: block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.founder-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Product detail pages */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
    margin-bottom: 56px;
}

.product-image {
    border-radius: 24px;
    background: linear-gradient(135deg, #fff5e6 0%, #f6f1fc 100%);
    aspect-ratio: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 70px rgba(74, 38, 128, 0.15);
    position: relative;
    overflow: hidden;
}

.product-image .material-icons-outlined {
    font-size: 9rem;
    background: linear-gradient(135deg, #7b3fb0, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 22px 0;
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.product-meta-item .material-icons-outlined {
    color: var(--accent);
    background: rgba(123, 63, 176, 0.1);
    padding: 8px;
    border-radius: 10px;
    font-size: 18px;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    color: #fff;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
    box-shadow: 0 12px 28px rgba(123, 63, 176, 0.35);
    transition: transform 0.2s;
    width: fit-content;
}

.product-cta:hover { transform: translateY(-2px); }

/* Product tagline + short description */
.product-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 4px 0 18px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0 0 22px;
}

/* Marketplace buy buttons */
.buy-section {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px dashed var(--border);
}

.buy-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.buy-section-label .material-icons-outlined {
    font-size: 18px;
}

.buy-section-info {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.5;
}

.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buy-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    position: relative;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(74, 38, 128, 0.12);
}

.buy-btn-logo {
    width: 120px;
    height: 48px;
    padding: 6px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
}

.buy-btn-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.buy-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.buy-btn-text strong {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.buy-btn-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.buy-btn .buy-arrow {
    color: var(--text-muted);
    transition: transform 0.25s, color 0.25s;
    font-size: 22px;
}

.buy-btn:hover .buy-arrow {
    transform: translateX(4px);
}

/* Brand hover colors */
.buy-btn.superbilim .buy-btn-logo {
    padding: 0 4px;
}
.buy-btn.superbilim .buy-btn-logo img {
    max-height: 100%;
    max-width: 100%;
    transform: scale(1.4);
}
.buy-btn.superbilim:hover {
    border-color: #7b3fb0;
}
.buy-btn.superbilim:hover .buy-arrow { color: #7b3fb0; }

.buy-btn.hepsiburada:hover {
    border-color: #ff6000;
}
.buy-btn.hepsiburada:hover .buy-arrow { color: #ff6000; }

.buy-btn.trendyol:hover {
    border-color: #f27a1a;
}
.buy-btn.trendyol:hover .buy-arrow { color: #f27a1a; }

@media (max-width: 768px) {
    .product-hero { grid-template-columns: 1fr; gap: 28px; }
    .product-image { aspect-ratio: 1/1; min-height: 0; }
    .product-info-section { padding: 24px 0 0; }
    .product-info-intro { grid-template-columns: 1fr; }
    .product-info-grid { grid-template-columns: 1fr; }
    .product-info-card { padding: 18px; }
}

.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

.product-image.image-missing::before {
    content: "Görsel bekleniyor";
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 96px 0 32px;
    background: var(--bg-color);
}

.contact-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-right-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.contact-card-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 63, 176, 0.04), rgba(255, 122, 0, 0.03));
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.contact-card-item:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 63, 176, 0.35);
    box-shadow: 0 18px 40px rgba(74, 38, 128, 0.12);
}

.contact-card-item:hover::before {
    opacity: 1;
}

.contact-card-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(123, 63, 176, 0.28);
    position: relative;
    z-index: 1;
}

.contact-card-icon-wrap .material-icons-outlined {
    font-size: 24px;
}

.contact-card-item:nth-child(2) .contact-card-icon-wrap,
.contact-card-item:nth-child(4) .contact-card-icon-wrap {
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    box-shadow: 0 8px 20px rgba(123, 63, 176, 0.28);
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.contact-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}

a.contact-card-value:hover {
    color: var(--accent);
}

.contact-social-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f6f1fc;
    color: var(--accent-dark);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-social-btn:hover {
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(123, 63, 176, 0.3);
}

.contact-social-btn svg {
    flex-shrink: 0;
}

/* ===== CUSTOMER FORM ===== */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(74, 38, 128, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-title::before {
    content: "";
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #7b3fb0, #ff7a00);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.form-input {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-primary);
    background: #fff;
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(123, 63, 176, 0.1);
    background: rgba(123, 63, 176, 0.02);
}

.form-input:invalid {
    border-color: var(--danger);
}

.form-input:invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-textarea {
    resize: none;
    font-family: inherit;
    line-height: 1.6;
    min-height: 110px;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    color: #fff;
    border: 0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(123, 63, 176, 0.35);
}

.form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(123, 63, 176, 0.25);
}

.form-submit-btn .material-icons-outlined {
    font-size: 20px;
}

/* Map column */
.contact-map-col {
    display: flex;
    flex: 1;
    width: 100%;
}

.contact-map-card {
    position: relative;
    flex: 1;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(74, 38, 128, 0.12);
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.contact-map-frame {
    width: 100%;
    flex: 1;
    border: 0;
    display: block;
    filter: saturate(1.05);
}

.contact-map-pin {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: linear-gradient(135deg, #ff7a00, #fbbf24);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.45);
    animation: pinPulse 2.4s ease-in-out infinite;
}

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

.contact-map-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.contact-map-foot strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.contact-map-foot > div span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-map-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #7b3fb0, #4a2680);
    color: #fff;
    border-radius: 99px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.contact-map-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(123, 63, 176, 0.35);
}

.contact-map-cta .material-icons-outlined {
    font-size: 18px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-col {
        grid-template-columns: 1fr;
    }
    .contact-right-col {
        grid-template-columns: 1fr;
    }
    .contact-map-card {
        min-height: 380px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 64px 0 24px;
    }
    .contact-grid {
        gap: 32px;
    }
    .contact-info-col {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .contact-card-item {
        padding: 18px;
        gap: 14px;
    }
    .contact-card-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    .contact-right-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-map-foot {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .contact-map-cta {
        justify-content: center;
    }
    .contact-form-card {
        padding: 20px;
    }
    .contact-form-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    .form-input {
        font-size: 16px;
    }
    .form-submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-color) 100%);
}

.final-cta-card {
    position: relative;
    background: linear-gradient(135deg, #2a1746 0%, #4a2680 52%, #7b3fb0 100%);
    border-radius: 32px;
    padding: 80px 60px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(74, 38, 128, 0.45);
}

.cta-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-blob-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(165, 94, 219, 0.42), transparent 70%);
    top: -180px;
    right: -120px;
}

.cta-blob-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(123, 63, 176, 0.6), transparent 70%);
    bottom: -160px;
    left: -100px;
}

.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: none;
    margin: 0 auto;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-tag .material-icons-outlined {
    font-size: 18px;
    color: #d8b4fe;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 36px;
}

.cta-subtitle strong {
    color: #d8b4fe;
    font-weight: 700;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.final-cta-section .cta-button {
    flex-direction: row;
    gap: 10px;
    margin-top: 0;
    padding: 16px 30px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(42, 23, 70, 0.22);
}

.final-cta-section .cta-button:hover {
    top: 0;
    background: #f7f0ff;
    box-shadow: 0 18px 42px rgba(42, 23, 70, 0.28);
    transform: translateY(-2px);
}

.final-cta-section .cta-button:active {
    top: 0;
    box-shadow: 0 10px 26px rgba(42, 23, 70, 0.22);
}

.final-cta-section .cta-button .btn-text {
    color: #2a1746;
    text-shadow: none;
}

.final-cta-section .cta-button .material-icons-outlined {
    color: #7b3fb0;
    margin: 0;
    font-size: 20px;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.11);
    border: 1.5px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
    padding: 13px 24px;
    border-radius: 999px;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.cta-secondary .material-icons-outlined {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 9px;
    border-radius: 999px;
    font-size: 21px;
    box-shadow: none;
}

.cta-sec-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    line-height: 1;
    margin-bottom: 4px;
}

.cta-sec-value {
    display: block;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-align: left;
}

.cta-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.cta-trust .material-icons-outlined {
    color: #22c55e;
    font-size: 18px;
}

@media (max-width: 768px) {
    .final-cta-card {
        padding: 56px 24px;
        border-radius: 24px;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-subtitle {
        font-size: 0.92rem;
    }
    .cta-actions {
        flex-direction: column;
        gap: 14px;
    }
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    .cta-trust-row {
        gap: 14px 20px;
    }
    .cta-trust {
        font-size: 0.78rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #2a1746;
    color: #cbb8e5;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.88rem;
    color: #d4c2ec;
    line-height: 1.6;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: #d4c2ec;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-col .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: grid;
    place-items: center;
    padding: 0;
    line-height: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-col .social-link svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: #d4c2ec;
    transition: fill 0.2s ease;
}

.footer-col .social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.footer-col .social-link:hover svg {
    fill: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links a {
    color: #b8a5d6;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #b8a5d6;
}

.footer-location {
    margin-top: 4px;
    font-size: 0.75rem !important;
    color: #9786b8 !important;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
        gap: 20px;
    }
    .pricing-card:first-child,
    .pricing-card:last-child {
        border-radius: 20px;
        border: 1px solid var(--border);
    }
    .tier-pro.featured {
        transform: none;
        border-radius: 20px !important;
    }
    .tier-pro.featured:hover {
        transform: translateY(-4px);
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .header-nav {
        display: none;
    }
    .logo {
        width: auto;
    }
    .header-contact-btn {
        width: auto;
        margin-left: auto;
        padding: 9px 16px;
        font-size: 0.78rem;
    }
    .header-actions {
        margin-left: auto;
    }
    .header-cta-outline {
        display: none;
    }
    .header-cta-primary {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 36px 0 60px;
    }
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .features-layout {
        flex-direction: column;
    }
    .features-right {
        display: none;
    }
    .stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-button {
        padding: 16px 40px;
    }
    .header-cta {
        padding: 8px 16px;
        font-size: 0.72rem;
    }
    .live-indicators {
        flex-direction: column;
        align-items: center;
    }
    .integrations-row {
        gap: 16px;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .promo-bar {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .cta-button {
        padding: 14px 28px;
    }
    .btn-text {
        font-size: 0.95rem;
    }
    .current-price {
        font-size: 2rem;
    }
}
