:root {
    --blue-primary: #1c448c;
    --blue-dark: #102a5c;
    --blue-light: #e0e9f8;
    --red-accent: #af1523;
    --red-hover: #d91c2b;
    --white: #ffffff;
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --gradient-blue: linear-gradient(135deg, #1c448c 0%, #3b6ebf 100%);
    --gradient-red: linear-gradient(135deg, #af1523 0%, #d62f3f 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(28, 68, 140, 0.15) 0%, transparent 70%);
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 20px rgba(28, 68, 140, 0.2);
    --shadow-red-glow: 0 0 20px rgba(175, 21, 35, 0.2);
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --container-width: 1200px;
    --section-padding: 40px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.2; }
p { margin: 0; color: var(--text-secondary); }

.hero-gradient-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

#gradient-canvas {
    width: 100%; height: 100%;
    --gradient-color-1: #0a1e5e;
    --gradient-color-2: #1c448c;
    --gradient-color-3: #c41832;
    --gradient-color-4: #4a7fd4;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
}

section { padding: var(--section-padding) 0; position: relative; overflow-x: clip; }

.section-header { margin-bottom: 24px; text-align: center; }
.section-tag {
    display: inline-block; padding: 6px 16px;
    background: var(--blue-light);
    color: var(--blue-primary);
    border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.section-title { font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 10px; color: var(--text-primary); }
.section-subtitle { font-size: 15px; max-width: 560px; margin: 0 auto; color: var(--text-secondary); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; font-weight: 600; font-size: 15px;
    border-radius: var(--radius-sm); border: none; cursor: pointer;
    transition: var(--transition); gap: 8px;
}
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: var(--radius-md); }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(28, 68, 140, 0.4);
}
.btn-primary.shadow-glow { box-shadow: var(--shadow-glow); }

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.1);
}
.btn-secondary:hover {
    background: var(--bg-main);
    border-color: var(--text-light);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--blue-primary);
    color: var(--blue-primary);
}
.btn-outline:hover {
    background: var(--blue-light);
}

.btn-white {
    background: white; color: var(--blue-primary);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(15, 23, 42, 0.05);
}
.navbar.scrolled .logo-text { color: var(--blue-primary); }
.navbar.scrolled .nav-link { color: var(--text-secondary); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--blue-primary); }
.navbar.scrolled .mobile-menu-btn span { background: var(--text-primary); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 6px; }
.logo-icon { height: 36px; width: auto; object-fit: contain; }
.logo-icon-white { display: inline-block; }
.logo-icon-black { display: none; }
.navbar.scrolled .logo-icon-white { display: none; }
.navbar.scrolled .logo-icon-black { display: inline-block; }
.logo-symbol {
    width: 32px; height: 32px;
    background: var(--gradient-blue);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.logo-symbol::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%;
    background: var(--red-accent);
}
.symbol-inner {
    width: 12px; height: 12px; background: white; border-radius: 2px; z-index: 2;
    transform: rotate(45deg);
}
.logo-text { font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.5px; transition: color 0.3s; }
.logo-text .highlight { color: rgba(255,255,255,0.7); }
.navbar.scrolled .logo-text .highlight { color: var(--blue-primary); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-weight: 600; color: rgba(255,255,255,0.85); font-size: 15px; transition: color 0.3s; }
.nav-link:hover, .nav-link.active { color: white; }
.nav-cta {
    padding: 10px 20px; border-radius: 100px; font-size: 14px;
    background: white; color: var(--blue-primary); box-shadow: none;
}
.nav-cta:hover { background: rgba(255,255,255,0.9); transform: none; box-shadow: none; }
.navbar.scrolled .nav-cta {
    background: var(--gradient-blue); color: white;
    box-shadow: var(--shadow-md);
}
.navbar.scrolled .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(28, 68, 140, 0.4);
}

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: white; transition: var(--transition); }

.hero {
    position: relative;
    padding-top: 120px; padding-bottom: 60px;
    overflow: hidden;
    background: #1c448c;
    min-height: 540px;
}

