/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0057A0;
    --primary-dark: #19138b;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #0057A0 0%, #19138b 100%);
    --gradient-secondary: linear-gradient(135deg, #1a5328 0%, #399684 100%);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

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

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

.nav-logo i {
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.08), 0 1.5px 6px 0 rgba(30, 41, 59, 0.04);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.13rem;
    font-weight: 500;
    color: var(--charcoal-black);
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s cubic-bezier(.4,2,.6,1);
    position: relative;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.13), 0 2px 8px 0 rgba(30, 41, 59, 0.07);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, #0057A0 0%, #28A745 100%);
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px 0 rgba(30, 41, 59, 0.10);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-text {
    font-size: 1.13rem;
    font-weight: 600;
    color: var(--charcoal-black);
}

.feature-card-badge {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, #28A745 0%, #0057A0 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border-radius: 1.25rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 24px 0 rgba(16, 185, 129, 0.10);
    letter-spacing: 0.01em;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 1.25em;
}

@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .feature-card {
        padding: 1.5rem 0.8rem 1.1rem 0.8rem;
        font-size: 1rem;
    }
    .feature-card-badge {
        font-size: 1rem;
        min-height: 60px;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.about-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.about-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}
@media (max-width: 700px) {
  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    padding: 0 0.3rem;
  }
}
@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 0.93rem;
    line-height: 1.35;
    margin-bottom: 0.7rem;
    padding: 0 0.1rem;
  }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* What You Get Section */
.what-you-get {
    background: var(--bg-primary);
    padding: 60px 0;
}

.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
}

.what-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.what-card i {
    font-size: 1.7rem;
    color: #28A745;
    flex-shrink: 0;
}

.what-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #28A745;
    transform: translateY(-4px) scale(1.03);
}

.what-callout {
    text-align: center;
    margin-top: 1.5rem;
}

