* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    --secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --dark-gradient: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    --primary-color: #9333ea;
    --secondary-color: #2563eb;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 50%, #dbeafe 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

.hidden {
    display: none !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 50;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-register-btn,
.nav-back-btn {
    padding: 0.6rem 1.5rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.nav-back-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #000000;
    box-shadow: none;
}

.nav-back-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.nav-register-btn:hover,
.nav-back-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(37, 99, 235, 0.1));
    top: 0;
    right: 0;
}

.hero-glow-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1));
    bottom: 0;
    left: 0;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.08));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    border: 2px solid rgba(147, 51, 234, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    animation: slideUp 0.8s ease-out;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { opacity: 0.7; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideUp 1s ease-out 0.1s both;
}

.rolling-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    min-width: 250px;
    height: 70px;
    line-height: 70px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: slideUp 1s ease-out 0.3s both;
}

/* CTA Container with Gradient Glow */
.cta-container {
    position: relative;
    display: inline-block;
}

.gradient-bg {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #44BCFF 0%, #FF44EC 50%, #FF675E 100%);
    border-radius: 0.75rem;
    opacity: 0.7;
    filter: blur(8px);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
    z-index: -1;
}

.cta-container:hover .gradient-bg {
    opacity: 1;
    inset: -6px;
    filter: blur(12px);
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000000 !important;
    z-index: 10;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.btn-primary {
    background: #000000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000000 !important;
    box-shadow: none !important;
    z-index: 10;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    animation: slideUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

/* Problems Section */
.problems-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.problems-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.03), rgba(37, 99, 235, 0.03));
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(37, 99, 235, 0.08));
}

.feature-icon-box {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Counter Section */
.counter-section {
    padding: 6rem 2rem;
    background: var(--dark-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(147, 51, 234, 0.15), transparent),
                radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.1), transparent);
    pointer-events: none;
}

.counter-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.counter-section h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.counter-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.countdown-item span:first-child {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.counter-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Page 2: Registration */
.register-hero {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.register-container {
    position: relative;
    z-index: 10;
    max-width: 550px;
    width: 100%;
}

/* Registration Form Card */
.registration-form-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

/* Role Selection Cards */
.role-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.75rem;
}

.role-card {
    background: #FAFBFC;
    border: 1.5px solid #E5E7EB;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.role-card:hover {
    border-color: #000000;
    background: #F5F5F5;
    transform: translateY(-1px);
}

.role-card.selected {
    background: #000000;
    border-color: #000000;
    border-width: 1.5px;
}

.role-icon-svg {
    width: 40px;
    height: 40px;
    color: #6B7280;
    margin: 0 auto 0.75rem;
    display: block;
    transition: color 0.3s ease;
}

.role-card:hover .role-icon-svg {
    color: #000000;
}

.role-card.selected .role-icon-svg {
    color: #FFFFFF;
}

.role-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.role-card.selected h3 {
    color: #FFFFFF;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #FAFBFC;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9CA3AF;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000000;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 90px;
}

/* Registration CTA Button */
.register-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000000 !important;
    z-index: 10;
    width: 100%;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 2rem !important;
    transition: all 0.3s ease;
}

.register-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}

.registration-form-card .cta-container {
    width: 100%;
    position: relative;
    margin-top: 1.75rem;
}

.registration-form-card .cta-container .gradient-bg {
    background: linear-gradient(135deg, #44BCFF 0%, #FF44EC 50%, #FF675E 100%);
    opacity: 0.6;
    filter: blur(10px);
    animation: pulse-glow 2s infinite;
    border-radius: 0.75rem;
}

.registration-form-card .cta-container:hover .gradient-bg {
    opacity: 0.9;
    filter: blur(14px);
    inset: -6px;
}

/* Page 3: Blog */
.blog-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    text-align: center;
}

.blog-header-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Blog Section */
.blog-section {
    padding: 4rem 2rem 6rem;
    background: white;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Featured Article */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: #F9FAFB;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.blog-featured:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.blog-featured-image {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.blog-image-placeholder {
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.3);
}

.blog-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.blog-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    background: #E5E7EB;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-date {
    font-size: 0.875rem;
    color: #6B7280;
}

.blog-featured h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-featured p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

.blog-read-more svg {
    width: 20px;
    height: 20px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: #D1D5DB;
}

