/* ==========================================================================
   Base Styles
   ========================================================================== */

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f9fa;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.header-announcement-bar-wrapper {
    position: relative;
    width: 100%;
    background: #1F3368;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
}

.header-skip-link:focus {
    left: 10px;
    top: 10px;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3vw 4vw;
    min-height: 80px;
    background: #1F3368;
    max-width: 1800px;
    margin: 0 auto;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1F3368;
    z-index: -1;
}

.header-display-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.header-display-mobile {
    display: none;
}

.header-title-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
}

.header-title {
    display: flex;
    align-items: center;
}

.header-title-logo a {
    display: block;
    line-height: 0;
}

.header-title-logo img {
    display: block;
    height: 55px;
    width: auto;
}

.header-nav {
    flex: 1;
}

.header-nav-wrapper {
    display: flex;
    justify-content: flex-end;
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.header-nav-item {
    position: relative;
}

.header-nav-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
}

.header-nav-item--collection a[href="/explore-trial"] {
    background: #56b0ff;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
}

.header-nav-item--collection a[href="/explore-trial"]:hover {
    background: #4269e2;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(86, 176, 255, 0.3);
}

.header-nav-item a:hover {
    opacity: 0.7;
}

.header-nav-item--active a,
.header-nav-item--active .header-nav-folder-title {
    font-weight: 600;
}

.header-nav-item--folder {
    position: relative;
}

.header-nav-folder-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header-nav-folder-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    margin-top: 10px;
    z-index: 1000;
}

.header-nav-item--folder:hover .header-nav-folder-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav-folder-item {
    padding: 0;
}

.header-nav-folder-item a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1F3368;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.header-nav-folder-item a:hover {
    background-color: #f5f5f5;
}

.header-nav-folder-item--active a {
    font-weight: 600;
}

