:root {
    --font-primary: 'Alexandria', sans-serif;

    /* Xentral Colors (Extracted from xentral.com) */
    --color-primary-blue: #5B64EE;
    /* Verified */
    --color-primary-teal: #1ACDCE;
    /* Verified */
    --color-text-main: #344054;
    /* Verified */
    --color-text-heading: #344054;
    /* Verified */
    --color-text-muted: #98A2B3;
    /* Verified */
    --color-bg-light: #F9FAFB;
    --color-bg-white: #FFFFFF;
    --color-footer-bg: #1D2939;

    --gradient-primary: linear-gradient(90deg, #5B64EE 2.28%, #5B64EE 47.14%, #1ACDCE 99.21%);
    --gradient-secondary-border: linear-gradient(90deg, #5B64EE, #1ACDCE);

    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(16, 24, 40, 0.1), 0 2px 4px -1px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-full: 9999px;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    line-height: 1.5;
    /* 24px/16px = 1.5 */
    background-color: var(--color-bg-white);
    font-weight: 300;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    /* Standardizing section headers */
    line-height: 40px;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1280px;
    /* Verified */
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-white {
    color: #fff !important;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    /* Verified */
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 20px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    filter: hue-rotate(15deg);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: linear-gradient(#fff, #fff) padding-box, var(--gradient-secondary-border) border-box;
    color: var(--color-text-heading);
    border: 2px solid transparent;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: linear-gradient(var(--color-bg-light), var(--color-bg-light)) padding-box, var(--gradient-secondary-border) border-box;
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    height: 70px;
    /* Approx 69px */
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F2F4F7;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 32px;
    width: auto;
}

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

.nav-links a {
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 14px;
}

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

/* Hero */
.hero {
    padding: 0 0 4rem 0;
    background: radial-gradient(circle at top right, rgba(91, 100, 238, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(26, 205, 206, 0.05), transparent 40%);
}

/* Deadline Bar */
.deadline-bar {
    background: linear-gradient(90deg, #B42318 0%, #DC2626 100%);
    color: #fff;
    padding: 12px 0;
    margin-bottom: 3rem;
}

.deadline-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 15px;
}

.deadline-bar-content i:first-child {
    font-size: 1.25rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.deadline-cta {
    background: #fff;
    color: #B42318;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deadline-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Trust Badges */
.hero-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--color-text-main);
}

.hero-trust i {
    color: var(--color-primary-teal);
}

/* Larger CTA Button */
.btn-large {
    padding: 14px 24px;
    font-size: 16px;
    gap: 0.5rem;
}

/* Migration Visual */
.migration-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.migration-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 200px;
    position: relative;
    border: 2px solid transparent;
}

.migration-old {
    border-color: #FECDCA;
    opacity: 0.85;
}

.migration-new {
    border-color: var(--color-primary-teal);
    transform: scale(1.05);
}

.migration-status {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.migration-status.deprecated {
    background: #FEF3F2;
    color: #B42318;
    border: 1px solid #FECDCA;
}

.migration-status.active {
    background: linear-gradient(90deg, var(--color-primary-blue), var(--color-primary-teal));
    color: #fff;
}

.migration-icon {
    font-size: 2.5rem;
    text-align: center;
    margin: 1rem 0;
}

.migration-old .migration-icon {
    color: #F97066;
}

.migration-new .migration-icon {
    color: var(--color-primary-teal);
}

.migration-card h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-heading);
}

.migration-features {
    font-size: 12px;
}

.migration-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    color: var(--color-text-main);
}

.migration-old .migration-features i {
    color: #F97066;
}

.migration-new .migration-features i {
    color: var(--color-primary-teal);
}

.migration-arrow {
    font-size: 1.5rem;
    color: var(--color-primary-blue);
    animation: bounce-right 1s infinite;
}

@keyframes bounce-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(39, 231, 162, 0.1);
    color: #027A48;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(39, 231, 162, 0.3);
}

/* Deadline Banner - Prominent */
.deadline-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 20px;
    background: linear-gradient(135deg, #FEF3F2 0%, #FEE4E2 100%);
    color: #B42318;
    border-radius: var(--radius-sm);
    font-size: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #FECDCA;
    animation: pulse-border 2s infinite;
}

.deadline-banner i {
    font-size: 1.25rem;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(180, 35, 24, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(180, 35, 24, 0);
    }
}

/* Visual Info - Fixed connector labels */
.connector-label {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.arrow-icon {
    color: var(--color-primary-teal);
    font-size: 1.25rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary-teal);
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 2.5rem;
    color: var(--color-text-main);
    max-width: 540px;
    font-weight: 300;
}

/* Visual Card in Hero */
.visual-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid #EAECF0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 320px;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.sync-icon {
    font-size: 3rem;
    color: var(--color-primary-blue);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.visual-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
    font-weight: 600;
}