.hero-gradient-angle {
    position: absolute;
    bottom: -2px; left: 0; width: 100%; height: 55%;
    background: var(--bg-main);
    clip-path: polygon(100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

.hero-container {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: center;
    position: relative; z-index: 3;
}

.badge-wrapper {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.15); padding: 6px 6px 6px 16px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 14px; font-size: 13px; color: rgba(255,255,255,0.9);
}
.badge-new {
    background: var(--red-accent); color: white;
    padding: 2px 8px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; text-transform: uppercase;
}

.hero-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800; letter-spacing: -1px; margin-bottom: 10px; color: white;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-strap {
    font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85);
    margin-bottom: 8px; max-width: 600px;
}
.hero-subtitle {
    font-size: 14px; margin-bottom: 18px; line-height: 1.6; max-width: 540px;
    color: rgba(255,255,255,0.7);
}
.hero-buttons { display: flex; gap: 12px; margin-bottom: 16px; }
.hero .btn-primary {
    background: white; color: var(--blue-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.hero .btn-secondary {
    background: rgba(28, 68, 140, 0.35); color: white;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}
.hero .btn-secondary:hover {
    background: rgba(28, 68, 140, 0.5);
    border-color: rgba(255,255,255,0.4);
}

.hero-payments {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.95);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.hero-payments img {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hero-trust-line {
    font-size: 14px; color: rgba(255,255,255,0.6);
    margin-top: 20px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-line strong { color: white; }

.intro-section {
    padding: var(--section-padding) 0;
    background: var(--bg-main);
}
.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.intro-reversed {
    grid-template-columns: 1.3fr 0.7fr;
}
.intro-image-col {
    min-width: 0;
}
.intro-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: transparent;
}
.intro-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.intro-text-col {
    min-width: 0;
}
.intro-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}
.intro-lead {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.intro-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 12px;
}
.intro-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.intro-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.intro-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-primary);
}
@media (max-width: 900px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.slideshow-section {
    padding: var(--section-padding) 0;
    background: var(--bg-main);
    overflow: hidden;
}
.slideshow-header { text-align: center; margin-bottom: 28px; }
.slideshow-header h2 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 12px;
}
.slideshow-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 16px 0;
    cursor: grab;
}
.carousel-wrapper:active { cursor: grabbing; }
.carousel-wrapper.is-dragging { cursor: grabbing; }
.carousel-wrapper.is-dragging .carousel-slide { pointer-events: none; }
.carousel-container { overflow: hidden; width: 100%; }
.carousel-track {
    display: flex;
    gap: 16px;
    will-change: transform;
}
.carousel-slide {
    flex: 0 0 220px;
    height: 330px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
    user-select: none;
}
.carousel-slide:hover {
    border-color: rgba(28, 68, 140, 0.2);
    box-shadow: 0 8px 30px rgba(28, 68, 140, 0.2);
}
.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
@media (max-width: 768px) {
    .carousel-slide { flex: 0 0 180px; height: 270px; }
}
@media (max-width: 480px) {
    .carousel-slide { flex: 0 0 150px; height: 225px; }
    .hero-buttons { flex-wrap: wrap; gap: 8px; }
    .hero-buttons .btn { padding: 12px 18px; font-size: 14px; }
    .cta-buttons-row { flex-direction: column; align-items: center; }
    .cta-buttons-row .btn { width: auto; text-align: center; padding: 12px 28px; font-size: 14px; }
    .badge-wrapper { font-size: 11px; padding: 4px 4px 4px 12px; }
    .cta-trust-badges { flex-direction: column; gap: 10px; }
}

.what-you-get {
    padding: var(--section-padding) 0;
    background: var(--bg-main);
}
.what-you-get .container {
    max-width: var(--container-width);
}
.what-you-get-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--blue-primary);
    text-align: center;
    margin-bottom: 28px;
}
.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.what-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.what-card:hover {
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-md);
}
.what-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: var(--blue-light);
    border-radius: var(--radius-sm);
    color: var(--blue-primary);
}
.what-icon svg {
    width: 24px;
    height: 24px;
}
.what-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.what-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .what-you-get-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .what-you-get-grid {
        grid-template-columns: 1fr;
    }
    .what-you-get-title {
        margin-bottom: 32px;
    }
}