.what-badge {
    display: inline-block;
    background: linear-gradient(90deg, #28A745 0%, #0057A0 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 2px 12px rgba(40,167,69,0.08);
    letter-spacing: 0.01em;
}

@media (max-width: 600px) {
    .what-you-get-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .what-card {
        font-size: 1rem;
        padding: 1.1rem 1rem;
    }
    .what-badge {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

/* What You Get Premium Section */
.what-you-get-premium {
    background: linear-gradient(135deg, #f9fafb 60%, #e3f6f1 100%);
    padding: 70px 0 60px 0;
}

.what-you-get-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem auto;
}

.what-premium-card {
    background: rgba(255,255,255,0.85);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,87,160,0.08), 0 1.5px 8px rgba(40,167,69,0.04);
    border: 1.5px solid #e3e8ee;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    min-height: 270px;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
    animation: fadeInUp 0.7s cubic-bezier(0.4,0,0.2,1);
}

.what-premium-card:hover {
    box-shadow: 0 12px 36px rgba(0,87,160,0.13), 0 2px 12px rgba(40,167,69,0.08);
    border-color: #28A745;
    background: rgba(255,255,255,0.97);
    transform: translateY(-6px) scale(1.03);
}

.what-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.what-premium-card i {
    font-size: 2rem;
    color: #fff;
}

.what-premium-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.what-premium-desc {
    font-size: 1.04rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0.2rem;
}

.what-premium-callout {
    text-align: center;
    margin-top: 2.2rem;
}

.what-premium-badge {
    display: inline-block;
    background: linear-gradient(90deg, #28A745 0%, #0057A0 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 1rem 2.2rem;
    border-radius: 2rem;
    box-shadow: 0 2px 12px rgba(40,167,69,0.08);
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
}

.what-desc {
    color: var(--text-secondary);
    font-size: 1.13rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (max-width: 900px) {
    .what-you-get-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .what-you-get-premium-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .what-premium-card {
        font-size: 1rem;
        padding: 1.3rem 0.7rem 1.1rem 0.7rem;
        min-height: 200px;
    }
    .what-premium-badge {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

/* What You Get Stepper Section */
.what-you-get-stepper {
    background: linear-gradient(135deg, #f9fafb 60%, #e3f6f1 100%);
    padding: 70px 0 60px 0;
}

.what-stepper-list {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    position: relative;
}

.what-step {
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;
    position: relative;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,87,160,0.06);
    padding: 1.3rem 1.2rem 1.3rem 1.2rem;
    min-height: 90px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.what-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 60px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(180deg, #0057A0 0%, #28A745 100%);
    opacity: 0.18;
    z-index: 0;
}

.what-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0057A0 0%, #28A745 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,87,160,0.08);
    flex-shrink: 0;
    z-index: 1;
    border: 3px solid #fff;
    margin-top: 0.2rem;
}

.what-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.what-step-icon {
    font-size: 1.5rem;
    color: #28A745;
    margin-bottom: 0.1rem;
}

.what-step-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.1rem;
}

.what-step-desc {
    font-size: 1.01rem;
    color: var(--text-secondary);
    margin-bottom: 0.1rem;
}

.what-stepper-callout {
    text-align: center;
    margin-top: 2.2rem;
}

.what-stepper-badge {
    display: inline-block;
    background: linear-gradient(90deg, #28A745 0%, #0057A0 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 1rem 2.2rem;
    border-radius: 2rem;
    box-shadow: 0 2px 12px rgba(40,167,69,0.08);
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
}

.what-desc {
    color: var(--text-secondary);
    font-size: 1.13rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (max-width: 700px) {
    .what-stepper-list {
        max-width: 98vw;
        gap: 1.2rem;
    }
    .what-step {
        padding: 1rem 0.7rem 1rem 0.7rem;
    }
    .what-step-circle {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
    }
    .what-stepper-badge {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

/* What You Get Horizontal Stepper Section */
.what-you-get-horizontal-stepper {
    background: linear-gradient(135deg, #f9fafb 60%, #e3f6f1 100%);
    padding: 70px 0 60px 0;
}

.what-horizontal-stepper-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
    overflow-x: auto;
    padding-bottom: 1.5rem;
}

.what-horizontal-stepper-line {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0057A0 0%, #28A745 100%);
    opacity: 0.13;
    z-index: 0;
    margin: 0 40px;
}

.what-horizontal-stepper-list {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: flex-start;
    min-width: 900px;
}

.what-hstep {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,87,160,0.06);
    padding: 1.2rem 1.1rem 1.1rem 1.1rem;
    min-width: 180px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.what-hstep:hover {
    box-shadow: 0 8px 32px rgba(0,87,160,0.13);
    transform: translateY(-6px) scale(1.04);
}

.what-hstep-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0057A0 0%, #28A745 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,87,160,0.08);
    border: 3px solid #fff;
    margin-bottom: 0.7rem;
    z-index: 2;
}

.what-hstep-icon {
    font-size: 1.7rem;
    color: #28A745;
    margin-bottom: 0.5rem;
}

.what-hstep-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    text-align: center;
}

.what-hstep-desc {
    font-size: 1.01rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0.1rem;
}

.what-horizontal-stepper-callout {
    text-align: center;
    margin-top: 2.2rem;
}

.what-horizontal-stepper-badge {
    display: inline-block;
    background: linear-gradient(90deg, #28A745 0%, #0057A0 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 1rem 2.2rem;
    border-radius: 2rem;
    box-shadow: 0 2px 12px rgba(40,167,69,0.08);
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
}

@media (max-width: 1200px) {
    .what-horizontal-stepper-list {
        min-width: 900px;
    }
}
@media (max-width: 900px) {
    .what-horizontal-stepper-list {
        min-width: 700px;
        gap: 1.2rem;
    }
}
@media (max-width: 700px) {
    .what-horizontal-stepper-list {
        min-width: 600px;
        gap: 0.7rem;
    }
    .what-hstep {
        min-width: 140px;
        min-height: 180px;
        padding: 0.8rem 0.5rem 0.8rem 0.5rem;
    }
    .what-hstep-circle {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
    }
    .what-horizontal-stepper-badge {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

/* What You Get Card Grid */
.what-you-get-cards {
    padding: 80px 0 60px 0;
    background: var(--off-white);
}
.what-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.what-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.08), 0 1.5px 6px 0 rgba(30, 41, 59, 0.04);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s cubic-bezier(.4,2,.6,1);
    position: relative;
}
.what-card:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.13), 0 2px 8px 0 rgba(30, 41, 59, 0.07);
}
.what-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px 0 rgba(30, 41, 59, 0.10);
}
.what-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--charcoal-black);
    margin-bottom: 0.5rem;
    text-align: center;
}
.what-card-desc {
    font-size: 1rem;
    color: var(--steel-gray);
    text-align: center;
    margin-bottom: 0;
}

/* Badge Card */
.what-card-badge {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, var(--bright-teal) 0%, var(--emerald-green) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border-radius: 1.25rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 24px 0 rgba(16, 185, 129, 0.10);
    letter-spacing: 0.01em;
}
.what-card-badge-content {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 1.25em;
}

@media (max-width: 700px) {
    .what-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .what-card {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    .what-card-badge {
        font-size: 1rem;
        min-height: 60px;
    }
}

/* Remove old stepper/timeline styles if present */
.what-you-get-horizontal-stepper, .what-horizontal-stepper-wrapper, .what-stepper-step, .what-stepper-connector, .what-stepper-number, .what-stepper-icon, .what-stepper-title, .what-stepper-desc, .what-stepper-badge {
    display: none !important;
}

/* Remove old checkmark style if not needed */
.feature-check { display: none; }

/* Target Audience Panel */
.target-audience-panel {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.08), 0 1.5px 6px 0 rgba(30, 41, 59, 0.04);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin: 2.5rem auto 0 auto;
  max-width: 700px;
  text-align: center;
}
.target-audience-panel h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}
.target-audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.target-audience-list li {
  font-size: 1.08rem;
  color: var(--charcoal-black);
  background: #f3f4f6;
  border-radius: 0.75rem;
  margin-bottom: 0.7rem;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
  justify-content: flex-start;
}
.target-audience-list li::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  margin-right: 0.7em;
  font-size: 1.1em;
}
@media (max-width: 700px) {
  .target-audience-panel {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  }
  .target-audience-list li {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
  }
}

/* Target Audience Label UI */
.target-audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.audience-chip {
  display: flex;
  align-items: center;
  background: #f3f4f6;
  color: var(--charcoal-black);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.4rem;
  padding: 0.55em 1.1em 0.55em 0.9em;
  border: 1.5px solid #e3e8ee;
  box-shadow: 0 1px 4px rgba(0,87,160,0.04);
  position: relative;
  min-height: 2.1em;
  margin-bottom: 0.1rem;
  transition: border 0.18s, box-shadow 0.18s;
}
.audience-chip::before {
  content: '';
  display: block;
  width: 6px;
  height: 70%;
  background: var(--primary-color);
  border-radius: 3px;
  position: absolute;
  left: 0.5em;
  top: 15%;
}
.audience-chip:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0,87,160,0.10);
}
@media (max-width: 700px) {
  .audience-chip {
    font-size: 0.97rem;
    padding: 0.45em 0.8em 0.45em 0.7em;
  }
}