.header-nav-folder-item--external a::after {
    content: " ↗";
    font-size: 12px;
    margin-left: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions-action--cta .btn {
    display: inline-block;
    padding: 10px 28px;
    background: #ffffff;
    color: #1F3368;
    border: none;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.header-actions-action--cta .btn:hover {
    background: #F9FAFE;
    color: #0C2973;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.header-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-box {
    width: 24px;
    height: 18px;
    position: relative;
}

.burger-inner > div {
    background: #ffffff;
    height: 1px;
    width: 100%;
    position: absolute;
    transition: all 0.3s ease;
}

.top-bun {
    top: 0;
}

.patty {
    top: 50%;
    transform: translateY(-50%);
}

.bottom-bun {
    bottom: 0;
}

.showOnMobile {
    display: none;
}

.showOnDesktop {
    display: block;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ==========================================================================
   Two-Column Layout System
   ========================================================================== */

.two-column-layout-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #f8f9fa;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 60px;
    align-items: start;
}

/* Main Content Column */
.main-content-column {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

/* Sidebar Column */
.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-sticky-container {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==========================================================================
   Hero Section (Inline within main column)
   ========================================================================== */

.hero-inline {
    background: #ffffff;
    padding: 40px 30px;
    border-bottom: 1px solid #e9ecef;
}

.hero-inline h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90.01deg, #4269e2 .01%, #56b0ff 29.29%, #64c6c6 56.89%, #5d98b2 83.66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.2;
}

.hero-inline .hero-meta {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 10px;
}

/* ==========================================================================
   Sidebar Components
   ========================================================================== */

/* Quick Phone CTA (Top Priority) */
.sidebar-quick-cta {
    background: linear-gradient(135deg, #4269e2, #56b0ff);
    color: #ffffff;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(66, 105, 226, 0.25);
}

.sidebar-quick-cta .cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sidebar-quick-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.sidebar-quick-cta .cta-description {
    font-size: 1rem;
    margin-bottom: 16px;
    opacity: 0.95;
}

.sidebar-quick-cta .cta-phone-button {
    display: block;
    background: #ffffff;
    color: #4269e2;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin: 16px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-quick-cta .cta-phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sidebar-quick-cta .phone-icon {
    margin-right: 8px;
}

.sidebar-quick-cta .cta-hours {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 8px;
}

/* Key Facts Callout */
.sidebar-key-facts {
    background: #ffffff;
    border-left: 4px solid #56b0ff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-key-facts h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F3368;
    margin-bottom: 16px;
}

.sidebar-key-facts .sidebar-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-key-facts .sidebar-facts-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
    color: #495057;
}

.sidebar-key-facts .sidebar-facts-list li:last-child {
    border-bottom: none;
}

.sidebar-key-facts .sidebar-facts-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Sidebar Form */
.sidebar-form {
    background: #F9FAFE;
    border: 2px solid #DAE0FA;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(12, 41, 115, 0.08);
}

.sidebar-form h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0C2973;
    margin-bottom: 8px;
}

.sidebar-form .sidebar-form-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 24px;
}

/* ==========================================================================
   Content Wrapper (now within main column)
   ========================================================================== */

.content-wrapper {
    background: white;
    /* Removed max-width - now controlled by grid column */
    /* Removed margin - part of main column flow */
    /* Removed border-radius and box-shadow - handled by main-content-column */
}

.key-info-banner {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 30px;
    margin-bottom: 0;
}

.key-info-banner h3 {
    color: #856404;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.key-info-banner p {
    color: #856404;
    font-size: 0.95rem;
    margin: 0;
}

.content-section {
    padding: 40px 30px;
    border-bottom: 1px solid #e9ecef;
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

/* ==========================================================================
   Info Grid
   ========================================================================== */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.info-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #667eea;
    cursor: pointer;
    transition: background 0.3s;
}

.info-item:hover {
    background: #e9ecef;
}

.info-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.info-dropdown {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #dee2e6;
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.6;
}

.info-item.active .info-dropdown {
    display: block;
}

.info-arrow {
    color: #667eea;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.info-item.active .info-arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   Tier Table
   ========================================================================== */

.tier-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.tier-table thead {
    background: #667eea;
    color: white;
}

.tier-table th,
.tier-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.tier-table tbody tr:hover {
    background: #f8f9fa;
}

.tier-table tbody tr:last-child td {
    border-bottom: none;
}

.tier-table .tier-name {
    font-weight: 600;
}

.tier-table .credit-amount {
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ==========================================================================
   Lists
   ========================================================================== */

.criteria-list {
    list-style: none;
    margin: 15px 0;
}

.criteria-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.numbered-list {
    list-style: none;
    counter-reset: item;
    margin: 15px 0;
}

.numbered-list li {
    counter-increment: item;
    padding: 12px 0 12px 40px;
    position: relative;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 10px;
    background: #667eea;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================================================
   Expandable Sections
   ========================================================================== */

.expandable {
    margin: 15px 0;
}

.expandable-header {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.expandable-header:hover {
    background: #e9ecef;
}

.expandable-content {
    padding: 20px;
    display: none;
    background: #fafbfc;
    border-radius: 0 0 8px 8px;
}

.expandable.active .expandable-content {
    display: block;
}

.expandable-arrow {
    transition: transform 0.3s;
}

.expandable.active .expandable-arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   Highlight Boxes
   ========================================================================== */

.highlight-box {
    background: #e7f3ff;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.highlight-box h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 30px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Form Section (HubSpot Integration)
   ========================================================================== */

.form-section-wrapper {
    background: #ffffff;
    padding: 80px 20px;
    margin: 0;
}

.form-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 58.33% 41.67%;
    gap: 40px;
    align-items: start;
}

.form-content-column {
    padding-right: 20px;
}

.form-content-column h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.form-content-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.form-content-column p strong {
    color: #1a1a1a;
    font-weight: 600;
}

.form-content-column ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.form-content-column ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.form-content-column ul li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #667eea;
    font-weight: bold;
    font-size: 1.4rem;
}

.form-embed-column {
    background: #F9FAFE;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(12, 41, 115, 0.1);
    border: 1px solid #DAE0FA;
}

/* Custom Incentify Form Styling */
.incentify-form {
    width: 100%;
}

.incentify-form .form-group {
    margin-bottom: 24px;
}

.incentify-form .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0C2973;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.incentify-form .form-label.required::after {
    content: " *";
    color: #4269e2;
}

.incentify-form .form-input,
.incentify-form .form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #DAE0FA;
    border-radius: 8px;
    background: #ffffff;
    color: #0C2973;
    transition: all 0.3s ease;
}

.incentify-form .form-input:focus,
.incentify-form .form-select:focus {
    outline: none;
    border-color: #4269e2;
    box-shadow: 0 0 0 3px rgba(66, 105, 226, 0.1);
    background: #ffffff;
}

.incentify-form .form-input::placeholder {
    color: #adb5bd;
}

.incentify-form .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234269e2' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

/* Radio Button Styling */
.form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid #DAE0FA;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.form-radio-label:hover {
    border-color: #4269e2;
    background: #F9FAFE;
}

.form-radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #4269e2;
}

.form-radio-label span {
    font-size: 0.95rem;
    color: #1F3368;
}

.form-radio:checked + span {
    font-weight: 600;
    color: #0C2973;
}

/* Checkbox Styling */
.form-checkbox-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-checkbox-label-block {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid #DAE0FA;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.form-checkbox-label-block:hover {
    border-color: #56b0ff;
    background: #F9FAFE;
}

.form-checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #4269e2;
}

.form-checkbox-label-block span,
.form-checkbox-label-consent span {
    font-size: 0.95rem;
    color: #1F3368;
    line-height: 1.5;
}

.form-checkbox-custom:checked ~ span {
    font-weight: 600;
    color: #0C2973;
}

.form-checkbox-label-consent {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 16px;
    background: #F9FAFE;
    border: 2px solid #DAE0FA;
    border-radius: 8px;
}

.form-checkbox-label-consent a {
    color: #4269e2;
    text-decoration: underline;
}

.form-checkbox-label-consent a:hover {
    color: #56b0ff;
}

/* Submit Button with Gradient */
.form-submit-button-gradient {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90.01deg, #4269e2 .01%, #56b0ff 29.29%, #64c6c6 56.89%, #5d98b2 83.66%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(66, 105, 226, 0.3);
}

