/**
 * Yeni İngilizce Kulübü - TalkyClub
 * Clean, Bold, Brutalist Design
 */

/* ========== CSS Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* ========== Typography ========== */
h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* ========== Layout ========== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 80px 0;
}

/* ========== Header ========== */
header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #6c5ce7;
}

.mobile-toggle {
    display: none;
}

/* ========== Hero Section Premium ========== */
/* Hero Container */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f0f23;
    padding: 80px 0 0 0;
}

/* Animated Background */
.hero-bg-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.95;
}

.hero-bg-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Grid Pattern Overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

/* Main Content Container */
.hero-main-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Split Layout */
.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .hero-split-layout {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 5rem;
    }
}

/* Left Content */
.hero-left-content {
    color: white;
}

/* Premium Badge */
.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 0.875rem 1.75rem;
    border-radius: 60px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pulse-ring {
    width: 10px;
    height: 10px;
    background: #48bb78;
    border-radius: 50%;
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid #48bb78;
    border-radius: 50%;
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Main Heading */
.hero-main-heading {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: white;
}

@media (min-width: 768px) {
    .hero-main-heading {
        font-size: 5.5rem;
    }
}

.hero-highlight-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero-highlight-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 4px;
    opacity: 0.3;
}

/* Subtitle */
.hero-subtitle-premium {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 500;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta-group {
        flex-direction: row;
    }
}

.btn-premium-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.375rem 2.75rem;
    background: white;
    color: #667eea;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-premium-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-premium-primary:hover::before {
    opacity: 1;
}

.btn-premium-primary:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-premium-primary span {
    position: relative;
    z-index: 1;
}

.btn-premium-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.375rem 2.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-premium-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Stats Row */
.hero-stats-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5rem;
}

.stat-item-premium {
    position: relative;
}

.stat-number-premium {
    font-size: 3.25rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.625rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-premium {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Right Content - Floating Cards */
.hero-right-content {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-right-content {
        display: block;
    }
}

.floating-cards-container {
    position: relative;
    width: 100%;
    height: 600px;
}

/* Feature Card */
.feature-card-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: cardFloat 6s ease-in-out infinite;
}

.feature-card-float:nth-child(1) {
    top: 10%;
    right: 10%;
    width: 280px;
    animation-delay: 0s;
}

.feature-card-float:nth-child(2) {
    top: 40%;
    left: 5%;
    width: 300px;
    animation-delay: 2s;
}

.feature-card-float:nth-child(3) {
    bottom: 15%;
    right: 0;
    width: 260px;
    animation-delay: 4s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(2deg);
    }
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
    animation: decorationFloat 12s ease-in-out infinite;
}

.hero-decoration:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-decoration:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -5%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes decorationFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Arrow Icon Animation */
.arrow-animated {
    transition: transform 0.3s;
}

.btn-premium-primary:hover .arrow-animated {
    transform: translateX(6px);
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #6c5ce7;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    background-color: #5a4ddb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #6c5ce7;
    border: 2px solid #6c5ce7;
}

.btn-secondary:hover {
    background-color: #6c5ce7;
    color: #ffffff;
}

/* ========== Problem Section ========== */
.problem-section {
    background-color: #fafafa;
}

.problem-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.problem-section .subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #6a6a6a;
    margin-bottom: 4rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.problem-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #6c5ce7;
}

