/* ============================================================
   AGENDA PREMIUM — CSS
   B2B SaaS Premium Landing Page
   ============================================================ */

/* ============================================================
   01. RESET & BASE
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #F8FAFC;
    color: #0F172A;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================================
   02. LAYOUT UTILITIES
   ============================================================ */

.section-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

section {
    padding: 96px 0;
}

.section-header {
    margin-bottom: 56px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: #0F172A;
    margin-bottom: 18px;
}

.section-text {
    font-size: 18px;
    color: #475569;
    max-width: 720px;
    line-height: 1.65;
}

.section-label {
    display: inline-flex;
    align-items: center;
    background: #E0F7FA;
    color: #0E7490;
    border: 1px solid rgba(14, 116, 144, 0.18);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* ============================================================
   03. BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 13px 24px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.22s ease;
    min-height: 48px;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

.btn:focus-visible {
    outline: 3px solid rgba(14, 116, 144, 0.32);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(135deg, #123C5A 0%, #0E7490 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(14, 116, 144, 0.26);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(14, 116, 144, 0.36);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(14, 116, 144, 0.22);
}

.btn-secondary {
    background: #FFFFFF;
    color: #123C5A;
    border-color: #CBD5E1;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.btn-secondary:hover {
    border-color: #0E7490;
    color: #0E7490;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}

.btn-outline {
    background: transparent;
    color: #123C5A;
    border-color: #123C5A;
}

.btn-outline:hover {
    background: #123C5A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(18, 60, 90, 0.22);
}

.btn-large {
    padding: 17px 30px;
    font-size: 16px;
    min-height: 56px;
}

.btn-full {
    width: 100%;
}

/* ============================================================
   04. HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(203, 213, 225, 0.55);
    transition: box-shadow 0.25s ease;
}

.header-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo {
    flex-shrink: 0;
}

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

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
}

.logo-stars {
    font-size: 12px;
    color: #D4AF37;
    line-height: 1;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 4px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0E7490;
    border-radius: 999px;
    transition: width 0.22s ease;
}

.nav-link:hover {
    color: #0E7490;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: #F1F5F9;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #0F172A;
    border-radius: 999px;
    transition: all 0.22s ease;
}

/* ============================================================
   05. HERO SECTION
   ============================================================ */

.hero-section {
    padding-top: 96px;
    padding-bottom: 112px;
    background:
        radial-gradient(ellipse 70% 55% at 78% 18%, rgba(224, 247, 250, 0.72) 0%, transparent 65%),
        radial-gradient(ellipse 55% 45% at 14% 88%, rgba(255, 247, 214, 0.48) 0%, transparent 60%),
        #F8FAFC;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 72px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    background: #E0F7FA;
    color: #0E7490;
    border: 1px solid rgba(14, 116, 144, 0.18);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 26px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: #0F172A;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.58;
    color: #334155;
    margin-bottom: 16px;
    max-width: 580px;
}

.hero-support {
    font-size: 17px;
    color: #64748B;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero-microcopy {
    margin-top: 18px;
    font-size: 13px;
    color: #94A3B8;
    font-weight: 500;
}

/* Hero Visual / Dashboard */

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(14, 116, 144, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dashboard-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(203, 213, 225, 0.85);
    border-radius: 32px;
    padding: 30px;
    box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.04),
        0 8px 24px rgba(15, 23, 42, 0.06),
        0 32px 80px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #F1F5F9;
}

.dashboard-title {
    font-size: 19px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.dashboard-date {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 500;
}

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.appointment-item {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-radius: 16px;
    padding: 13px 16px;
    transition: all 0.2s ease;
}

.appointment-item:hover {
    background: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.appointment-time {
    font-weight: 800;
    color: #123C5A;
    font-size: 14px;
    min-width: 48px;
    letter-spacing: -0.01em;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.appointment-treatment {
    font-weight: 700;
    color: #0F172A;
    font-size: 14px;
}

.appointment-status {
    font-size: 12px;
    font-weight: 600;
}

.status-confirmed {
    color: #10B981;
}

.status-waitlist {
    color: #0E7490;
}

.status-new {
    color: #123C5A;
}

.status-review {
    color: #D4AF37;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.stat-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
    transition: all 0.2s ease;
}

.stat-item:hover {
    border-color: rgba(14, 116, 144, 0.25);
    box-shadow: 0 8px 22px rgba(14, 116, 144, 0.08);
}

.stat-value {
    display: block;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 5px;
}

.stat-positive {
    color: #10B981;
}

.stat-negative {
    color: #0E7490;
}

.stat-label {
    font-size: 11px;
    color: #94A3B8;
    font-weight: 600;
    line-height: 1.3;
}

/* Floating Badges */

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow:
        0 4px 16px rgba(15, 23, 42, 0.08),
        0 16px 40px rgba(15, 23, 42, 0.1);
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
    white-space: nowrap;
    z-index: 2;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge-whatsapp {
    top: 16%;
    right: -32px;
    animation-delay: 0s;
}

.floating-badge-ai {
    bottom: 28%;
    left: -38px;
    animation-delay: 1.4s;
}

.floating-badge-reminder {
    bottom: -20px;
    right: 38px;
    animation-delay: 2.8s;
}

.floating-icon {
    font-size: 15px;
}

.floating-text {
    font-size: 12px;
}

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

/* ============================================================
   06. PROBLEM SECTION
   ============================================================ */

.problem-section {
    background: #FFFFFF;
}

.problem-section .section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.cost-highlight {
    max-width: 880px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #FFF7D6 0%, #FFFBF0 50%, #FFFFFF 100%);
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 28px;
    padding: 36px;
    box-shadow:
        0 4px 16px rgba(212, 175, 55, 0.08),
        0 22px 60px rgba(212, 175, 55, 0.1);
}

.cost-highlight-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cost-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.14);
    font-size: 26px;
    flex-shrink: 0;
}

.cost-text {
    font-size: 22px;
    line-height: 1.4;
    color: #0F172A;
}

.cost-text strong {
    color: #123C5A;
    font-weight: 800;
}

.problem-conclusion {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: #475569;
    line-height: 1.65;
}

.problem-cta {
    text-align: center;
    margin-top: 36px;
}

/* ============================================================
   07. PAIN SECTION
   ============================================================ */

.pain-section {
    background: #F8FAFC;
}

.pain-section .section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pain-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 28px;
    transition: all 0.24s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    cursor: default;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.04),
        0 22px 52px rgba(15, 23, 42, 0.09);
    border-color: rgba(14, 116, 144, 0.18);
}

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #FEF2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 18px;
}