.form-submit-button-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 105, 226, 0.4);
}

.form-submit-button-gradient:active {
    transform: translateY(-1px);
}

.form-submit-button-gradient:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.incentify-form .form-success-message {
    display: none;
    padding: 16px 20px;
    background: linear-gradient(135deg, #64c6c6 0%, #56b0ff 100%);
    color: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: center;
}

.incentify-form .form-success-message.show {
    display: block;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.preFade {
    opacity: 0;
}

.fadeIn {
    animation: fadeInAnimation 0.6s ease forwards;
}

.preSlide {
    opacity: 0;
    transform: translateY(20px);
}

.slideIn {
    animation: slideInAnimation 0.6s ease forwards;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInAnimation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Form Section */
@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-content-column {
        padding-right: 0;
    }

    .form-content-column h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .form-section-wrapper {
        padding: 60px 20px;
    }

    .form-content-column h1 {
        font-size: 1.75rem;
    }

    .form-embed-column {
        padding: 20px;
    }
}

/* ==========================================================================
   Disclaimer
   ========================================================================== */

.disclaimer {
    background: #f8f9fa;
    padding: 30px;
    margin-top: 40px;
    border-top: 1px solid #dee2e6;
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.8;
}

/* ==========================================================================
   Two-Column Layout Responsive
   ========================================================================== */

/* Medium Desktop - Tighter spacing */
@media (max-width: 1200px) {
    .two-column-layout {
        grid-template-columns: 60fr 40fr;
        gap: 40px;
    }
}

/* Tablet - Maintain columns but adjust */
@media (max-width: 992px) {
    .two-column-layout {
        grid-template-columns: 58fr 42fr;
        gap: 30px;
    }

    .two-column-layout-container {
        padding: 30px 20px;
    }

    /* Disable sticky on tablet */
    .sidebar-sticky-container {
        position: static;
    }

    .hero-inline h1 {
        font-size: 2rem;
    }
}

/* Mobile - Stack columns */
@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-column-layout-container {
        padding: 20px 10px;
    }

    /* Reorder sidebar elements for mobile */
    .sidebar-column {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Quick CTA becomes sticky on mobile (per UX expert) */
    .sidebar-quick-cta {
        position: sticky;
        top: 80px;
        z-index: 100;
        order: 1;
        margin-bottom: 20px;
        box-shadow: 0 4px 16px rgba(66, 105, 226, 0.35);
        animation: slideInDown 0.4s ease;
    }

    /* Hide key facts on mobile to reduce clutter */
    .sidebar-key-facts {
        display: none;
    }

    /* Form appears after main content */
    .sidebar-form {
        order: 3;
        padding: 24px;
    }

    /* Main content in middle */
    .main-content-column {
        order: 2;
    }

    /* Hero adjustments */
    .hero-inline {
        padding: 30px 20px;
    }

    .hero-inline h1 {
        font-size: 1.75rem;
    }

    /* Content sections mobile padding */
    .content-section {
        padding: 30px 20px;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
    /* Header Mobile */
    .header-display-desktop {
        display: none !important;
    }

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

    .header-inner {
        padding: 6vw 4vw;
    }

    .header-title-logo img {
        height: 30px;
    }

    .header-nav {
        display: none;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-burger {
        display: block;
    }

    .showOnMobile {
        display: block;
    }

    .showOnDesktop {
        display: none;
    }

    /* Hero Mobile */
    .hero h1 {
        font-size: 2rem;
    }

    /* Content Mobile */
    .content-section {
        padding: 30px 20px;
    }

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

    .tier-table {
        font-size: 0.9rem;
    }

    .tier-table th,
    .tier-table td {
        padding: 10px;
    }

    /* Footer Mobile */
    .footer-wrapper {
        padding: 40px 6vw 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-column-learn {
        grid-column: 1 / 2;
    }

    .footer-column-about {
        grid-column: 2 / 3;
    }

    .footer-column-contact {
        grid-column: 1 / 3;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column-learn,
    .footer-column-about,
    .footer-column-contact {
        grid-column: 1 / -1;
        text-align: left;
    }

    .footer-legal-links {
        gap: 1rem;
    }
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.footer-wrapper {
    background-color: #dae1fa;
    padding: 60px 4vw 40px;
    width: 100%;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.footer-column-learn {
    grid-column: 1 / 4;
}

.footer-column-about {
    grid-column: 4 / 7;
}

.footer-column-contact {
    grid-column: 9 / 13;
    text-align: right;
}

.footer-heading {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #000000;
}

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

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-contact-info {
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.social-icon:hover {
    background: #333333;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-divider {
    border: none;
    border-top: 0.5px solid #000000;
    margin: 2.5rem 0;
    opacity: 0.3;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 14px;
    color: #000000;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-legal-links a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.footer-legal-links a:hover {
    opacity: 0.7;
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Responsive - Medium Screens */
@media (max-width: 1024px) {
    .footer-column-learn {
        grid-column: 1 / 5;
    }

    .footer-column-about {
        grid-column: 5 / 9;
    }

    .footer-column-contact {
        grid-column: 9 / 13;
    }
}