.privacy-section {
    padding: var(--section-padding) 0;
    background: white;
}
.privacy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.privacy-image-col,
.privacy-text-col {
    min-width: 0;
}
.privacy-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--blue-light);
}
.privacy-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.privacy-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}
.privacy-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}
.privacy-section p:last-of-type {
    margin-bottom: 0;
}
.privacy-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue-primary);
    margin: 18px 0 10px;
}
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.privacy-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-primary);
}
@media (max-width: 900px) {
    .privacy-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.hero-visual {
    position: relative; padding: 24px 12px 24px 24px;
    max-width: 100%; box-sizing: border-box;
    perspective: 1200px;
}

.visual-card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg);
    box-shadow:
        0 50px 100px -30px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.35);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: rotateY(-8deg) rotateX(4deg) scale(1.02);
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.visual-card:hover {
    transform: rotateY(-2deg) rotateX(1deg) scale(1.04);
}

.card-header-dots {
    padding: 14px 20px; background: #f0f2f5; border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    display: flex; gap: 8px; align-items: center;
}
.card-header-dots span { width: 12px; height: 12px; border-radius: 50%; background: #e2e8f0; }
.card-header-dots span:nth-child(1) { background: #ef4444; }
.card-header-dots span:nth-child(2) { background: #f59e0b; }
.card-header-dots span:nth-child(3) { background: #22c55e; }

.visual-content { background: #f8fafc; overflow: hidden; }
.visual-hero-img { width: 100%; height: auto; display: block; }

.floating-icon {
    position: absolute;
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    z-index: 5;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
}
.floating-icon img {
    width: 34px; height: 34px;
    object-fit: contain;
    border-radius: 6px;
}
.fi-1 { top: 5%; right: -16px; animation: floatIcon 5s ease-in-out infinite; }
.fi-2 { bottom: 8%; left: -16px; animation: floatIcon 6s ease-in-out 1s infinite; }
.fi-3 { top: 50%; right: -22px; animation: floatIcon 5.5s ease-in-out 2s infinite; }
.fi-4 { bottom: 42%; left: -20px; animation: floatIcon 6.5s ease-in-out 0.5s infinite; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.stream-preview {
    flex: 2; background: #0f172a; position: relative;
    display: flex; align-items: center; justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1574375927938-d5a98e8ffe85?q=80&w=1000&auto=format&fit=crop');
    background-size: cover; background-position: center;
}
.preview-header {
    position: absolute; top: 16px; left: 16px; right: 16px;
    display: flex; justify-content: space-between;
}
.live-badge {
    background: var(--red-accent); color: white; padding: 4px 8px;
    border-radius: 4px; font-size: 11px; font-weight: 700;
}
.viewers {
    background: rgba(0,0,0,0.6); color: white; padding: 4px 8px;
    border-radius: 4px; font-size: 11px; font-weight: 600;
}
.play-overlay {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; cursor: pointer; transition: 0.3s;
}
.play-overlay:hover { transform: scale(1.1); background: var(--red-accent); }
.play-overlay svg { width: 24px; height: 24px; margin-left: 4px; }

.channel-list {
    flex: 1; background: white; border-left: 1px solid rgba(15, 23, 42, 0.05);
    display: flex; flex-direction: column;
}
.channel-item {
    padding: 16px; display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03); cursor: pointer;
    transition: 0.2s;
}
.channel-item:hover, .channel-item.active { background: #f1f5f9; }
.ch-icon { width: 32px; height: 32px; border-radius: 6px; background: #0f172a; flex-shrink: 0; }
.ch-icon.red { background: #ef4444; }
.ch-icon.blue { background: #3b82f6; }
.ch-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.ch-prog { font-size: 11px; color: var(--text-secondary); }

.float-card {
    position: absolute; background: rgba(255,255,255,0.95); padding: 12px 20px;
    border-radius: var(--radius-md); box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: flex; align-items: center; gap: 12px; z-index: 4;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(8px);
}
.float-1 { top: 20%; right: -20px; animation-delay: 0s; }
.float-2 { bottom: 10%; left: -20px; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.icon-box {
    width: 40px; height: 40px; background: var(--bg-main);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.float-text { display: flex; flex-direction: column; font-size: 12px; }
.float-text strong { color: var(--text-primary); }

.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
}
.feature-card {
    background: white; padding: 20px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(15, 23, 42, 0.03);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-lg);
    border-color: rgba(28, 68, 140, 0.1);
}
.feature-icon-wrapper {
    width: 48px; height: 48px; background: var(--blue-light);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    color: var(--blue-primary); margin-bottom: 12px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon-wrapper {
    background: var(--blue-primary); color: white; transform: rotate(-5deg);
}
.feature-icon-wrapper.red { background: #fef2f2; color: var(--red-accent); }
.feature-card:hover .feature-icon-wrapper.red { background: var(--red-accent); color: white; }

.feature-icon-wrapper svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }

.steps-section { background: white; }
.steps-grid {
    display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 18px;
}
.step-card {
    background: var(--bg-main); border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-lg); padding: 22px 20px; text-align: center;
    flex: 1; max-width: 280px; transition: var(--transition);
}
.step-card:hover { border-color: rgba(28, 68, 140, 0.15); box-shadow: var(--shadow-md); }
.step-number {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    background: var(--gradient-blue); border-radius: 50%; font-size: 18px; font-weight: 700;
    color: white; margin: 0 auto 12px;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.step-card p { font-size: 14px; color: var(--text-secondary); margin: 0; }
.step-arrow { color: var(--blue-primary); opacity: 0.4; }
.step-arrow svg { width: 28px; height: 28px; }
.steps-cta { text-align: center; color: var(--text-secondary); font-size: 14px; }

.reviews-section { background: var(--bg-main); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card {
    background: white; border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-lg); padding: 20px; transition: var(--transition);
}
.review-card:hover { border-color: rgba(28, 68, 140, 0.15); box-shadow: var(--shadow-md); }
.review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author strong { display: block; font-size: 14px; color: var(--text-primary); margin-bottom: 2px; }
.review-author span { font-size: 12px; color: var(--text-light); }

.pricing { background: #f1f5f9; }

.screen-tabs {
    display: flex; justify-content: center; gap: 0; margin-bottom: 28px;
    background: white; border-radius: var(--radius-full); padding: 6px;
    width: fit-content; margin-left: auto; margin-right: auto;
    border: 1px solid rgba(15, 23, 42, 0.05); box-shadow: var(--shadow-sm);
}
.screen-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: var(--radius-full); border: none; background: transparent;
    color: var(--text-secondary); font-size: 15px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
}
.screen-tab:hover { color: var(--text-primary); }
.screen-tab.active {
    background: var(--gradient-blue); color: white;
    box-shadow: 0 4px 12px rgba(28, 68, 140, 0.3);
}
.pop-label {
    background: var(--red-accent); color: white;
    font-size: 10px; font-weight: 700; padding: 2px 6px;
    border-radius: 4px; text-transform: uppercase;
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; align-items: stretch; }

.pricing-card {
    background: white; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative; transition: var(--transition); display: flex; flex-direction: column;
}
.pricing-card .card-content {
    display: flex; flex-direction: column; flex: 1; padding: 22px 20px;
}
.pricing-card .card-content > .btn {
    margin-top: auto; width: auto; align-self: center;
    padding: 12px 32px; font-size: 14px;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
    transform: scale(1.05); border: 2px solid var(--blue-primary);
    box-shadow: var(--shadow-md); z-index: 2;
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-8px); }

.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-blue); color: white;
    padding: 6px 16px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    white-space: nowrap;
}
.plan-label-tag {
    display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--blue-primary); background: var(--blue-light);
    padding: 4px 10px; border-radius: var(--radius-full); margin-bottom: 12px;
}
.plan-label-tag.featured { color: var(--red-accent); background: #fef2f2; }

.pricing-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.plan-desc { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.plan-price { margin-bottom: 4px; }
.price-big {
    font-size: 42px; font-weight: 800; color: var(--blue-primary); letter-spacing: -1px;
}
.price-per { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.savings-tag {
    display: inline-block; font-size: 12px; font-weight: 600; color: #16a34a;
    background: #dcfce7; padding: 4px 10px; border-radius: var(--radius-full); margin-bottom: 16px;
}
.divider { height: 1px; background: rgba(15, 23, 42, 0.05); margin-bottom: 16px; }

.feature-list { flex: 1; margin-bottom: 14px; list-style: none; }
.feature-list li {
    margin-bottom: 7px; display: flex; align-items: center; gap: 8px; font-size: 13px;
    color: var(--text-secondary);
}
.feature-list li.highlight { font-weight: 700; color: var(--text-primary); }
.feature-list .check {
    width: 20px; height: 20px; background: #dcfce7; color: #16a34a;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
    flex-shrink: 0;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-full);
    padding: 6px 14px;
    margin-bottom: 12px;
}
.pricing-guarantee svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.pricing-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 10px;
}
.pricing-secure svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
    padding-top: 8px;
}
.section-cta .btn {
    position: relative;
    overflow: hidden;
}
.section-cta .btn::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}
.section-cta .btn:hover::after {
    transform: translateX(4px);
}
.intro-text-col .section-cta,
.privacy-text-col .section-cta {
    text-align: left;
}

.faq-section { background: white; }
.faq-accordion-list {
    max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
    background: var(--bg-main); border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(28, 68, 140, 0.15); }
.faq-item.active { border-color: var(--blue-primary); box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%; padding: 14px 18px; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; font-weight: 700; color: var(--text-primary);
    cursor: pointer; text-align: left; gap: 16px;
}
.faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-primary); transition: 0.3s;
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--blue-primary); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
    padding: 0 20px 20px; color: var(--text-secondary); line-height: 1.7; font-size: 15px;
}
.faq-answer-inner p { margin-bottom: 10px; color: var(--text-secondary); font-size: 15px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

.kb-section {
    background: var(--bg-main);
}
.kb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}
.kb-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-surface);
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.kb-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue-primary);
    opacity: 0;
    transition: opacity 0.22s ease;
}
.kb-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(28, 68, 140, 0.1);
    border-color: rgba(28, 68, 140, 0.15);
}
.kb-card:hover::before { opacity: 1; }
.kb-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s ease;
}
.kb-card:hover .kb-icon { background: var(--blue-primary); }
.kb-icon svg {
    width: 18px; height: 18px;
    stroke: var(--blue-primary);
    stroke-width: 1.8;
    fill: none;
    transition: stroke 0.22s ease;
}
.kb-card:hover .kb-icon svg { stroke: #fff; }
.kb-text { flex: 1; min-width: 0; }
.kb-text h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.kb-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0;
}
.kb-arrow {
    width: 16px; height: 16px;
    stroke: var(--blue-primary);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.kb-card:hover .kb-arrow {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 900px) {
    .kb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .kb-grid { grid-template-columns: 1fr; gap: 10px; }
    .kb-card { padding: 14px 16px; }
}

.cta-final { padding-bottom: 0; margin-bottom: -30px; position: relative; z-index: 10; overflow: hidden; }
.cta-box {
    background: var(--gradient-blue);
    border-radius: var(--radius-lg);
    padding: 48px 32px; text-align: center;
    color: white;
    box-shadow: 0 20px 60px -10px rgba(28, 68, 140, 0.4);
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); pointer-events: none;
}
.cta-content h2 { font-size: 26px; margin-bottom: 10px; }
.cta-content p { font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-buttons-row { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-2px);
}
.cta-trust-badges { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; opacity: 0.85; color: rgba(255,255,255,0.9); }
.trust-badge svg { width: 16px; height: 16px; }
.guarantee { display: flex; align-items: center; gap: 6px; font-size: 13px; opacity: 0.8; }
.guarantee svg { width: 16px; height: 16px; }