.pain-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pain-card-text {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================
   08. SOLUTION SECTION
   ============================================================ */

.solution-section {
    background: #FFFFFF;
}

.solution-section .section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.patient-journey {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    border: 1px solid #E2E8F0;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    align-items: start;
}

.journey-step {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 20px 16px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    transition: all 0.22s ease;
}

.journey-step:hover {
    border-color: rgba(14, 116, 144, 0.28);
    box-shadow: 0 10px 30px rgba(14, 116, 144, 0.08);
    transform: translateY(-3px);
}

.journey-step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #E0F7FA;
    color: #0E7490;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.journey-step-title {
    font-size: 16px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.journey-step-text {
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.5;
    flex: 1;
}

.journey-arrow {
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    color: #0E7490;
    font-weight: 900;
    font-size: 16px;
    z-index: 2;
    background: #FFFFFF;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E0F7FA;
    box-shadow: 0 4px 10px rgba(14, 116, 144, 0.12);
}

.journey-step-last .journey-arrow {
    display: none;
}

/* ============================================================
   09. HOW SECTION
   ============================================================ */

.how-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.how-section .section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.how-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 32px 28px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    transition: all 0.24s ease;
}

.how-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 116, 144, 0.22);
    box-shadow: 0 20px 52px rgba(15, 23, 42, 0.09);
}