.arrow {
    color: var(--color-text-muted);
}

.status-badge {
    background: #ecfdf3;
    color: #027a48;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Section Common */
.section {
    padding: 5rem 0;
}

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

.section-light {
    background: var(--color-bg-light);
}

.section-dark-blue {
    background: var(--color-footer-bg);
}

/* Premium Benefits Section */
.benefits-premium-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
}

.benefits-graphic {
    flex: 1.2;
}

.benefits-graphic img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.benefits-premium-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-premium-card {
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid #EAECF0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-premium-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-teal);
}

.benefit-icon {
    color: var(--color-primary-teal);
    font-size: 1.5rem;
    min-width: 40px;
    display: flex;
    justify-content: center;
}

.benefit-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--color-text-heading);
}

.benefit-content p {
    font-size: 14px;
    color: var(--color-text-main);
    line-height: 1.4;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Customizations Grid - 5 cards */
.grid-5-customizations {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.customization-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid #EAECF0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customization-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-teal);
}

.customization-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(91, 100, 238, 0.1), rgba(26, 205, 206, 0.1));
    color: var(--color-primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.customization-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-heading);
}

.customization-card p {
    font-size: 14px;
    color: var(--color-text-main);
    line-height: 1.4;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #EAECF0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(91, 100, 238, 0.1);
    color: var(--color-primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Row Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

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

/* Benefits List */
.benefit-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 16px;
}

.benefit-list i {
    color: var(--color-primary-teal);
    margin-top: 4px;
}

.visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.connector-line {
    width: 100px;
    height: 4px;
    background: #EAECF0;
    position: relative;
    border-radius: 2px;
}

.connector-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-primary-blue);
    border-radius: 50%;
    top: -3px;
    left: 0;
    animation: moveLine 2s infinite ease-in-out;
}

@keyframes moveLine {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/* Process Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.step-item {
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}

.step-item::after {
    content: '→';
    position: absolute;
    right: -1.25rem;
    top: 0.75rem;
    font-size: 1.25rem;
    color: #D0D5DD;
}

.step-item:last-child::after {
    display: none;
}

.step-item h3 {
    font-size: 16px;
    margin-bottom: 0.75rem;
}

.step-item p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-main);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-weight: bold;
    font-size: 14px;
}

/* Video Section */
.video-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #EAECF0;
}

.video-section h3 {
    margin-bottom: 1.5rem;
    color: var(--color-text-heading);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

/* Video Thumbnail Link */
.video-thumbnail-link {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FF0000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-thumbnail:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.video-play-button i {
    margin-left: 5px;
}

.video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 2rem 1rem 1rem;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.video-docs-link {
    margin-top: 1.5rem;
    text-align: center;
}

.video-docs-link .btn {
    display: inline-flex;
    gap: 0.5rem;
}

/* Resource Cards */
.resource-card {
    display: flex;
    flex-direction: column;
}

.resource-link {
    margin-top: auto;
    color: var(--color-primary-blue);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
}

.resource-link:hover {
    text-decoration: underline;
}

/* Offer Process Steps */
.offer-process {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.process-step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    width: 220px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-5px);
}

.process-step-card.highlight {
    background: rgba(26, 205, 206, 0.2);
    border-color: var(--color-primary-teal);
}

.process-step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--color-primary-teal);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-icon {
    font-size: 2rem;
    color: var(--color-primary-teal);
    margin-bottom: 1rem;
}