.footer {
    background: var(--bg-main);
    padding-top: 56px;
    padding-bottom: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 36px;
}
.footer-brand .logo { display: inline-flex; align-items: center; gap: 8px; }
.footer-brand .logo-icon { height: 28px; width: auto; }
.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 14px;
    margin-bottom: 16px;
    max-width: 320px;
}

.footer-col h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-col a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--blue-primary); }

.footer-contact-list li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-contact-list svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--blue-primary);
}

.footer .logo-icon-white { display: none !important; }
.footer .logo-icon-black { display: inline-block !important; }
.footer .logo-text { color: var(--blue-primary); }
.footer .logo-text .highlight { color: var(--blue-primary); }

.footer-legal {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.footer-legal a {
    color: var(--text-secondary);
    font-size: 13px;
    transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--blue-primary); }
.footer-legal-sep {
    color: rgba(15, 23, 42, 0.2);
    margin: 0 12px;
    font-size: 13px;
}

.footer-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.footer-payments img {
    height: 26px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.footer-payments img:hover { opacity: 1; }

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding: 20px 0;
}
.footer-brand .dmca-badge {
    display: inline-block;
    margin-top: 12px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.footer-brand .dmca-badge:hover { opacity: 1; }
.footer-brand .dmca-badge img { height: 20px; width: auto; display: inline-block; }

.logo-symbol.small { width: 24px; height: 24px; border-radius: 6px; }
.logo-symbol.small .symbol-inner { width: 8px; height: 8px; }

.page-hero {
    padding: 130px 0 50px;
    background: var(--bg-main);
    text-align: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.page-hero-inner { max-width: 640px; margin: 0 auto; }
.page-hero-title {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800; color: var(--text-primary);
    margin-bottom: 14px; letter-spacing: -1px;
}
.page-hero-accent { color: var(--blue-primary); }
.page-hero-desc {
    font-size: 16px; color: var(--text-secondary);
    max-width: 500px; margin: 0 auto; line-height: 1.6;
}

.guide-content { padding: var(--section-padding) 0; background: var(--bg-main); }
.guide-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }

.guide-nav { position: sticky; top: 90px; height: fit-content; }
.guide-nav ul { display: flex; flex-direction: column; gap: 6px; list-style: none; padding: 0; margin: 0; }
.guide-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; color: var(--text-secondary);
    background: white; border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
    transition: var(--transition);
}
.guide-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.guide-nav-link:hover { color: var(--blue-primary); border-color: rgba(28, 68, 140, 0.2); }
.guide-nav-link.active {
    color: var(--blue-primary); border-color: var(--blue-primary);
    background: var(--blue-light);
}

