﻿/* Inter Local Font Hosting */
/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
    scroll-behavior: smooth;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #0f172a;
    /* Slate 900 - Dark Mode Background */
    color: #f8fafc;
    /* Slate 50 - Light Text */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    /* Crisp text */
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    /* Removed flex centering to allow sections to stack vertically */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 3rem 1.5rem;
    /* Reduced for mobile */
}

@media (min-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
    }
}

/* Background Blobs for that "Refactoring UI" Glow */
/* Background Blobs & Grid */
.background-blob-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.background-blob-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

/* Subtle Grid Pattern Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Grid lines: Sparser, with a gradient tint (Cyan/Blue) for that tech feel */
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
    background-size: 350px 350px;
    /* Much larger cells (sparser) */
    z-index: -1;
    pointer-events: none;
    /* Fade out towards bottom and edges */
    mask-image: radial-gradient(circle at top center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at top center, black 40%, transparent 80%);
}

/* Decorative Gradient Beams */
.grid-beam {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.6) 50%, transparent 100%);
    /* Visibly Blue */
    width: 100%;
    max-width: 600px;
    z-index: -1;
    opacity: 0.8;
    /* Higher opacity to be seen */
    pointer-events: none;
}

.grid-beam-1 {
    top: 25%;
    left: -10%;
    transform: rotate(-15deg);
    width: 800px;
    background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.5) 50%, transparent 100%);
}

.grid-beam-2 {
    bottom: 30%;
    right: -10%;
    transform: rotate(-20deg);
    width: 600px;
    background: linear-gradient(90deg, transparent 0%, rgba(129, 140, 248, 0.5) 50%, transparent 100%);
    /* Indigo tint */
}

/* Decorative Glowing Grid Lines Removed */

/* Indigo tint */

.container {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    /* Ensure z-index works if needed */
}

/* ... (rest of layout unchanged) ... */

.kicker {
    display: block;
    font-size: 0.875rem;
    /* Reduced from 1.125rem for mobile */
    letter-spacing: 0.15em;
    /* Slightly tighter for mobile */
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .kicker {
        font-size: 1.125rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }
}

.kicker .text-muted {
    font-weight: 500;
    /* Medium */
    color: #94a3b8;
    /* Slate 400 */
}

.kicker .text-bold {
    font-weight: 700;
    /* Bold */
    color: #f8fafc;
    /* Slate 50 - White highlight for "Scialotti" */
}

/* ... (text classes unchanged) ... */

/* CTA Button: Pill Style */
/* CTA Button: Pill Style */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5ccaf9;
    /* Balanced Sky - Middle ground between 300 and 400 */
    color: #0f172a;
    /* Slate 900 */
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1.125rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* Simplified transition */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: none;
}

.cta-button:hover {
    background-color: #94e1fd;
    /* Slightly lighter middle ground on hover */
    color: #020617;
    /* Removed the large shadow halo and vertical movement */
    transform: translateY(0);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Keep same small shadow */
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced gap on mobile */
    align-items: center;
}

/* Desktop Layout: Text Left, Image Right */
@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 4rem 0;
    }

    .text-column {
        flex: 1;
        max-width: 55%;
        order: 1;
        /* Left */
        text-align: left;
    }

    .image-column {
        flex: 1;
        max-width: 40%;
        order: 2;
        /* Right */
        display: flex;
        justify-content: flex-end;
    }
}

/* Text Styles */
.text-column {
    text-align: center;
}



/* Text Styles: Headline Gradient */
/* Text Styles: Headline Gradient */
.headline {
    color: transparent;
    /* Balanced gradient (Middle ground): Sky 350 -> Sky 400 -> Indigo 500 */
    background-image: linear-gradient(to right, #5ccaf9, #38bdf8, #6366f1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 3rem;
    /* Further reduced from 3.2rem for better mobile fit */
    line-height: 1.05;
    /* Even tighter for mobile */
    letter-spacing: -0.03em;
    /* Slightly more negative for mobile */
    padding-bottom: 0.1em;
    /* Safeguard for descenders */
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .headline {
        font-size: 5.5rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
        max-width: 12ch;
    }
}

.subtext {
    color: #94a3b8;
    /* Slate 400 - Muted Text */
    font-size: 1.125rem;
    /* Reduced from 1.25rem for mobile */
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 60ch;
    /* Optimal reading width */
}

@media (min-width: 768px) {
    .subtext {
        font-size: 1.25rem;
        line-height: 1.75;
    }
}

/* CTA Button */


/* Image Styles */
.image-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    /* Deep shadow for dark mode */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Glassy border */
    max-width: 480px;
    width: 100%;
    background-color: #1e293b;
    /* Slate 800 card bg */
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.95;
    /* Slight blend with dark theme */
}

