/* ==========================================
   RS Finance - Landing Page Styles v1.1
   ========================================== */

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

:root {
    /* RS Finance Colors */
    --primary-color: #587592;
    --primary-dark: #4a6279;
    --primary-light: #7a94b0;
    --secondary-color: #CCDBE7;
    --background-light: #F9F9F9;
    --background-lighter: #FCFEFF;
    --text-dark: #222222;
    --text-medium: #333333;
    --text-light: #5a5a5a;
    --border-color: #E7E7E7;
    --success-color: #4CAF50;
    --white: #FFFFFF;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --spacing-xxxl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   Floating Logo
   ========================================== */

.floating-logo {
    position: fixed;
    top: -84px;
    left: 64px;
    z-index: 2000;
    pointer-events: none;
}

.floating-logo img {
    width: 92.95px;
    height: auto;
    display: block;
}

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

.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
    padding: 0 32px 0 180px; /* Left padding increased to avoid logo overlap */
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.main-nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-header {
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 117, 146, 0.3);
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xxxl) 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #587592 0%, #7a94b0 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.05)" width="50" height="50"/><rect fill="rgba(255,255,255,0.05)" x="50" y="50" width="50" height="50"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(88, 117, 146, 0.9) 0%, rgba(122, 148, 176, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   Buttons
   ========================================== */

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(88, 117, 146, 0.3);
    }
    50% {
        box-shadow: 0 6px 24px rgba(88, 117, 146, 0.5);
    }
}

/* ==========================================
   Section Styles
   ========================================== */

