/* ===================================
   SLAVIC DATING - CUSTOM CSS
   Mobile-First Responsive Design
   =================================== */

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
    overflow-x: hidden;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

.header-nav {
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 1001;
}

.logo svg {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    background: transparent;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--background-color);
    padding: 80px 20px 20px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 0.5rem;
}

.nav-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.nav-menu a:hover {
    background-color: var(--background-secondary);
    color: var(--primary-color);
    transform: translateX(5px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-secondary);
    color: var(--text-primary);
    transition: all var(--transition-speed);
}

.theme-toggle:hover {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.theme-icon {
    width: 20px;
    height: 20px;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="light"] .moon-icon {
    display: none;
}

.header-cta {
    display: none;
}

/* ===================================
   BUTTONS
   =================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-speed);
    text-align: center;
    min-height: 44px;
    cursor: pointer;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.cta-tertiary {
    background-color: var(--background-secondary);
    color: var(--text-primary);
}

.cta-tertiary:hover {
    background-color: var(--background-tertiary);
}

.cta-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(196, 30, 58, 0);
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.85), rgba(139, 69, 19, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-value-prop {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-item svg {
    flex-shrink: 0;
}

/* ===================================
   WHY CHOOSE SECTION
   =================================== */
.why-choose-section {
    padding: 4rem 0;
    background-color: var(--background-secondary);
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.benefit-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: justify;
}

/* ===================================
   PROFILES SECTION
   =================================== */
.profiles-section {
    padding: 4rem 0;
}

.profiles-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-card {
    background-color: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 2px solid var(--border-light);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.profile-image {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
}

.profile-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verification-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border-radius: 50%;
    padding: 6px;
    box-shadow: var(--shadow-md);
}

.profile-info {
    padding: 1.5rem;
}

.profile-info h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.profile-location {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.profile-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.profiles-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works-section {
    padding: 4rem 0;
    background-color: var(--background-secondary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-features {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
}

.step-features li {
    padding: 8px 12px;
    background-color: var(--background-secondary);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--secondary-color);
}

/* ===================================
   SUCCESS STORIES SECTION
   =================================== */
.success-stories-section {
    padding: 4rem 0;
}

.testimonials {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    display: grid;
    gap: 2rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-image {
    width: 100%;
    height: 250px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 2rem;
}

.couple-info h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.timeline-badge {
    padding: 6px 12px;
    background-color: var(--secondary-color);
    color: var(--text-inverse);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.highlight-quote {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background-color: var(--success-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    color: white;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===================================
   SLAVIC WOMEN SECTION
   =================================== */
.slavic-women-section {
    padding: 4rem 0;
    background-color: var(--background-secondary);
}

.content-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-block {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.content-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.stats-inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stats-inline .stat-item {
    padding: 1rem;
    background-color: var(--background-secondary);
    border-radius: 8px;
    text-align: center;
}

.stats-inline strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stats-inline span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cultural-gallery {
    margin-top: 3rem;
}

.cultural-gallery h3 {
    font-size: 1.8rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed);
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item p {
    padding: 1rem;
    background-color: var(--background-color);
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: 4rem 0;
}

.features-comparison {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.comparison-header h3 {
    font-size: 1.8rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.comparison-table {
    background-color: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.feature-row:last-child {
    border-bottom: none;
}

.header-row {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    text-align: center;
}

.feature-name {
    text-align: left;
}

.feature-name strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-name span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feature-free,
.feature-premium {
    text-align: center;
}

.limited-badge {
    padding: 4px 12px;
    background-color: var(--warning-color);
    color: var(--text-inverse);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.credit-system-info {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
}

.credit-system-info h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.credit-system-info > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.credit-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credit-item {
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
}

.welcome-bonus {
    text-align: center;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--text-inverse);
    border-radius: 8px;
    font-size: 1.1rem;
}

.feature-testimonial {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.feature-testimonial blockquote {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-testimonial cite {
    display: block;
    text-align: right;
    color: var(--text-primary);
    font-weight: 600;
    font-style: normal;
}

.cta-note {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===================================
   SAFETY SECTION
   =================================== */
.safety-section {
    padding: 4rem 0;
    background-color: var(--background-secondary);
}

.security-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.security-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.security-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.security-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.security-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.security-features {
    display: grid;
    gap: 1rem;
}

.security-features li {
    padding: 12px;
    background-color: var(--background-secondary);
    border-radius: 8px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.security-features strong {
    color: var(--text-primary);
}

.trust-badges-section {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.trust-badges-section h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.badges-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.trust-badge span {
    font-weight: 600;
    color: var(--text-primary);
}

.safety-tips {
    max-width: 900px;
    margin: 3rem auto;
}

.safety-tips h3 {
    font-size: 1.8rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.tips-grid {
    display: grid;
    gap: 1.5rem;
}

.tip-card {
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.support-info {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.support-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.support-info > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.support-details {
    display: grid;
    gap: 1rem;
}

.support-item {
    padding: 12px;
    background-color: var(--background-secondary);
    border-radius: 8px;
    color: var(--text-secondary);
}

.support-item strong {
    color: var(--text-primary);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: 4rem 0;
}

.pricing-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.recommended {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-inverse);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    border-bottom-left-radius: 12px;
}

.card-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--background-secondary), var(--background-tertiary));
}

.card-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.card-body {
    padding: 2rem;
}

.package-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.features-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.billing-options {
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--background-secondary);
    border-radius: 8px;
}

.billing-option {
    padding: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.save-badge {
    padding: 4px 8px;
    background-color: var(--success-color);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-footer {
    padding: 0 2rem 2rem;
}

.card-footer .cta-button {
    width: 100%;
}

.pricing-faq {
    max-width: 900px;
    margin: 3rem auto;
}

.pricing-faq h3 {
    font-size: 1.8rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-guarantee {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--background-secondary);
    border-radius: 12px;
    text-align: center;
}

.guarantee-badge {
    margin-bottom: 1rem;
}

.pricing-guarantee h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-guarantee p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.comparison-note {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-inverse);
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-secondary), var(--background-tertiary));
}

.cta-content-wrapper {
    display: grid;
    gap: 2rem;
}

.benefits-summary h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.benefits-checklist {
    display: grid;
    gap: 1rem;
}

.benefits-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px;
    background-color: var(--background-color);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.final-cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.value-proposition {
    margin-bottom: 2rem;
}

.value-proposition p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.emotional-appeal {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.urgency-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.scarcity-badge,
.activity-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background-color: var(--warning-color);
    color: var(--text-inverse);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.activity-badge {
    background-color: var(--success-color);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.cta-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.final-trust-indicators {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: 8px;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.trust-item span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background-color: var(--background-tertiary);
    color: var(--text-secondary);
}

.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-column ul {
    display: grid;
    gap: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    transition: color var(--transition-speed);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background-color: var(--success-color);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.trust-badge-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-badge-small span {
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-cta-bar {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-cta-content p {
    color: white;
    font-size: 1.2rem;
}

.footer-social-proof {
    padding: 2rem 0;
    background-color: var(--background-secondary);
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.social-stats .stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.social-stats .stat span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-bottom {
    padding: 1.5rem 0;
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
}

.footer-bottom-content {
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
}

.age-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.rta-label {
    padding: 4px 8px;
    background-color: var(--error-color);
    color: white;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* ===================================
   LEGAL MODALS
   =================================== */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-secondary);
    color: var(--text-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.modal-close:hover {
    background-color: var(--error-color);
    color: white;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        background-color: transparent;
    }
    
    .nav-menu li {
        margin-bottom: 0;
    }
    
    .nav-menu a {
        padding: 8px 12px;
    }
    
    .nav-menu a:hover {
        transform: none;
    }
    
    .header-cta {
        display: inline-flex;
    }
    
    .hero-cta-group {
        flex-direction: row;
    }
    
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profiles-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonial-card {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .testimonial-card.reverse {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .testimonial-card.reverse .testimonial-image {
        order: 2;
    }
    
    .testimonial-image {
        height: 100%;
    }
    
    .success-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .credit-details {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .badges-row {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content-wrapper {
        grid-template-columns: 1fr 2fr;
    }
    
    .cta-buttons-group {
        flex-direction: row;
    }
    
    .final-trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    header,
    .hero-section,
    .cta-button,
    footer {
        display: none;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
