/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* Brand Colors from Logo */
    --logo-dark-blue: #1a3f6f;
    --logo-medium-blue: #2563eb;
    --logo-light-blue: #5b9fdb;
    --logo-sky-blue: #a8d5f7;
    --logo-pale-blue: #dbeafe;
    
    /* Primary Colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-hover: var(--primary-dark);
    --primary-10: rgba(37, 99, 235, 0.1);
    --primary-05: rgba(37, 99, 235, 0.05);
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-contrast: #ffffff;

    /* Accent Colors */
    --accent: #06b6d4;
    --accent-dark: #0891b2;

    /* Semantic Colors */
    --success-color: #22c55e;
    --success-hover: #16a34a;
    --success-bg: rgba(34, 197, 94, 0.05);
    --success-text: #155724;
    --success-border: #bbf7d0;
    --success-50: #f0fdf4;
    --success-100: #dcfce7;
    --success-200: #bbf7d0;
    --success-300: #86efac;

    --warning-color: #f59e0b;
    --warning-hover: #d97706;
    --warning-bg: rgba(245, 158, 11, 0.05);
    --warning-50: #fffbeb;
    --warning-100: #fef3c7;
    --warning-200: #fde68a;
    --warning-300: #fcd34d;

    /* Bright Yellow for Break/Pause */
    --break-color: #fbbf24;
    --break-hover: #f59e0b;
    --break-bg: rgba(251, 191, 36, 0.1);
    --break-50: #fffbeb;
    --break-100: #fef3c7;
    --break-200: #fde68a;
    --break-300: #fcd34d;

    --danger-color: #dc2626;
    --danger-hover: #b91c1c;
    --danger-bg: rgba(220, 38, 38, 0.05);
    --danger-100: rgba(220, 38, 38, 0.1);
    --danger-text: #991b1b;
    --danger-border: #fecaca;

    /* Neutral Colors */
    --background-color: #ffffff;
    --sidebar-background: #f8f9fa;
    --card-background: #ffffff;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-tertiary: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --muted: #ececec;

    /* UI Elements */
    --selected-item-bg: #1f2937;
    --selected-item-text: #ffffff;
    --modal-overlay: rgba(15, 23, 42, 0.55);
    --modal-overlay-blur: 8px;
    --mobile-nav-height: 88px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition: all 0.2s ease-in-out;
}


/* ============================================
   LANDING2 PAGE - TIMEPEAK SALES FUNNEL
   ============================================ */

.landing2-page {
    background: #ffffff;
}

/* Logo TimePeak */
.logo-timepeak {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-timepeak .logo-icon {
    font-size: 28px;
    height: 100px;
}

.logo-timepeak .logo-text {
    font-size: 28px;
    height: 50px;
}

/* Header */
.landing2-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
}

.landing2-header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.landing2-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.landing2-header .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.landing2-header .nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s;
}

.landing2-header .nav a:hover {
    color: var(--primary-color);
}

.nav-link-subtle {
    opacity: 0.7;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section */
.hero2-section {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, var(--logo-pale-blue) 0%, #f0f9ff 50%, #faf5ff 100%);
    overflow: hidden;
}

.hero2-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero2-content {
    max-width: 600px;
}

.hero2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--logo-medium-blue), var(--logo-light-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero2-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--logo-medium-blue), var(--logo-light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero2-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.hero2-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero2-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--logo-medium-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.4;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: #e5e7eb;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--logo-medium-blue), var(--logo-light-blue));
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: white;
    color: var(--logo-medium-blue);
    border: 2px solid var(--logo-medium-blue);
}

.btn-outline:hover {
    background: var(--primary-05);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 17px;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.pulse-glow {
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
        transform: scale(1.02);
    }
}