.guide-main { min-width: 0; }
.guide-section {
    background: white; border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg); padding: 32px; margin-bottom: 20px;
    transition: var(--transition);
}
.guide-section:hover { border-color: rgba(28, 68, 140, 0.1); box-shadow: var(--shadow-sm); }
.guide-section h2 {
    font-size: 22px; font-weight: 700; color: var(--text-primary);
    margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.guide-section h3 {
    font-size: 16px; font-weight: 700; color: var(--blue-primary);
    margin: 24px 0 12px; padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}
.guide-section h3:first-of-type { border-top: none; padding-top: 0; margin-top: 20px; }
.guide-section p {
    color: var(--text-secondary); margin-bottom: 14px;
    line-height: 1.7; font-size: 15px;
}
.guide-section ol, .guide-section ul {
    margin-left: 20px; margin-bottom: 16px; padding: 0;
}
.guide-section ol { list-style: decimal; }
.guide-section ul { list-style: disc; }
.guide-section li {
    color: var(--text-secondary); margin-bottom: 8px;
    line-height: 1.6; font-size: 14px;
}
.guide-section li strong { color: var(--text-primary); }
.guide-section code {
    background: var(--blue-light); padding: 2px 8px;
    border-radius: 4px; font-family: 'Courier New', monospace;
    font-size: 13px; color: var(--blue-primary); font-weight: 600;
}

.guide-help-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px;
}
.guide-help-card {
    background: var(--bg-main); border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-md); padding: 24px; text-align: center;
    transition: var(--transition);
}
.guide-help-card:hover { border-color: rgba(28, 68, 140, 0.15); box-shadow: var(--shadow-sm); }
.guide-help-icon {
    width: 48px; height: 48px; margin: 0 auto 12px;
    background: var(--blue-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-primary);
}
.guide-help-icon svg { width: 22px; height: 22px; }
.guide-help-card h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.guide-help-card p { font-size: 13px; color: var(--text-secondary); margin: 0; }

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-payments { margin: 0 auto; }
    .hero-strap { margin-left: auto; margin-right: auto; text-align: center; }
    .hero-visual { display: none; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-5px); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: white; flex-direction: column; padding: 24px;
        box-shadow: var(--shadow-lg);
    }
    .navbar .nav-links .nav-link { color: var(--text-secondary); }
    .navbar .nav-links .nav-link:hover { color: var(--blue-primary); }
    .navbar .nav-links.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    .hero { padding-top: 100px; padding-bottom: 60px; }
    .hero-title { font-size: 28px; }
    .hero-buttons .btn { padding: 12px 20px; font-size: 14px; }
    .hero-buttons .btn-lg { padding: 12px 20px; font-size: 14px; }
    .hero-visual { display: block; margin-top: 20px; padding: 0; }
    .visual-card { transform: none; }
    .float-card { display: none; }
    .floating-icon { display: none; }
    .steps-grid { flex-direction: column; gap: 16px; }
    .step-arrow { transform: rotate(90deg); }
    .step-card { max-width: 100%; width: 100%; }
    .reviews-grid { grid-template-columns: 1fr; }
    .screen-tabs { flex-direction: row; border-radius: var(--radius-full); width: 100%; padding: 4px; }
    .screen-tab { justify-content: center; border-radius: var(--radius-full); padding: 8px 14px; font-size: 13px; flex: 1; white-space: nowrap; }
    .pop-label { font-size: 8px; padding: 2px 4px; }
    .guide-grid { grid-template-columns: 1fr; }
    .guide-nav { position: static; }
    .guide-nav ul { flex-direction: row; flex-wrap: wrap; }
    .guide-nav-link { font-size: 13px; padding: 8px 12px; }
    .guide-section { padding: 24px; }
    .guide-help-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .footer-about { margin-left: auto; margin-right: auto; }
    .footer-contact-list li a { justify-content: center; }
    .whatsapp-float { left: 14px; bottom: 14px; }
    .whatsapp-btn { width: 52px; height: 52px; }
    .whatsapp-btn svg { width: 28px; height: 28px; }
    .whatsapp-tooltip { display: none; }
}