.decorative-ring {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Content Section Layout */
.content-section {
    background-color: #ffffff;
    /* White background as per reference */
    color: #1e293b;
    /* Slate 800 - Dark Text */
    padding: 4rem 1.5rem;
    /* More compact for mobile */
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .content-section {
        padding: 8rem 1.5rem;
    }
}

.content-section-muted {
    background-color: #f8fafc;
    /* Slate 50 - Extremely subtle off-white shift */
}

.content-container {
    max-width: 850px;
    /* Increased from 680px - Wider column for modern feel */
    margin: 0 auto;
}

.content-block {
    margin-bottom: 5rem;
    /* Space between blocks */
}

.content-block:last-child {
    margin-bottom: 0;
}

/* Typography matching Refactoring UI reference */
.content-section h2 {
    font-size: 1.75rem;
    /* 28px Mobile - More discreet */
    font-weight: 400;
    /* Regular - Very fine, as requested */
    line-height: 1.2;
    color: #0f172a;
    /* Slate 900 */
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.content-section p {
    font-size: 1.25rem;
    /* 20px - Large, clearly legible body text */
    line-height: 1.7;
    /* Relaxed leading */
    color: #334155;
    /* Slate 700 - Good contrast */
    margin-bottom: 2rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.content-section ul li {
    font-size: 1.25rem;
    /* Match paragraph size */
    line-height: 1.7;
    color: #334155;
    padding-left: 1.5rem;
    /* Space for bullet */
    position: relative;
    margin-bottom: 0.75rem;
}

.content-section ul li::before {
    content: "\2022";
    color: #38bdf8;
    /* Sky 400 */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 2rem;
    top: 0;
}

@media (min-width: 768px) {
    .content-section h2 {
        font-size: 2.25rem;
        /* 36px on desktop - Balanced and elegant */
        max-width: 35ch;
    }
}

/* Method Grid and Cards */
.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .method-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.method-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.02),
        0 1px 2px -1px rgba(0, 0, 0, 0.01);
}

.method-card:hover {
    border-color: #f1f5f9;
    /* Keep neutral border on hover */
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.04),
        0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.method-card::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    left: 2.5rem;
    width: 24px;
    height: 4px;
    background-image: linear-gradient(to right, #7dd3fc, #6366f1);
    border-radius: 9999px;
    opacity: 0.8;
}

.method-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 0;
}

/* No accent line (h3::before removed) */

.method-card p {
    font-size: 1.0625rem !important;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

/* Split Layout Section */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    /* Reduced for mobile */
    align-items: flex-start;
}

.split-left {
    flex: 1;
}

.subtitle-wrapper {
    display: inline-block;
}

.guiding-arrow {
    display: none;
    vertical-align: middle;
    color: #38bdf8;
    margin-left: 0.5rem;
}

@media (min-width: 1024px) {
    .guiding-arrow {
        display: inline-flex;
    }
}

.split-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .split-layout {
        flex-direction: row;
        gap: 6rem;
        /* Original desktop gap */
    }

    .split-left {
        max-width: 40%;
    }

    .split-right {
        max-width: 60%;
    }
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    color: #38bdf8;
    /* Sky 400 */
    margin-top: 0.25rem;
}

.feature-item strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    /* Slate 900 */
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem !important;
    line-height: 1.6;
    color: #475569;
    /* Slate 600 */
    margin-bottom: 0;
}

/* Logos Section Styling */
.logos-section {
    background-color: #f8fafc !important;
    /* Slate 50 - Muted Light Mode */
    border-top: none !important;
    padding: 5.5rem 1.5rem !important;
}

.content-section.logos-section .logos-title {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em !important;
    font-weight: 600 !important;
    color: #64748b !important;
    /* Slate 500 for better legibility on light bg */
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6rem;
    }
}

.logo-item {
    max-width: 120px;
    /* Maintain elegant scaling */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 48px;
    /* Limit height to prevent gigantic logos */
    height: auto;
    filter: brightness(0);
    /* Make logos black for visibility on light background */
    opacity: 0.4;
    transition: all 0.4s ease;
}

.logo-item img:hover {
    opacity: 0.9;
}

.text-center {
    text-align: center;
}

/* Contact Form Section - Premium Split Layout */
.form-section {
    background-color: #0f172a !important;
    padding: 5rem 1.5rem !important;
    /* Compact mobile spacing */
}

@media (min-width: 768px) {
    .form-section {
        padding: 10rem 1.5rem !important;
    }
}

.form-section .split-layout {
    align-items: center;
    /* Center form vs text vertically on desktop */
}

.form-section .form-header {
    text-align: center;
    /* Centered on mobile */
    margin-bottom: 1.5rem;
    /* Reduced for mobile */
}

@media (min-width: 1024px) {
    .form-section .form-header {
        text-align: left;
        /* Restored on desktop */
        margin-bottom: 3rem;
        /* Original desktop margin */
    }
}