.problem-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-card h3 {
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

/* ========== Solution Section ========== */
.solution-section {
    text-align: center;
}

.solution-section h2 {
    margin-bottom: 1rem;
}

.solution-section .subtitle {
    font-size: 1.25rem;
    color: #6a6a6a;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.solution-item {
    padding: 2rem;
}

.solution-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.solution-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========== Testimonials ========== */
.testimonials {
    background-color: #f8f9ff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6a6a6a;
    margin-bottom: 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
}

/* ========== Pricing ========== */
.pricing {
    background-color: #ffffff;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6a6a6a;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: #6c5ce7;
    border-width: 3px;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6c5ce7;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #6c5ce7;
    line-height: 1;
    margin: 1.5rem 0;
}

.pricing-period {
    font-size: 1.1rem;
    color: #7a7a7a;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.pricing-features li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1.5rem;
}

/* ========== FAQ ========== */
.faq {
    background-color: #fafafa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, #6c5ce7 0%, #8b7cf5 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.cta-section .btn {
    background: #ffffff;
    color: #6c5ce7;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.cta-section .btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* ========== Footer ========== */
footer {
    background: #0f172a;
    /* Darker, richer blue-black */
    color: #94a3b8;
    /* Slate-400 for text */
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    margin-bottom: 2rem;
    max-width: 350px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6c5ce7;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #6c5ce7;
    padding-left: 5px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    margin-top: 1rem;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #6c5ce7;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 35px;
    background: #6c5ce7;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #5a4ddb;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #94a3b8;
}

.separator {
    color: #475569;
}

/* Responsive Footer */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .problem-grid,
    .solution-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-desc {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-col {
        grid-column: span 2;
        text-align: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 1rem auto 0;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-col {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}/* Modern Sections Styles for Homepage */

/* Section Header Modern */
.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(139, 92, 246, 0.1));
    color: #6366f1;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-header-modern h2 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-modern p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Modern */
.features-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item-modern:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feature-item-modern.featured-item {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    color: white;
}

.feature-item-modern.featured-item h3,
.feature-item-modern.featured-item p {
    color: white;
}

.feature-tag-modern {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-icon-modern {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item-modern h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.feature-item-modern p {
    color: #64748b;
    line-height: 1.7;
}

/* How It Works Modern */
.how-it-works-modern {
    padding: 100px 0;
    background: white;
}

.steps-container-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-modern {
    flex: 1;
    position: relative;
}

.step-number-modern {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    z-index: 2;
}

.step-content-modern {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem 2rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.step-modern:hover .step-content-modern {
    transform: translateY(-5px);
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.step-icon-circle {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-content-modern h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.step-content-modern p {
    color: #64748b;
    font-size: 0.95rem;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 2rem;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.step-modern:last-child .step-connector {
    display: none;
}

/* Testimonials Modern */
.testimonials-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.testimonial-modern:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
}

.testimonial-modern.highlight-testimonial {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    color: white;
}

.testimonial-modern.highlight-testimonial .testimonial-name-modern,
.testimonial-modern.highlight-testimonial .testimonial-role-modern,
.testimonial-modern.highlight-testimonial .testimonial-text-modern {
    color: white;
}

.testimonial-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-avatar-modern {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.testimonial-name-modern {
    font-weight: 800;
    font-size: 1.05rem;
    color: #1a1a1a;
}

.testimonial-role-modern {
    font-size: 0.875rem;
    color: #64748b;
}

.testimonial-rating-modern {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text-modern {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1a1a1a;
}

/* Pricing Modern */
.pricing-modern {
    padding: 100px 0;
    background: white;
}

.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-modern {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    border-color: #6366f1;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.pricing-card-modern.featured-pricing {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    transform: scale(1.05);
    color: white;
}

.pricing-card-modern.featured-pricing h3,
.pricing-card-modern.featured-pricing .price-amount-modern,
.pricing-card-modern.featured-pricing .price-period-modern,
.pricing-card-modern.featured-pricing .pricing-features-modern li {
    color: white;
}

.pricing-badge-modern {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.pricing-header-modern {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.pricing-card-modern.featured-pricing .pricing-header-modern {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-header-modern h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.pricing-price-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount-modern {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period-modern {
    font-size: 1rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.pricing-features-modern {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features-modern li {
    padding: 0.875rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.pricing-card-modern.featured-pricing .pricing-features-modern li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features-modern li:last-child {
    border-bottom: none;
}

.pricing-btn-modern {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.125rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary-modern {
    background: #f8fafc;
    color: #1a1a1a;
    border: 2px solid #e2e8f0;
}

.btn-secondary-modern:hover {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.pricing-card-modern.featured-pricing .btn-primary-modern {
    background: white;
    color: #6366f1;
}

.pricing-card-modern.featured-pricing .btn-secondary-modern {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* FAQ Modern */
.faq-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-container-modern {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-modern {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item-modern:hover {
    border-color: #6366f1;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
}

.faq-question-modern {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
    user-select: none;
}

.faq-question-modern svg {
    transition: transform 0.3s;
    flex-shrink: 0;
    stroke: #6366f1;
}

.faq-item-modern.active .faq-question-modern svg {
    transform: rotate(180deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

/* CTA Modern */
.cta-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    text-align: center;
}

.cta-content-modern h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-content-modern>p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #6366f1;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cta-note-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {

    .features-grid-modern,
    .testimonials-grid-modern,
    .pricing-grid-modern {
        grid-template-columns: 1fr;
    }

    .steps-container-modern {
        flex-direction: column;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-header-modern h2 {
        font-size: 2rem;
    }

    .cta-content-modern h2 {
        font-size: 2rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
    }

    .feature-item-modern,
    .testimonial-modern,
    .pricing-card-modern {
        padding: 2rem 1.5rem;
    }
}