.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-tooltip {
    background: var(--text-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: white;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.cookie-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.cookie-content {
    flex: 1;
    min-width: 0;
}
.cookie-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}
.cookie-content a {
    color: var(--blue-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-content a:hover {
    color: var(--text-primary);
}
.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 4px;
}
.cookie-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}
.cookie-btn-accept {
    background: var(--blue-primary);
    color: white;
}
.cookie-btn-accept:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 68, 140, 0.3);
}
.cookie-btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(15, 23, 42, 0.12);
}
.cookie-btn-reject:hover {
    background: var(--bg-main);
    color: var(--text-primary);
    border-color: rgba(15, 23, 42, 0.2);
}
.cookie-btn-settings {
    background: transparent;
    color: var(--text-light);
    padding: 10px 14px;
    font-size: 13px;
}
.cookie-btn-settings:hover {
    color: var(--blue-primary);
}

.cookie-settings-panel {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.cookie-settings-panel.open {
    display: block;
}
.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.cookie-setting-row:last-child {
    border-bottom: none;
}
.cookie-setting-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.cookie-setting-info p {
    font-size: 12px;
    color: var(--text-light);
}
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--blue-primary);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}
.cookie-save-row {
    padding-top: 12px;
    text-align: right;
}
.cookie-btn-save {
    background: var(--blue-primary);
    color: white;
}
.cookie-btn-save:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 68, 140, 0.3);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    .cookie-icon { display: none; }
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