/* Target Audience Block UI - Profile Photo Style */
.target-audience-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.audience-block {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,87,160,0.06);
  padding: 1.5rem 1.7rem;
  gap: 1.5rem;
  border: 1.5px solid #e3e8ee;
  transition: box-shadow 0.18s, border 0.18s;
}
.audience-block:hover {
  box-shadow: 0 6px 24px rgba(0,87,160,0.13);
  border-color: var(--primary-color);
}
.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057A0 0%, #28A745 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,87,160,0.08);
}
.audience-block-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.audience-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.18rem;
  display: block;
}
.audience-subtitle {
  font-size: 1.08rem;
  color: var(--charcoal-black);
  display: block;
}
@media (max-width: 700px) {
  .target-audience-blocks {
    gap: 1rem;
  }
  .audience-block {
    padding: 1rem 0.7rem;
    gap: 1rem;
  }
  .audience-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .audience-title {
    font-size: 1.08rem;
  }
  .audience-subtitle {
    font-size: 0.97rem;
  }
}

/* Who Can Use This Website Section - Lighter Background */
.who-can-use {
  background: #fbfcfe;
  padding-bottom: 70px;
  padding-top: 0;
}

/* Who Can Use This Website Section - Horizontal Checklist */
.who-can-use-checklist {
  list-style: none;
  padding: 0;
  margin: 2.2rem auto 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: center;
}
.who-can-use-checklist li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 12px rgba(0,87,160,0.06);
  border: 1.5px solid #e3e8ee;
  font-size: 1.13rem;
  font-weight: 600;
  color: var(--charcoal-black);
  padding: 0.7em 1.5em;
  transition: box-shadow 0.18s, border 0.18s;
  min-width: 180px;
  justify-content: center;
}
.who-can-use-checklist li:hover {
  box-shadow: 0 6px 24px rgba(0,87,160,0.13);
  border-color: var(--primary-color);
}
.who-can-use-check {
  color: #28A745;
  font-size: 1.4em;
  margin-right: 0.7em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .who-can-use-checklist {
    max-width: 98vw;
    gap: 0.7rem;
  }
  .who-can-use-checklist li {
    font-size: 1rem;
    padding: 0.6em 1em;
    min-width: 120px;
  }
  .who-can-use-check {
    font-size: 1.1em;
    margin-right: 0.5em;
  }
}

/* Section Separator */
.section-separator {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3.5rem auto;
  border: none;
  border-top: 2px solid transparent;
  opacity: 0.7;
}
@media (max-width: 700px) {
  .section-separator {
    margin-bottom: 2rem;
  }
}

/* Responsive Enhancements for All Sections */
@media (max-width: 1000px) {
  .features-grid, .what-cards-grid, .who-can-use-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 700px) {
  .container, .who-can-use-container {
    padding: 0 0.7rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .features-grid, .what-cards-grid, .who-can-use-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 98vw;
  }
  .feature-card, .what-card, .who-can-use-card {
    font-size: 1rem;
    padding: 1.1rem 0.7rem 0.9rem 0.7rem;
    min-height: 100px;
  }
  .about-content, .contact-content, .footer-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .who-can-use-checklist {
    gap: 0.5rem;
    max-width: 98vw;
  }
  .who-can-use-checklist li {
    font-size: 0.97rem;
    padding: 0.5em 0.7em;
    min-width: 90px;
  }
}
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.1rem;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .feature-card, .what-card, .who-can-use-card {
    font-size: 0.95rem;
    padding: 0.7rem 0.4rem 0.6rem 0.4rem;
    min-height: 70px;
  }
  .who-can-use-checklist li {
    font-size: 0.9rem;
    padding: 0.4em 0.5em;
    min-width: 60px;
  }
} 