.cta-note {
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-note i {
    color: var(--success-color);
    font-size: 16px;
}

/* Hero Visual - Mockup */
.hero2-visual {
    position: relative;
}

.mockup-container {
    position: relative;
    transform: perspective(1500px) rotateY(-8deg);
    transition: transform 0.6s ease;
}

.mockup-container:hover {
    transform: perspective(1500px) rotateY(0deg);
}

.mockup-frame {
    background: white;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mockup-header {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #febc2e;
}

.mockup-dots span:nth-child(3) {
    background: #28c840;
}

.mockup-content {
    padding: 2.5rem;
}

.mockup-timer {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 16px;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.timer-display-mock {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.timer-label-mock {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
}

.mockup-clients {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.client-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.client-chip:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.chip-time {
    color: var(--success-color);
    font-size: 18px;
}

/* Problem Section */
.problem-section {
    padding: 80px 2rem;
    background: linear-gradient(180deg, transparent, var(--logo-pale-blue));
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    background: var(--primary-10);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-intro {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

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

.problem-card {
    padding: 2rem;
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1.5rem;
}

.problem-icon.red {
    background: #fee2e2;
    color: #dc2626;
}

.problem-icon.orange {
    background: #fed7aa;
    color: #ea580c;
}

.problem-icon.yellow {
    background: #fef3c7;
    color: #d97706;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-impact {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Solution Section */
.solution-section {
    padding: 80px 2rem;
    background: #f9fafb;
}

.solution-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--primary-color);
}

.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.solution-benefits li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-benefits i {
    color: var(--success-color);
    font-size: 24px;
    flex-shrink: 0;
}

.solution-benefits strong {
    display: block;
    font-size: 18px;
    margin-bottom: 0.25rem;
}

.solution-benefits span {
    color: var(--text-color);
    font-size: 16px;
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-item {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.showcase-metric {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.metric-growth {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
}

.showcase-label {
    color: var(--text-color);
    font-size: 14px;
}

/* Features Section */
.features2-section {
    padding: 80px 2rem;
    background: linear-gradient(135deg, #faf5ff 0%, var(--logo-pale-blue) 100%);
}

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

.feature2-card {
    padding: 2rem;
    text-align: center;
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature2-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.feature2-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 1.5rem;
}

.feature2-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.feature2-icon.purple {
    background: #ede9fe;
    color: #7c3aed;
}

.feature2-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.feature2-icon.orange {
    background: #fed7aa;
    color: #ea580c;
}

.feature2-icon.teal {
    background: #ccfbf1;
    color: #0d9488;
}

.feature2-icon.red {
    background: #fee2e2;
    color: #dc2626;
}

.feature2-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Testimonials */
.testimonial-section {
    padding: 80px 2rem;
    background: #f9fafb;
}

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

.testimonial-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.author-role {
    font-size: 13px;
    color: var(--text-color);
}

/* Pricing Section */
.pricing2-section {
    padding: 80px 2rem;
    background: white;
}

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

.pricing2-card {
    padding: 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing2-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing2-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.pricing2-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing2-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 16px;
    color: var(--text-color);
}

.pricing2-desc {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.pricing2-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing2-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.pricing2-features i {
    color: var(--success-color);
}

.pricing2-note {
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing2-note i {
    color: var(--success-color);
}

/* Final CTA */
.final-cta-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3),
        0 4px 40px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.final-cta-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 1;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25),
        0 3px 30px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-trust {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-trust i {
    color: #10b981;
    font-size: 16px;
    margin-right: 0.35rem;
}

.cta-trust>span,
.cta-trust>div {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-trust>span:hover,
.cta-trust>div:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer */
.landing2-footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo-timepeak {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #f8fafc;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: flex;
    align-items: center;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.875rem;
    transition: all 0.3s ease;
    font-size: 14px;
    padding: 0.25rem 0;
}

.footer-column a:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* Registration Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-register {
    padding: 2.5rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #f3f4f6;
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-color);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-color);
}

.form-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.register-success {
    text-align: center;
}

.success-icon {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.register-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.register-success strong {
    color: var(--primary-color);
}

.help-text {
    margin-top: 1.5rem;
    font-size: 14px;
    color: var(--text-color);
}

.help-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

/* Fade-in animation for sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero2-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero2-content {
        max-width: 100%;
        order: 1;
    }

    .hero2-visual {
        order: 2;
    }

    .hero2-title {
        font-size: 40px;
    }

    .hero2-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .features2-grid,
    .testimonial-grid,
    .pricing2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .landing2-header .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .landing2-header .nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero2-section {
        padding: 100px 1rem 60px;
    }

    .hero2-title {
        font-size: 32px;
    }

    .hero2-subtitle {
        font-size: 16px;
    }

    .hero2-stats {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .btn-xl {
        width: 100%;
    }

    .features2-grid,
    .testimonial-grid,
    .pricing2-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column a:hover {
        transform: translateX(0);
    }
}

/* Logo color accent throughout the site */
.highlight-text {
    color: var(--logo-medium-blue);
}

.feature2-card {
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.feature2-card:hover {
    border-top-color: var(--logo-light-blue);
    transform: translateY(-4px);
}

.testimonial-card {
    border-left: 4px solid var(--logo-light-blue);
}

.pricing2-card.featured {
    border: 2px solid var(--logo-light-blue);
    background: linear-gradient(135deg, var(--logo-pale-blue) 0%, white 100%);
}

.pricing2-card.featured .pricing2-badge {
    background: linear-gradient(135deg, var(--logo-medium-blue), var(--logo-light-blue));
    color: white;
}

.final-cta-section {
    background: linear-gradient(135deg, var(--logo-medium-blue) 0%, var(--logo-light-blue) 100%);
    color: white;
}
