/* Font Face Definitions - Inter Local */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/inter-300.woff2') format('woff2'),
         url('../fonts/inter-300.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-400.woff2') format('woff2'),
         url('../fonts/inter-400.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter-500.woff2') format('woff2'),
         url('../fonts/inter-500.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-600.woff2') format('woff2'),
         url('../fonts/inter-600.woff') format('woff');
}

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

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Arial, Apple Color Emoji, Segoe UI Emoji;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #f1f5f9;
    background-color: #020617;
    height: 100%;
    line-height: 1.5;
}

/* Background Component */
.aura-background-component {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
}

.aura-background-component > div {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
}

/* Layout Utilities */
.relative {
    position: relative;
}

.isolate {
    isolation: isolate;
}

.overflow-hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

/* Header */
header {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
    padding: 1.5rem 1rem 0;
}

header a.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.025em;
    text-decoration: none;
}

nav {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.8);
    align-items: center;
    cursor: pointer;
}

nav a {
    color: rgba(226, 232, 240, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: white;
}

/* Hero Section */
.hero-section {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
    padding: 3rem 1rem;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.hero-content {
    grid-column: span 12;
    text-align: center;
}

.fade-in {
    opacity: 0;
    filter: blur(0.5rem);
    transform: translateY(2rem);
    animation: fadeSlideIn 0.8s ease-out 0.2s forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(2rem) translateX(2rem);
        filter: blur(0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
        filter: blur(0);
    }
}


.flash-message {
    max-width: 80rem;
    margin: 1rem auto 0;
    padding: 1rem 1rem;
}

.flash-message-content {
    background-color: rgba(16,185,129,0.14);
    border:1px solid rgba(16,185,129,0.35);
    color:#d1fae5;
    padding: 1.2rem 1.2rem;
    border-radius:0.5rem;
    font-weight: 600;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #5eead4;
    background-color: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge svg {
    height: 0.75rem;
    width: 0.75rem;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.text-teal {
    color: #5eead4;
}

.hero-description {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
    background-color: #5eead4;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

.btn-primary:hover {
    background-color: #99f6e4;
}

.btn-primary svg {
    margin-left: 0.5rem;
    height: 1rem;
    width: 1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #e2e8f0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary svg {
    margin-left: 0.5rem;
    height: 1rem;
    width: 1rem;
}

/* Divider */
.divider-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Features Section */
.features-section {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
    padding: 3rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: #cbd5e1;
    max-width: 100%;
}

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

.feature-card {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    background-size: 100% 100%, 22px 22px;
    background-position: center, center;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-card-1 {
    background-image: radial-gradient(1200px 600px at 50% -10%, rgba(16,185,129,0.12), transparent 60%), 
                      radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
}

.feature-card-2 {
    background-image: radial-gradient(1200px 600px at 50% -10%, rgba(192,132,252,0.12), transparent 60%), 
                      radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
}

.feature-card-4 {
    background-image: radial-gradient(1200px 600px at 50% -10%, rgba(52,211,153,0.12), transparent 60%), 
                      radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), inset 0 0 80px rgba(16,185,129,0.06);
}

.feature-card-1::before {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), inset 0 0 80px rgba(16,185,129,0.06);
}

.feature-card-2::before {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), inset 0 0 80px rgba(192,132,252,0.06);
}

.feature-card-4::before {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), inset 0 0 80px rgba(52,211,153,0.06);
}

.feature-header {
    position: relative;
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: #cbd5e1;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.feature-preview {
    position: relative;
}

.code-preview {
    width: 100%;
    border-radius: 0.75rem;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.code-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header-flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background-color: #10b981;
}

.code-filename {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 500;
}

.code-content {
    padding: 1rem;
    font-size: 0.75rem;
    font-family: monospace;
}

.code-line {
    margin-bottom: 0.5rem;
}

.code-comment {
    color: #6ee7b7;
}

.code-text {
    color: #e2e8f0;
}

.code-keyword {
    color: #5eead4;
}

.code-function {
    color: #c084fc;
}

.code-string {
    color: #fbbf24;
}

/* UI Components Preview */
.ui-components {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ui-component-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ui-icon-gradient-1 {
    height: 2rem;
    width: 2rem;
    border-radius: 0.25rem;
    background: linear-gradient(to right, #c084fc, #f472b6);
}

.ui-icon-gradient-2 {
    height: 2rem;
    width: 2rem;
    border-radius: 0.25rem;
    background: linear-gradient(to right, #5eead4, #60a5fa);
}

.ui-component-content {
    flex: 1;
}

.ui-bar-1 {
    height: 0.5rem;
    width: 5rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.25rem;
}

.ui-bar-2 {
    height: 0.375rem;
    width: 4rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.ui-bar-3 {
    height: 0.5rem;
    width: 6rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.25rem;
}

.ui-bar-4 {
    height: 0.375rem;
    width: 5rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Analytics Preview */
.analytics-preview {
    width: 100%;
    border-radius: 0.75rem;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 1rem;
}

.analytics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.analytics-title {
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.analytics-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.status-dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background-color: #10b981;
}

.status-text {
    font-size: 0.75rem;
    color: #10b981;
}

.analytics-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.security-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.security-check-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: #10b981;
    width: 1rem;
    height: 1rem;
}

.check-label {
    font-size: 0.75rem;
    color: #cbd5e1;
}

.check-status {
    font-size: 0.75rem;
    color: #10b981;
}

/* How It Works Section */
.how-it-works-section {
    margin-right: auto;
    margin-left: auto;
    padding: 3rem 1rem;
    width: 100%;
    box-sizing: border-box;
}

.how-it-works-grid {
    width: 100%;
    box-sizing: border-box;
}

.how-it-works-left {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-icon-container {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.step-icon-teal {
    background: linear-gradient(to bottom right, rgba(94, 234, 212, 0.2), rgba(94, 234, 212, 0.05));
    border: 1px solid rgba(94, 234, 212, 0.2);
}

.step-icon-white {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-icon-emerald {
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.step-icon svg {
    height: 1rem;
    width: 1rem;
}

.step-icon-teal svg {
    color: #5eead4;
}

.step-icon-white svg {
    color: white;
}

.step-icon-emerald svg {
    color: #10b981;
}

.step-connector {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-0.125rem);
    width: 1px;
    height: 2rem;
}

.step-connector-teal {
    background: linear-gradient(to bottom, rgba(94, 234, 212, 0.6), rgba(94, 234, 212, 0.1));
}

.step-connector-white {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
}

.step-connector-emerald {
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.6), rgba(16, 185, 129, 0.1));
}

.step-content {
    padding-top: 0.25rem;
    line-height: 1;
    flex: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 5px;
    margin-bottom: 5px;
    justify-content: space-between;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.025em;
}

.step-number {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

.step-number-teal {
    color: #5eead4;
    background-color: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.2);
}

.step-number-white {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number-emerald {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.step-description {
    color: #cbd5e1;
    line-height: 1.625;
}

/* Pricing Section */
.pricing-section {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
    padding: 3rem 1rem;
}

.billing-toggle-container {
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: center;
}

.billing-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: black;
    border-radius: 9999px;
    padding: 0.25rem;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    gap: 0.25rem;
    align-items: center;
}

.billing-button {
    z-index: 1;
    transition: color 0.2s;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0;
    padding: 0.5rem 1rem;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.billing-button[aria-pressed="false"] {
    color: rgba(255, 255, 255, 0.7);
}

.billing-button[aria-pressed="true"] {
    color: #000000;
    background-color: #ffffff;
    border-radius: 9999px;
}

.billing-thumb {
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #0f172a;
    width: 92px;
    border-radius: 9999px;
    position: absolute;
    top: 0.25rem;
    bottom: 0.25rem;
    left: 0.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.save-badge {
    margin-left: 0.75rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.save-badge.hidden {
    display: none;
}

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

.pricing-card {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.pricing-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pricing-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popular-badge {
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pricing-price {
    margin-bottom: 0.75rem;
}

.pricing-price-flex {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: white;
}

.pricing-term {
    color: #94a3b8;
}

.pricing-subtitle {
    color: #cbd5e1;
    margin-top: 0.75rem;
}

.pricing-divider {
    margin: 1.5rem 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #cbd5e1;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-feature svg {
    height: 1rem;
    width: 1rem;
    color: #5eead4;
    margin-top: 0.125rem;
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.pricing-btn-secondary {
    color: #e2e8f0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-btn-primary {
    color: #0f172a;
    background-color: #5eead4;
    border: 1px solid rgba(94, 234, 212, 0.3);
}

.pricing-btn-primary:hover {
    background-color: #99f6e4;
}

/* Footer */
footer {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
    padding: 3rem 1rem 2rem;
}

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

.footer-col-span-2 {
    grid-column: span 1;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(203, 213, 225, 0.8);
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social svg {
    height: 1.25rem;
    width: 1.25rem;
    color: #cbd5e1;
}

.footer-section-title {
    font-size: 0.875rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(203, 213, 225, 0.8);
    list-style: none;
}

.footer-links a {
    color: rgba(203, 213, 225, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Utility Classes */
.mb-12 {
    margin-bottom: 3rem;
}

.hero-description-full {
    max-width: 100%;
}

/* ======================================== */
/* DESKTOP STYLES (1024px+) */
/* ======================================== */

@media (min-width: 1024px) {
    /* Header */
    nav {
        display: flex;
    }

    /* Hero Section */
    .hero-section {
        padding: 8rem 1.5rem;
    }

    .hero-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 4rem;
        align-items: center;
    }

    .hero-content {
        text-align: left;
    }

    h1 {
        font-size: 4.5rem;
        line-height: 1.05;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.625;
        max-width: 42rem;
        margin-bottom: 2rem;
    }

    .button-group {
        flex-direction: row;
        margin-bottom: 3rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: auto;
    }

    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: auto;
    }

    /* Divider */
    .divider-container {
        padding: 0 1.5rem;
    }

    /* Features Section */
    .features-section {
        padding: 6rem 1.5rem;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .section-description {
        font-size: 1.25rem;
        margin-top: 30px;
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* How It Works Section */
    .how-it-works-section {
        padding: 6rem 1.5rem;
        max-width: 80rem;
        margin-right: auto;
        margin-left: auto;
    }

    .how-it-works-left {
        text-align: left;
        margin: 0;
    }

    .steps-container {
        margin-top: 50px;
        gap: 4rem;
    }

    .step-item {
        gap: 1.5rem;
    }

    .step-icon {
        height: 3rem;
        width: 3rem;
    }

    .step-icon svg {
        height: 1.25rem;
        width: 1.25rem;
    }

    .step-title {
        font-size: 1.125rem;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 6rem 1.5rem;
    }

    .billing-toggle-container {
        margin-bottom: 3.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card-header {
        margin-bottom: 2rem;
    }

    .pricing-amount {
        font-size: 3rem;
    }

    .pricing-divider {
        margin: 2rem 0;
    }

    /* Footer */
    footer {
        padding: 5rem 1.5rem 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-col-span-2 {
        grid-column: span 2;
    }

    .footer-bottom {
        margin-top: 3rem;
        flex-direction: row;
    }
}