.form-section .form-title {
    font-size: 2.25rem !important;
    /* Authority size scaled for mobile */
    font-weight: 700 !important;
    background: linear-gradient(to right, #f8fafc, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.03em !important;
}

@media (min-width: 768px) {
    .form-section .form-title {
        font-size: 3rem !important;
    }
}

.form-section .form-subtitle {
    font-size: 1.125rem !important;
    color: #94a3b8 !important;
    max-width: 44ch;
    margin: 0 !important;
    line-height: 1.7 !important;
}

/* Refined Form on the Right */
.contact-form-refined {
    width: 100%;
    background-color: rgba(30, 41, 59, 0.7);
    /* Translucent Slate 800 */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.internal-form-title {
    display: block;
    font-size: 1.125rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #cbd5e1;
    /* Slate 300 - Slightly muted white */
}

.required-mark {
    color: #64748b;
    /* Slate 500 - More subtle */
    font-size: 0.8em;
    vertical-align: top;
}

@media (max-width: 640px) {
    .contact-form-refined {
        padding: 2rem 1.5rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-group.full-width {
        grid-column: span 2;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-section .form-group label {
    font-size: 0.75rem;
    color: #94a3b8;
    /* Slate 400 */
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Base Input Styles */
.form-group input[type="text"],
.form-group input[type="tel"],
.form-section .form-group textarea {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    /* Darker Slate 900 translucent */
    border: 1px solid rgba(51, 65, 85, 0.8);
    /* Slate 700 */
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    color: #f8fafc;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    resize: none;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

/* Autofill Overrides */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-section .form-group textarea:-webkit-autofill,
.form-section .form-group textarea:-webkit-autofill:hover,
.form-section .form-group textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #f8fafc;
    -webkit-box-shadow: 0 0 0px 1000px #0f172a inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-section .form-group input:focus,
.form-section .form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
    background-color: rgba(15, 23, 42, 0.8);
    box-shadow: none;
    transform: none;
}



.form-section .form-group input::placeholder,
.form-section .form-group textarea::placeholder {
    color: #475569;
}

.form-section .form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section .checkbox-wrapper {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    cursor: pointer;
}

.form-section .checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid #334155;
    border-radius: 0.375rem;
    background-color: #0f172a;
    cursor: pointer;
    position: relative;
    margin-top: 0.125rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.form-section .checkbox-wrapper input[type="checkbox"]:checked {
    background-color: #38bdf8;
    border-color: #38bdf8;
}

.form-section .checkbox-wrapper input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #0f172a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-section .checkbox-wrapper input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
}

.form-section .checkbox-text {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

.form-section .form-submit {
    width: 100% !important;
    background-color: #5ccaf9;
    /* Balanced Sky - Matching hero */
    color: #0f172a;
    /* Slate 900 */
    font-weight: 700;
    padding: 1.125rem 2.5rem;
    border-radius: 9999px;
    /* Pill shape to match hero */
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-section .form-submit:hover {
    background-color: #94e1fd;
    /* Matching hero hover */
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-section .form-submit:active {
    transform: none;
}

/* Footer Styles */
.site-footer {
    background-color: #020617;
    /* Darker than the body for depth */
    padding: 3rem 1.5rem;
    /* Reduced for mobile */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: #64748b;
    /* Slate 500 - Muted */
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 6rem 1.5rem;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* Slightly tighter on mobile */
}

@media (min-width: 768px) {
    .footer-content {
        gap: 0.75rem;
    }
}

.footer-name {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.footer-tagline::before {
    content: none;
}

@media (min-width: 768px) {
    .footer-name {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }

    .footer-tagline::before {
        content: "|";
        margin: 0 0.75rem;
        color: #475569;
        font-weight: 400;
    }
}

@media (max-width: 640px) {
    .footer-name {
        font-size: 0.85rem;
        letter-spacing: 0.01em;
    }
}

.footer-info,
.footer-legal {
    font-size: 0.875rem;
    line-height: 1.6;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #38bdf8;
    /* Sky 400 accent on hover */
}

/* FAQ Section Styles */
.faq-section {
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    font-size: 1.125rem !important;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 4rem;
        row-gap: 4rem;
    }
}


/* Hero Lander Specific Styles */
.hero-lander {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 1.5rem !important;
    /* Restore side padding for mobile */
}



.hero-lander .container {
    height: 100%;
}

.hero-lander .hero-content {
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
}

/* Custom FAQ List Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-list .faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.02), 0 1px 2px -1px rgba(0, 0, 0, 0.01);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-list .faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.faq-list .faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.faq-list .faq-answer {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.6;
}

.faq-list .faq-answer p:not(:last-child) {
    margin-bottom: 1rem;
}