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

:root {
    --bg-dark: #07080b;
    --bg-deep: #0b0c10;
    --bg-surface: #0f111a;
    --primary: #4f46e5;
    --primary-glow: rgba(79, 70, 229, 0.15);
    --primary-light: #818cf8;
    --accent: #deff9a;
    --accent-glow: rgba(222, 255, 154, 0.15);
    --electric-blue: #00f0ff;
    --electric-glow: rgba(0, 240, 255, 0.15);
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 17, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --accent-border: rgba(222, 255, 154, 0.12);
    --success: #10b981;
}

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

body {
    font-family: 'Urbanist', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.05) 0%, transparent 40%);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Abstract Tech Blobs */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
    filter: blur(140px);
    z-index: 1;
    pointer-events: none;
}

body::before {
    top: -200px;
    left: -200px;
}

body::after {
    top: 800px;
    right: -250px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
}

.blob-3 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 255, 154, 0.06) 0%, transparent 70%);
    filter: blur(120px);
    z-index: 1;
    bottom: 400px;
    left: -200px;
    pointer-events: none;
}

/* Sticky Premium Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 11, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 10px 0;
}

header.scrolled {
    background: rgba(7, 8, 11, 0.92);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    padding: 12px 0;
    border-bottom: 1px solid rgba(222, 255, 154, 0.08);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-glow-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-glow-container::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    background: radial-gradient(circle, rgba(222, 255, 154, 0.2), transparent 70%);
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-glow-container:hover {
    transform: scale(1.02);
}

.logo-glow-container:hover::after {
    opacity: 1;
}

.logo-partners {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--electric-blue) 40%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 12px;
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Premium CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.5);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 8px 24px rgba(222, 255, 154, 0.25);
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.btn-success:hover {
    background: #e7ffb3;
    box-shadow: 0 16px 36px rgba(222, 255, 154, 0.45);
    transform: translateY(-3px);
}

.btn-success i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-success:hover i {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    padding: 150px 24px 70px 24px;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(222, 255, 154, 0.08);
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -2px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 40%, #c3cfe2 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.subheadline {
    font-size: clamp(16px, 2.2vw, 21px);
    color: var(--text-muted);
    margin-bottom: 44px;
    max-width: 700px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 48px;
    border-top: 1px solid var(--glass-border);
    padding-top: 36px;
}

.proof-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.proof-item h4 span {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
}

.proof-item p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* Premium Graphic Dashboard Widget */
.hero-graphic {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--accent-border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(25px);
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.graphic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.graphic-dots {
    display: flex;
    gap: 7px;
}

.graphic-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.graphic-dots span:nth-child(1) { background: #ff5f56; }
.graphic-dots span:nth-child(2) { background: #ffbd2e; }
.graphic-dots span:nth-child(3) { background: #27c93f; }

.graphic-badge {
    background: rgba(222, 255, 154, 0.05);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    border: 1px solid rgba(222, 255, 154, 0.15);
    letter-spacing: 0.2px;
}

.graphic-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
}

.graphic-card p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    font-weight: 600;
}

.graphic-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -0.5px;
}

.graphic-card h3 span {
    font-size: 15px;
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.graphic-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.graphic-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.graphic-list-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.07);
}

.item-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 18px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.item-details h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
}

.item-details p {
    font-size: 12px;
    color: var(--text-muted);
}

.item-val {
    text-align: right;
}

.item-val h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
}

.item-val span {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-top: 4px;
}

.status-pago {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-pendente {
    background: rgba(222, 255, 154, 0.12);
    color: var(--accent);
    border: 1px solid var(--accent-border);
}

/* Sections Configuration */
section {
    padding: 70px 24px;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px auto;
}

.section-header p.badge-small {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p.description {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

/* Timeline/Workflow Steps */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 44px; left: 60px; right: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(222, 255, 154, 0.02) 0%, rgba(222, 255, 154, 0.15) 50%, rgba(222, 255, 154, 0.02) 100%);
    z-index: 1;
}

.timeline-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.timeline-step:hover {
    transform: translateY(-8px);
    border-color: var(--accent-border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(222, 255, 154, 0.03);
    background: rgba(15, 17, 26, 0.85);
}

.step-num-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0f111a;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    transition: all 0.4s ease;
}

.timeline-step:hover .step-num-badge {
    background: var(--electric-blue);
    color: var(--bg-dark);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.35);
}

.timeline-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.timeline-step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Benefits/Advantages Cards Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 44px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(222, 255, 154, 0.03);
    background: rgba(15, 17, 26, 0.85);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
    font-size: 28px;
    margin-bottom: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover .benefit-icon {
    background: var(--electric-blue);
    color: var(--bg-dark);
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.35);
}

.benefit-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Compliance Block */
.compliance-block {
    background: linear-gradient(135deg, rgba(15, 17, 26, 0.6) 0%, rgba(7, 8, 11, 0.8) 100%);
    border: 1px solid var(--accent-border);
    border-radius: 36px;
    padding: 72px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.compliance-block::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.compliance-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.compliance-info p.lead {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.compliance-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.compliance-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.compliance-badge i {
    color: var(--electric-blue);
}

.compliance-card {
    background: rgba(7, 8, 11, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    backdrop-filter: blur(10px);
}

.compliance-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.compliance-card-header i {
    font-size: 32px;
    color: var(--electric-blue);
}

.compliance-card-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.compliance-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.compliance-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compliance-card ul li {
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.compliance-card ul li i {
    color: var(--electric-blue);
}

/* Accordion FAQ */
.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.015);
}

.faq-question h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding-right: 20px;
    letter-spacing: -0.2px;
}

.faq-question i {
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer-content {
    padding: 0 28px 28px 28px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 20px;
}

.faq-item.active {
    border-color: var(--accent-border);
    background: rgba(222, 255, 154, 0.01);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--electric-blue);
}

/* Final CTA Section */
.cta-section {
    text-align: center;
    padding: 70px 24px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.4) 0%, rgba(15, 17, 26, 0.8) 100%);
    border: 1px solid var(--accent-border);
    border-radius: 36px;
    padding: 80px 48px;
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 255, 154, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.cta-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.cta-card p {
    font-size: clamp(16px, 2.2vw, 20px);
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 48px auto;
    line-height: 1.6;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--glass-border);
    background: rgba(7, 8, 11, 0.95);
    padding: 80px 24px 40px 24px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Outstanding Responsive Layout System */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }

    .hero-badge {
        margin-bottom: 24px;
    }

    .hero p.subheadline {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-social-proof {
        justify-content: center;
        gap: 36px;
    }

    .timeline {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .timeline::before {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compliance-block {
        padding: 52px;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    header {
        padding: 14px 0;
    }

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

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

    .compliance-block {
        padding: 36px 24px;
    }

    footer .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    footer .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Styling for CTA steps */
.cta-steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 900px;
}

.cta-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(222, 255, 154, 0.3);
    box-shadow: 0 10px 20px rgba(222, 255, 154, 0.05);
}

.cta-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(222, 255, 154, 0.2);
}

.cta-step-text {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.cta-step-divider {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .cta-steps-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-step-divider {
        transform: rotate(90deg);
        margin: 4px 0;
    }
    
    .cta-step-item {
        width: 100%;
    }
}