.how-card-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(14, 116, 144, 0.07);
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
}

.how-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #E0F7FA;
    font-size: 24px;
    margin-bottom: 24px;
}

.how-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.how-card-text {
    color: #64748B;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================================
   10. BENEFITS SECTION
   ============================================================ */

.benefits-section {
    background: #FFFFFF;
}

.benefits-section .section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 26px;
    padding: 30px;
    transition: all 0.24s ease;
}

.benefit-card:hover {
    background: #FFFFFF;
    transform: translateY(-5px);
    box-shadow:
        0 4px 16px rgba(15, 23, 42, 0.04),
        0 24px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(14, 116, 144, 0.2);
}

.benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.benefit-text {
    color: #64748B;
    font-size: 15px;
    line-height: 1.65;
}

/* ============================================================
   11. COMPARISON SECTION
   ============================================================ */

.comparison-section {
    background: #F8FAFC;
}

.comparison-section .section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 26px;
    align-items: center;
}

.comparison-column {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 30px;
    padding: 36px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    align-self: stretch;
}

.comparison-before {
    border-color: rgba(220, 38, 38, 0.2);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFAFA 100%);
}

.comparison-after {
    border-color: rgba(16, 185, 129, 0.25);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FFF8 100%);
    box-shadow: 0 12px 44px rgba(16, 185, 129, 0.08);
}

.comparison-header-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.comparison-label-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.comparison-before .comparison-label-icon {
    background: #FEF2F2;
    color: #DC2626;
}

.comparison-after .comparison-label-icon {
    background: #ECFDF5;
    color: #10B981;
}

.comparison-label-text {
    font-size: 21px;
    font-weight: 700;
    color: #0F172A;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item {
    position: relative;
    padding-left: 26px;
    color: #475569;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.comparison-item::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    font-size: 15px;
}

.comparison-item-bad::before {
    content: "✗";
    color: #DC2626;
}

.comparison-item-good::before {
    content: "✓";
    color: #10B981;
}

.comparison-divider {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #123C5A, #0E7490);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 24px rgba(14, 116, 144, 0.28),
        0 18px 44px rgba(14, 116, 144, 0.16);
    flex-shrink: 0;
}

.comparison-divider-icon {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

/* ============================================================
   12. PRICING SECTION
   ============================================================ */

.pricing-section {
    background: #FFFFFF;
}

.pricing-section .section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: start;
    padding-top: 20px;
}

.pricing-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 32px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.24s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.pricing-card-featured {
    border: 2px solid rgba(212, 175, 55, 0.6);
    box-shadow:
        0 4px 16px rgba(212, 175, 55, 0.12),
        0 30px 90px rgba(212, 175, 55, 0.16);
    transform: translateY(-16px);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%);
}

.pricing-card-featured:hover {
    box-shadow:
        0 8px 24px rgba(212, 175, 55, 0.16),
        0 40px 100px rgba(212, 175, 55, 0.2);
    transform: translateY(-20px);
}

.pricing-badge {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #F8D66D 50%, #D4AF37 100%);
    color: #0F172A;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow:
        0 4px 14px rgba(212, 175, 55, 0.3),
        0 12px 28px rgba(212, 175, 55, 0.2);
    letter-spacing: 0.01em;
}

.pricing-plan-name {
    font-size: 23px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
}

.pricing-plan-desc {
    color: #64748B;
    font-size: 15px;
    line-height: 1.55;
    min-height: 70px;
}

.pricing-price {
    margin: 24px 0;
    padding: 22px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 22px;
}

.pricing-card-featured .pricing-price {
    background: rgba(255, 247, 214, 0.45);
    border-color: rgba(212, 175, 55, 0.2);
}

.pricing-setup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #E2E8F0;
}

.pricing-setup-label {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 600;
}

.pricing-setup-amount {
    font-weight: 800;
    color: #123C5A;
    font-size: 16px;
}