section {
    padding: var(--spacing-xxxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* ==========================================
   Financing Types Section
   ========================================== */

.financing-types {
    background-color: var(--background-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.type-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.type-icon {
    margin-bottom: var(--spacing-md);
}

.type-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.type-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ==========================================
   Benefits Section
   ========================================== */

.benefits {
    background-color: var(--white);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.benefits-text {
    position: sticky;
    top: 100px;
}

.large-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.benefit-card {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    margin-bottom: var(--spacing-md);
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.benefit-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   Trust Section - Google Reviews
   ========================================== */

.trust-section {
    padding: var(--spacing-xxxl) 0;
    background-color: var(--white);
}

.reviews-carousel {
    max-width: 1000px;
    margin: var(--spacing-xl) auto 0;
    position: relative;
    overflow: hidden;
    padding: 0 24px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    scroll-snap-type: x mandatory;
}

.review-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    scroll-snap-align: center;
}

.review-card {
    width: 100%;
    max-width: 740px;
    background: var(--background-lighter);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    box-sizing: border-box;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars .star {
    color: #FFA500;
    font-size: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    margin: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: var(--spacing-sm);
}

.review-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-source {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.reviews-dots .dot:hover {
    background-color: var(--primary-light);
}

.reviews-dots .dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

.reviews-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: var(--spacing-lg);
    font-style: italic;
}

/* ==========================================
   How It Works / Timeline Section
   ========================================== */

.how-it-works {
    background: linear-gradient(135deg, var(--background-lighter) 0%, var(--secondary-color) 100%);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xxxl);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-left .timeline-content {
    order: 1;
}

.timeline-left .timeline-image {
    order: 2;
}

.timeline-right .timeline-content {
    order: 2;
    text-align: right;
}

.timeline-right .timeline-image {
    order: 1;
}

.timeline-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: var(--spacing-sm);
}

.timeline-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.timeline-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

.timeline-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: var(--spacing-xxxl) 0;
}

.cta-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-text {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

/* ==========================================
   FAQ Section
   ========================================== */

.faq {
    background-color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 18px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-medium);
    line-height: 1.8;
}

/* ==========================================
   Footer - RS Finance Style
   ========================================== */

/* ==========================================
   FOOTER - Exact rs-finance.at Layout
   ========================================== */

.footer {
    background-color: rgb(48, 48, 48);
    width: 100%;
    padding: 0 0 16px;
    position: relative;
    margin-top: 125px;
}

.footer-container {
    width: 1140px;
    max-width: min(100%, 1140px);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 32px;
    align-items: flex-start;
    position: relative;
}

/* Column 1: Logo - Overlapping Footer */
.footer-logo-column {
    display: flex;
    flex-direction: row;
    flex: 0 0 auto;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    width: 145px;
    height: auto;
    display: block;
    position: relative;
    transform: translateY(-125px);
}

/* Column 2: Seal/Badge */
.footer-seal-column {
    display: flex;
    flex-direction: row;
    flex: 0 0 auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 43px;
}

.footer-seal-img {
    width: 137px;
    height: 137px;
    display: block;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 8px;
}

/* Column 3: Contact Info */
.footer-contact-column {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    padding-top: 32px;
    gap: 20px;
}

.footer-contact-heading {
    font-size: 26px;
    font-weight: 600;
    color: rgb(249, 249, 249);
    margin: 0 0 0 0;
    line-height: 1.2;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    margin: 0;
}

.footer-contact-link {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    color: rgb(88, 117, 146);
    font-size: 18px;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: rgb(249, 249, 249);
}

.footer-contact-link svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-link svg use {
    stroke: rgb(88, 117, 146);
}

.footer-contact-link span {
    color: rgb(88, 117, 146);
}

.footer-contact-link:hover span {
    color: rgb(249, 249, 249);
}

/* Column 4: Legal Links */
.footer-legal-column {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    padding-top: 32px;
    gap: 20px;
    align-items: center;
}

.footer-nav-menu {
    display: block;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-item {
    display: block;
}

.footer-nav-link {
    display: flex;
    font-size: 16px;
    line-height: 20px;
    color: rgb(249, 249, 249);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: rgb(88, 117, 146);
}

/* Copyright Row (Full Width) */
.footer-copyright {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 4px 0 0;
    align-items: flex-start;
}

.footer-copyright-text {
    font-size: 13px;
    line-height: 18px;
    color: rgb(106, 106, 106);
    margin: 0 0 8px 0;
}

.footer-partner-notice {
    font-size: 11px;
    line-height: 16px;
    color: rgb(180, 180, 180);
    margin: 0;
    opacity: 1;
    font-weight: 300;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .benefits-text {
        position: static;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        order: 2;
        text-align: center;
    }

    .timeline-left .timeline-image,
    .timeline-right .timeline-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    /* Header - Mobile Optimized */
    .header {
        height: 70px;
        padding: 0;
    }

    .header-content {
        padding: 0 var(--spacing-md);
        justify-content: flex-end;
    }

    .main-nav {
        display: none;
    }

    .logo {
        gap: 8px;
    }

    .logo svg {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 14px;
    }

    .btn-header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        height: 44px;
        font-size: 14px;
        line-height: 1;
    }

    /* Hero - Mobile Optimized */
    .hero {
        padding: var(--spacing-xxl) 0 var(--spacing-xl) 0;
    }

    .hero-content {
        padding: 0 var(--spacing-md);
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: var(--spacing-lg);
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    /* Sections - Mobile Spacing */
    .section {
        padding: var(--spacing-xl) 0;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .section-title {
        font-size: 28px;
        margin-bottom: var(--spacing-md);
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: var(--spacing-lg);
    }

    /* Types Grid - Single Column */
    .types-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .type-card {
        padding: var(--spacing-lg);
    }

    .type-title {
        font-size: 20px;
    }

    /* Benefits - Mobile Layout */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .benefit-card {
        padding: var(--spacing-lg);
    }

    .benefit-title {
        font-size: 18px;
    }

    /* Trust Section - Mobile */
    .trust-section {
        padding: var(--spacing-xxl) 0;
    }

    .reviews-carousel {
        padding: 0 16px;
    }

    .review-card {
        max-width: 92vw;
        padding: var(--spacing-lg);
    }

    .review-text {
        font-size: 15px;
    }

    .review-stars .star {
        font-size: 18px;
    }

    /* CTA Section - Mobile */
    .cta-title {
        font-size: 28px;
        margin-bottom: var(--spacing-md);
    }

    .cta-text {
        font-size: 16px;
        margin-bottom: var(--spacing-lg);
    }

    .cta-features {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    /* FAQ - Mobile Optimized */
    .faq-item {
        margin-bottom: var(--spacing-sm);
    }

    .faq-question {
        padding: var(--spacing-md);
        font-size: 16px;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
    }

    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: 15px;
    }

    /* Footer - Mobile Layout */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        padding-left: 0;
        text-align: center;
    }

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

    .contact-row {
        justify-content: center;
    }

    .footer-legal {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices - Premium Mobile Optimization */

    /* Header - Reduce Crowding */
    .floating-logo {
        top: -70px; /* Smaller overlap on mobile */
        left: 20px; /* Moved left from 40px */
    }

    .floating-logo img {
        width: 75px; /* Reduced from 92.95px */
        height: auto;
    }

    .header {
        height: 64px;
        padding: 0;
    }

    .header-content {
        padding: 0 var(--spacing-md);
    }

    .btn-header {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Hero - More Breathing Room & Better CTA Contrast */
    .hero {
        min-height: auto; /* Remove fixed height for natural flow */
        padding: var(--spacing-lg) 0 var(--spacing-xxl) 0; /* More bottom padding */
    }

    .hero-background::before {
        opacity: 0.15; /* Reduced from 0.3 for better contrast */
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: var(--spacing-md); /* More space after badge */
    }

    .hero-title {
        font-size: 28px; /* Slightly larger than 26px for premium feel */
        line-height: 1.4; /* Increased from 1.3 for lighter feel */
        margin-bottom: var(--spacing-lg); /* More space after headline */
        letter-spacing: -0.02em; /* Tighter tracking for premium look */
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6; /* Increased for readability */
        margin-bottom: var(--spacing-xl); /* More space before CTA */
    }

    .hero-cta {
        padding: 0 var(--spacing-md); /* Horizontal padding for better alignment */
        gap: var(--spacing-md); /* More space between buttons */
    }

    .hero-cta .btn-large {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Better depth */
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 48px; /* Touch target */
    }

    .btn-primary, .btn-secondary {
        min-height: 44px; /* Touch target */
        padding: 12px 24px;
    }

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

    .type-card, .benefit-card {
        padding: var(--spacing-md);
    }

    .timeline-number {
        font-size: 32px;
    }

    .timeline-title {
        font-size: 20px;
    }

    .timeline-text {
        font-size: 15px;
    }

    .cta-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 15px;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
    }

    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-sm);
        font-size: 14px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for all interactive elements */
    a, button, .btn-primary, .btn-secondary, .btn-large {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better spacing for touch */
    .type-card, .benefit-card, .faq-item {
        margin-bottom: var(--spacing-md);
    }

    /* Remove hover states on touch devices */
    .type-card:hover, .benefit-card:hover {
        transform: none;
    }

    /* Active states for touch feedback */
    .btn-primary:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .type-card:active, .benefit-card:active {
        transform: scale(0.99);
    }

    /* Footer - Mobile Layout */
    .footer-container {
        flex-direction: column;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }

    .footer-logo-column,
    .footer-seal-column,
    .footer-contact-column,
    .footer-legal-column {
        width: 100%;
        padding-top: 0;
        align-items: flex-start;
    }

    .footer-logo-img {
        width: 120px;
    }

    .footer-seal-column {
        margin-top: 16px;
    }

    .footer-seal-img {
        width: 120px;
        height: 120px;
    }

    .footer-contact-heading {
        font-size: 22px;
    }

    .footer-contact-link {
        font-size: 16px;
    }

    .footer-nav-link {
        font-size: 14px;
    }

    .footer-copyright {
        text-align: center;
        align-items: center;
        margin-top: var(--spacing-md);
    }
}