.process-step-card h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.process-step-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Offer Cards */
.offer-cards {
    display: flex;
    justify-content: center;
}

.offer-cards-two {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.offer-cards-three {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.offer-cards-three .offer-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
}

.offer-intro {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0 0 15px 0;
    line-height: 1.5;
    font-style: italic;
}

.offer-card {
    background: #fff;
    color: var(--color-text-heading);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 380px;
    position: relative;
    text-align: left;
}

.offer-card-secondary {
    background: rgba(255, 255, 255, 0.95);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.btn-secondary-light {
    background: transparent;
    color: var(--color-text-heading);
    border: 2px solid #EAECF0;
}

.btn-secondary-light:hover {
    background: var(--color-bg-light);
    border-color: var(--color-primary-blue);
}

.offer-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.offer-price {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-features {
    text-align: left;
    margin-bottom: 2rem;
}

.offer-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 14px;
}

.offer-features li::before {
    content: '✓';
    color: var(--color-primary-teal);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Customizations Section */
.customizations-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.customizations-info {
    flex: 1.2;
}

.customizations-info h2 {
    margin-bottom: 1rem;
}

.customizations-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.customizations-list {
    margin-top: 1.5rem;
}

.customizations-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 15px;
}

.customizations-list i {
    color: var(--color-primary-teal);
    margin-top: 4px;
}

/* Alert Box */
.alert-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid;
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
}

.alert-box.warning {
    background: #FFFAEB;
    border-color: #FEDF89;
    color: #B54708;
}

.alert-box h3 {
    margin-bottom: 0.5rem;
    color: #B54708;
}

.alert-icon {
    font-size: 1.5rem;
}

/* FAQ Accordion */
.accordion {
    border-top: 1px solid #EAECF0;
    margin-top: 2rem;
}

.accordion-item {
    border-bottom: 1px solid #EAECF0;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-family: inherit;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 400px;
    padding-bottom: 1.5rem;
    color: var(--color-text-main);
}

/* Footer */
.footer {
    background: var(--color-footer-bg);
    color: #98A2B3;
    padding: 64px 0 32px;
}

/* Footer Top */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    color: #98A2B3;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-primary-blue);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding-bottom: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col .footer-subhead {
    margin-top: 1.5rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 13px;
    color: #98A2B3;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 13px;
    color: #667085;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 13px;
    color: #667085;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .grid-5-customizations {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 900px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .grid-3,
    .grid-4,
    .grid-5-customizations {
        grid-template-columns: 1fr;
    }

    .deadline-bar-content {
        font-size: 13px;
        text-align: center;
    }

    .migration-visual {
        flex-direction: column;
        gap: 1.5rem;
    }

    .migration-arrow {
        transform: rotate(90deg);
    }

    @keyframes bounce-right {
        0%, 100% { transform: rotate(90deg) translateX(0); }
        50% { transform: rotate(90deg) translateX(5px); }
    }

    .migration-card {
        width: 100%;
        max-width: 250px;
    }

    .migration-new {
        transform: scale(1);
    }

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

    .offer-cards-two,
    .offer-cards-three {
        flex-direction: column;
        align-items: center;
    }

    .offer-cards-three .offer-card {
        max-width: 100%;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .row,
    .benefits-premium-wrapper,
    .customizations-wrapper {
        flex-direction: column;
    }

    .benefits-graphic {
        margin-bottom: 2rem;
    }

    .benefit-premium-card:hover {
        transform: translateY(-5px);
    }

    .steps-grid,
    .steps-5,
    .steps-3 {
        grid-template-columns: 1fr;
    }

    .step-item::after {
        transform: rotate(90deg);
        right: 50%;
        top: auto;
        bottom: -0.5rem;
    }

    .step-item:last-child::after {
        display: none;
    }

    .visual-card {
        width: 100%;
    }

    .offer-process {
        flex-direction: column;
        align-items: center;
    }

    .process-step-card {
        width: 100%;
        max-width: 300px;
    }
}