.pricing-monthly {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-monthly-amount {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #0F172A;
    line-height: 1;
}

.pricing-monthly-period {
    color: #94A3B8;
    font-weight: 700;
    font-size: 16px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 26px;
    flex: 1;
}

.pricing-feature {
    display: flex;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    align-items: flex-start;
}

.feature-check {
    color: #10B981;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 14px;
}

.pricing-promise {
    background: #E0F7FA;
    border: 1px solid rgba(14, 116, 144, 0.16);
    color: #123C5A;
    border-radius: 18px;
    padding: 16px 18px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pricing-card-featured .pricing-promise {
    background: rgba(255, 247, 214, 0.6);
    border-color: rgba(212, 175, 55, 0.25);
    color: #92400E;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #94A3B8;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================
   13. IMPLEMENTATION SECTION
   ============================================================ */

.implementation-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.implementation-section .section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.implementation-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
}

.timeline-phase {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.24s ease;
}

.timeline-phase:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(15, 23, 42, 0.09);
    border-color: rgba(14, 116, 144, 0.2);
}

.timeline-phase-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.timeline-phase-number {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, #E0F7FA, #B3EBF7);
    color: #0E7490;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.timeline-phase-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-phase-title {
    font-size: 19px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.timeline-phase-duration {
    color: #D4AF37;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.timeline-phase-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-phase-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
    flex: 1;
}

.timeline-phase-list li {
    position: relative;
    padding-left: 20px;
    color: #64748B;
    font-size: 14px;
    line-height: 1.5;
}

.timeline-phase-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10B981;
    font-weight: 900;
    font-size: 13px;
}

.timeline-phase-result {
    background: #ECFDF5;
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065F46;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
    margin-top: auto;
}

.result-icon {
    color: #10B981;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.timeline-connector {
    align-self: center;
    color: #0E7490;
    font-weight: 900;
    font-size: 24px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* ============================================================
   14. FORM SECTION
   ============================================================ */

.form-section {
    background: linear-gradient(145deg, #0F172A 0%, #123C5A 60%, #0E7490 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.form-section::after {
    content: '';
    position: absolute;
    bottom: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.form-section .section-title {
    color: #FFFFFF;
}

.form-section .section-text {
    color: #CBD5E1;
}

.form-section-header {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.form-wrapper {
    max-width: 940px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 34px;
    padding: 42px;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 34px 90px rgba(0, 0, 0, 0.28);
    position: relative;
    z-index: 1;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    color: #0F172A;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.form-required {
    color: #DC2626;
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border: 1.5px solid #CBD5E1;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: #0F172A;
    background: #FFFFFF;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94A3B8;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #0E7490;
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.12);
    outline: none;
    background: #FFFFFF;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #94A3B8;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    margin-top: 4px;
}

.form-checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0E7490;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 4px;
}

.form-checkbox-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.form-link {
    color: #0E7490;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.form-link:hover {
    color: #123C5A;
}

.form-submit {
    margin-top: 8px;
}

.form-microcopy {
    color: #94A3B8;
    text-align: center;
    font-size: 13px;
    margin: 16px 0 0;
    line-height: 1.5;
}

/* ============================================================
   15. FAQ SECTION
   ============================================================ */

.faq-section {
    background: #FFFFFF;
}

.faq-section .section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.24s ease;
}

.faq-item[open] {
    background: #FFFFFF;
    border-color: rgba(14, 116, 144, 0.22);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #0F172A;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
}

.faq-question:hover {
    color: #0E7490;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E7490;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.24s ease, background 0.2s ease;
    box-shadow: 0 2px 8px rgba(14, 116, 144, 0.08);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: #E0F7FA;
}

.faq-answer {
    padding: 0 26px 24px;
}

.faq-answer p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    padding-top: 4px;
}

/* ============================================================
   16. CTA FINAL SECTION
   ============================================================ */

.cta-final-section {
    background: linear-gradient(135deg, #0F172A 0%, #123C5A 60%, #0E7490 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.cta-final-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.cta-final-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-final-text {
    color: #94A3B8;
    font-size: 19px;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto 36px;
}

.cta-final-microcopy {
    color: #64748B;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 500;
}

.cta-final-section .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F8D66D 50%, #D4AF37 100%);
    color: #0F172A;
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.35);
}