.blog-card-image {
    background: linear-gradient(135deg, #374151 0%, #4B5563 100%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image .blog-image-placeholder {
    width: 80px;
    height: 80px;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Newsletter CTA */
.blog-newsletter {
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    border-radius: 1.5rem;
    padding: 4rem;
    text-align: center;
    color: white;
}

.blog-newsletter-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-newsletter-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    font-size: 1rem;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: white;
    color: #111827;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-btn:hover {
    background: #F9FAFB;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-email {
    margin-top: 0.5rem;
}

/* Responsive - Enhanced Mobile Support */

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .nav-link:hover,
    .nav-register-btn:hover,
    .nav-back-btn:hover,
    .problem-card:hover,
    .feature-card:hover,
    .countdown-item:hover,
    .social-link:hover,
    .blog-card:hover,
    .blog-featured:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }
    
    /* Use active states instead for touch feedback */
    .btn:active,
    .nav-register-btn:active,
    .cta-btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 8rem 1.5rem 4rem;
    }
    
    .problems-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablet Portrait & Mobile (768px and below) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .nav-register-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .nav-logo-text {
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 7rem 1.5rem 3rem;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .rolling-text {
        min-width: 180px;
        height: 50px;
        line-height: 50px;
        font-size: 1.75rem !important;
        word-break: normal;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    /* Counter Section - IMPORTANT FIX */
    .counter-section {
        padding: 2rem 1rem;
    }
    
    .counter-container {
        padding: 1.5rem 1rem;
    }
    
    .counter-content {
        flex-direction: column;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
    
    .counter-date {
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 0.4rem;
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .countdown-item {
        min-width: 38px;
        flex: 0 0 auto;
        padding: 0.5rem 0.3rem;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
        white-space: nowrap;
    }
    
    .countdown-separator {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
        margin: 0 0.05rem;
        flex: 0 0 auto;
    }
    
    /* Sections */
    .problems-section,
    .features-section {
        padding: 3rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .problems-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .problem-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-section {
        gap: 2rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }
    
    /* Registration Page */
    .register-hero {
        padding: 7rem 1rem 3rem;
    }
    
    .registration-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.35rem;
    }
    
    .role-selection {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .role-card {
        padding: 1.25rem 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    /* Blog Page */
    .blog-header {
        padding: 7rem 1.5rem 3rem;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-header p {
        font-size: 1rem;
    }
    
    .blog-section {
        padding: 2rem 1rem 3rem;
    }
    
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-image {
        min-height: 250px;
    }
    
    .blog-featured-content {
        padding: 2rem 1.5rem;
    }
    
    .blog-featured h2 {
        font-size: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-newsletter {
        padding: 2.5rem 1.5rem;
    }
    
    .blog-newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Success Modal */
    .success-modal-content {
        padding: 2rem 1.5rem;
        width: 85%;
    }
    
    .success-modal h2 {
        font-size: 1.5rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .nav-logo-img {
        height: 32px;
    }
    
    .nav-logo-text {
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .nav-register-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .rolling-text {
        min-width: 150px;
        height: 45px;
        line-height: 45px;
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .counter-section {
        padding: 1.5rem 0.5rem;
    }
    
    .counter-container {
        padding: 1rem 0.75rem;
    }
    
    .countdown {
        gap: 0.2rem;
        max-width: 300px;
    }
    
    .countdown-item {
        min-width: 32px;
        padding: 0.4rem 0.2rem;
    }
    
    .countdown-number {
        font-size: 0.95rem;
    }
    
    .countdown-label {
        font-size: 0.48rem;
        letter-spacing: -0.02em;
    }
    
    .countdown-separator {
        font-size: 0.75rem;
        margin: 0;
        padding-bottom: 0.4rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .registration-form-card {
        padding: 1.5rem 1.25rem;
    }
    
    .blog-newsletter {
        padding: 2rem 1.25rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 50;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-register-btn {
    padding: 0.6rem 1.5rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(37, 99, 235, 0.1));
    top: 0;
    right: 0;
}

.hero-glow-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1));
    bottom: 0;
    left: 0;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.08));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    border: 2px solid rgba(147, 51, 234, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    animation: slideUp 0.8s ease-out;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { opacity: 0.7; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideUp 1s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: slideUp 1s ease-out 0.3s both;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #000000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid rgba(147, 51, 234, 0.2);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    animation: slideUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

/* Problems Section */
.problems-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.problems-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.03), rgba(37, 99, 235, 0.03));
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(37, 99, 235, 0.08));
}

.feature-icon-box {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Counter Section - Sleek & Professional */
.counter-section {
    padding: 3rem 2rem;
    background: transparent;
    position: relative;
}

.counter-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 1.5rem;
    padding: 2rem 4rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.launch-announcement {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.counter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.counter-date {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-subtitle {
    font-size: 1rem;
    color: #111827 !important;
    margin-top: 0.5rem;
    font-weight: 500;
}

.counter-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    margin-top: 0.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0.25rem;
    padding-bottom: 1rem;
}

/* Problems Section - Professional Icons */
.problems-section {
    padding: 5rem 2rem;
    background: #F9FAFB;
}

.problems-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: #111827;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Features Section - Professional Icons */
.features-section {
    padding: 5rem 2rem;
    background: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: white;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: #111827;
}

.feature-icon-box svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Register Section */
.register-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.register-container {
    max-width: 600px;
    margin: 0 auto;
}

.register-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.register-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.register-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.signup-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-direction: column;
}

.form-input {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.social-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(147, 51, 234, 0.1);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 3rem 2rem 2rem;
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 35px;
    width: 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    stroke: none;
}

.footer-links-section {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-column a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.2);
}

.footer-email {
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .counter-container {
        padding: 2rem 1.5rem;
    }
    
    .counter-content {
        justify-content: center;
        text-align: center;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-separator {
        font-size: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links-section {
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }
    
    .role-selection {
        grid-template-columns: 1fr;
    }
    
    .registration-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    /* Blog Responsive */
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-image {
        min-height: 300px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-newsletter {
        padding: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.success-modal.show {
    display: flex;
}

.success-modal-content {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 3;
}

.success-modal h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.success-modal p {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-subtext {
    font-size: 0.95rem;
    color: #9CA3AF;
    margin-top: -0.5rem;
}

.success-email {
    background: #F5F5F5;
    border-radius: 1rem;
    padding: 1rem;
    margin: 1.5rem 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.success-btn {
    background: #000000;
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.success-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-close-btn {
    background: #000000;
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}