.cta-final-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(212, 175, 55, 0.45);
}

/* ============================================================
   17. FOOTER
   ============================================================ */

.site-footer {
    background: #07111F;
    color: #FFFFFF;
    padding-top: 64px;
}

.footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #FFFFFF;
}

.footer-logo-stars {
    font-size: 12px;
    color: #D4AF37;
}

.footer-tagline {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
    max-width: 240px;
}

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

.footer-contact-title {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

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

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-contact-icon {
    color: #0E7490;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-nav-link,
.footer-contact-link,
.footer-legal-link {
    color: #94A3B8;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-nav-link:hover,
.footer-contact-link:hover,
.footer-legal-link:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
}

.footer-copyright {
    color: #475569;
    font-size: 13px;
}

.footer-legal-list {
    display: flex;
    flex-direction: row;
    gap: 22px;
    flex-wrap: wrap;
}

/* ============================================================
   18. RESPONSIVE — 1280px
   ============================================================ */

@media (max-width: 1280px) {
    .floating-badge-whatsapp {
        right: -18px;
    }

    .floating-badge-ai {
        left: -18px;
    }

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

    .journey-step-last {
        grid-column: span 1;
    }
}

/* ============================================================
   19. RESPONSIVE — 1024px
   ============================================================ */

@media (max-width: 1024px) {
    section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 38px;
    }

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

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

    .hero-subtitle,
    .hero-support {
        max-width: 100%;
    }

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

    .hero-microcopy {
        text-align: center;
    }

    .hero-visual {
        max-width: 640px;
        margin: 0 auto;
        width: 100%;
    }

    .floating-badge-whatsapp,
    .floating-badge-ai,
    .floating-badge-reminder {
        display: none;
    }

    .hero-title {
        font-size: 52px;
    }

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

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

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

    .timeline-connector {
        display: flex;
        justify-content: center;
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .journey-arrow {
        display: none;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-divider {
        margin: 0 auto;
        transform: rotate(90deg);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ============================================================
   20. RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {
    section {
        padding: 44px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-inner {
        width: calc(100% - 32px);
    }

    .section-title {
        font-size: 30px;
        letter-spacing: -0.03em;
        margin-bottom: 12px;
    }

    .section-text {
        font-size: 16px;
    }

    .header-inner {
        height: 62px;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        padding-top: 44px;
        padding-bottom: 48px;
    }

    .hero-label {
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -0.04em;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .hero-support {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
    }

    .hero-microcopy {
        margin-top: 14px;
    }

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

    .dashboard-card {
        padding: 18px;
        border-radius: 22px;
    }

    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-value {
        font-size: 20px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pain-card {
        padding: 22px;
    }

    .pain-icon {
        margin-bottom: 12px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .how-card {
        padding: 26px 24px;
    }

    .how-card-icon {
        margin-bottom: 16px;
    }

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

    .benefit-card {
        padding: 24px;
    }

    .benefit-icon {
        margin-bottom: 16px;
    }

    .comparison-column {
        padding: 24px;
    }

    .comparison-header-label {
        margin-bottom: 18px;
    }

    .comparison-list {
        gap: 12px;
    }

    .pricing-grid {
        max-width: 100%;
        gap: 18px;
        padding-top: 12px;
    }

    .pricing-monthly-amount {
        font-size: 36px;
    }

    .pricing-card {
        padding: 26px;
        border-radius: 24px;
    }

    .pricing-price {
        margin: 18px 0;
        padding: 18px;
    }

    .pricing-features {
        gap: 11px;
        margin-bottom: 20px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .patient-journey {
        padding: 18px;
    }

    .journey-step {
        min-height: auto;
        padding: 16px;
    }

    .journey-step-number {
        margin-bottom: 10px;
    }

    .implementation-timeline {
        gap: 16px;
    }

    .timeline-phase {
        padding: 24px;
        border-radius: 24px;
    }

    .timeline-phase-list {
        margin-bottom: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .demo-form {
        gap: 18px;
    }

    .form-wrapper {
        padding: 24px;
        border-radius: 24px;
    }

    .form-section-header {
        margin-bottom: 32px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .cost-highlight {
        padding: 24px;
        border-radius: 22px;
        margin-bottom: 24px;
    }

    .cost-highlight-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .cost-text {
        font-size: 18px;
    }

    .problem-cta {
        margin-top: 28px;
    }

    .cta-final-title {
        font-size: 32px;
    }

    .cta-final-text {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
    }

    .footer-legal-list {
        flex-wrap: wrap;
        gap: 14px;
    }
}

/* ============================================================
   21. RESPONSIVE — 480px
   ============================================================ */

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .cta-final-title {
        font-size: 30px;
        letter-spacing: -0.03em;
    }

    .cost-text {
        font-size: 17px;
    }

    .cost-highlight {
        padding: 22px;
    }

    .pricing-monthly-amount {
        font-size: 34px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        padding: 12px 16px;
    }

    .stat-value {
        margin-bottom: 0;
        min-width: 60px;
    }

    .footer-legal-list {
        flex-direction: column;
        gap: 10px;
    }

    .btn-large {
        padding: 15px 22px;
        font-size: 15px;
    }

    .form-wrapper {
        padding: 20px;
    }

    .implementation-section .section-title,
    .pricing-section .section-title {
        font-size: 28px;
    }
}

/* ============================================================
   22. MOBILE FLOATING CTA BUTTON
   ============================================================ */

.mobile-cta-fab {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-fab {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: fixed;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 40;
        background: linear-gradient(135deg, #123C5A 0%, #0E7490 100%);
        color: #FFFFFF;
        font-family: inherit;
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;
        border-radius: 999px;
        padding: 16px 26px;
        min-height: 54px;
        white-space: nowrap;
        box-shadow:
            0 4px 16px rgba(14, 116, 144, 0.3),
            0 16px 44px rgba(14, 116, 144, 0.28);
        border: 1.5px solid rgba(255, 255, 255, 0.12);
        transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .mobile-cta-fab:hover,
    .mobile-cta-fab:active {
        transform: translateX(-50%) translateY(-2px);
        box-shadow:
            0 8px 24px rgba(14, 116, 144, 0.36),
            0 24px 56px rgba(14, 116, 144, 0.32);
    }

    .mobile-cta-fab:focus-visible {
        outline: 3px solid rgba(14, 116, 144, 0.4);
        outline-offset: 3px;
    }

    .mobile-cta-fab-icon {
        font-size: 17px;
        line-height: 1;
    }

    .mobile-cta-fab-text {
        font-size: 14px;
        font-weight: 700;
    }

    /* Espacio extra al fondo de la página para que el FAB no tape contenido */
    body {
        padding-bottom: 90px;
    }

    /* Ocultar FAB cuando el formulario es visible para no duplicar el CTA */
    .form-section {
        scroll-margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .mobile-cta-fab {
        bottom: 18px;
        padding: 14px 22px;
        min-height: 50px;
        max-width: calc(100% - 32px);
    }

    .mobile-cta-fab-text {
        font-size: 13px;
    }
}

/* ============================================================
   23. REDUCED MOTION (renumbered — FAB is 22)
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .floating-badge {
        animation: none;
    }
}

/* ============================================================
   23. PRINT
   ============================================================ */

@media print {
    .site-header,
    .nav-toggle,
    .floating-badge,
    .cta-final-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    section {
        padding: 32px 0;
    }
}
