@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    line-height: var(--line-height-normal);
    color: var(--color-gray-900);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: #0A2540;
    /* Deep Business Blue */
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-top: 48px;
    margin-bottom: 24px;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    margin-top: 32px;
    margin-bottom: 16px;
}

h4 {
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    margin-bottom: 1.125rem;
    color: #475569;
    line-height: 1.75;
    font-size: 1.0625rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

a:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 4px;
}

strong {
    font-weight: 600;
    color: #0f172a;
}

ul,
ol {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.625rem;
    color: #64748b;
    line-height: 1.7;
}

/* ========================================
   Header & Navigation
   ======================================== */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.1) 50%, transparent 100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
    transform: translateX(-2px);
}

.logo-mark {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A2540;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    align-items: center;
    white-space: nowrap;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links li a {
    color: #475569;
    font-weight: 500;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 15px;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: #1d4ed8;
    background-color: #f1f5f9;
}

.lang-switch {
    padding: 0.625rem 1.125rem;
    background: #f1f5f9;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #475569;
    border: 1px solid transparent;
}

.lang-switch:hover {
    background: #e0e7ff;
    color: #1d4ed8;
    border-color: #c7d2fe;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Layout is now in layout.css */

/* ========================================
   Main Container
   ======================================== */
main {
    min-height: calc(100vh - 400px);
}

/* Page Header (for internal pages) */
.page-header {
    background: #fff;
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #0f172a;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.btn-nav {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
}

section {
    padding: 100px 0;
}

body {
    background-color: #FFFFFF !important;
}

/* DELETED - Use .layout instead */

/* Hero is now in layout.css */

/* Guide Only Banner */
.guide-only-banner {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
    padding: 2.5rem 0;
    overflow: hidden;
}

.guide-only-content {
    text-align: center;
}

.guide-only-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    color: #1d4ed8;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    border: 1.5px solid #93c5fd;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}

.guide-only-label svg {
    width: 20px;
    height: 20px;
}

.guide-only-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.guide-item:first-child .guide-icon {
    background: #d1fae5;
    color: #059669;
}

.guide-item:not(:first-child) .guide-icon {
    background: #fee2e2;
    color: #dc2626;
}

.guide-disclaimer {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.section-description {
    font-size: 1.1875rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

.section-divider {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 999px;
    margin: 1.125rem auto;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
}

.section-divider::before {
    left: -16px;
}

.section-divider::after {
    right: -16px;
}

/* ========================================
   Step Cards
   ======================================== */
/* Redesigned Step Cards */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 3rem 0;
}

.step-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
    text-align: left;
    /* Align left for more professional look */
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-card:hover {
    border-color: var(--color-primary-300);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

/* Icon Container */
.step-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--color-primary-50);
    color: var(--color-primary-600);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-primary-200);
}

.step-card:hover .step-icon-wrapper {
    background: var(--color-primary-600);
    color: white;
    border-color: var(--color-primary-600);
    transition: all 0.3s ease;
}

.step-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.step-card h3 {
    margin-bottom: 1.125rem;
    font-size: 1.375rem;
    color: #0f172a;
    font-weight: 700;
}

.step-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

.link-arrow {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.link-arrow:hover {
    color: #1d4ed8;
    gap: 0.5rem;
}

/* ========================================
   City Cards
   ======================================== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 2.5rem 0;
}

.city-card {
    background: #ffffff;
    padding: 2.25rem;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.city-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover::after {
    transform: scaleX(1);
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
    border-color: #93c5fd;
}

.city-card h3 {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.city-card p {
    color: #64748b;
    flex-grow: 1;
    margin-bottom: 1.25rem;
    line-height: 1.65;
    font-size: 1.0625rem;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-details {
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-details:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.faq-details[open] {
    border-color: #93c5fd;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.1);
}

.faq-details summary {
    padding: 1.5rem 1.75rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
}

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

.faq-details summary::after {
    content: '+';
    font-size: 1.75rem;
    color: #2563eb;
    font-weight: 700;
    transition: transform 0.25s ease;
    min-width: 24px;
    text-align: center;
}

.faq-details[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.75rem 1.75rem;
    color: #64748b;
    line-height: 1.75;
}

.faq-content p {
    margin-bottom: 0.875rem;
    font-size: 1.0625rem;
}

.faq-content a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid #93c5fd;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: #0077FF;
    /* Tech Blue */
    color: white;
    box-shadow: 0 4px 6px rgba(0, 119, 255, 0.15);
}

.btn-primary:hover {
    background: #0066DD;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 119, 255, 0.25);
    color: white;
}

.btn-primary:focus-visible {
    outline: 3px solid var(--color-accent-300);
    outline-offset: 2px;
}

.btn-secondary {
    background: white;
    color: var(--color-primary-600);
    border: 1px solid var(--color-gray-300);
}

.btn-secondary:hover {
    background: var(--color-gray-50);
    border-color: var(--color-primary-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-primary-700);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--color-primary-900);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-ghost {
    background: transparent;
    color: #475569;
    border: 1.5px solid #e5e7eb;
}

.btn-ghost:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

.btn-lg {
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
    border-radius: 12px;
    min-height: 52px;
}

/* ========================================
   Callouts & Alerts
   ======================================== */
.callout {
    padding: 2rem 2.25rem;
    border-radius: 14px;
    border-left: 5px solid;
    margin: 3rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.callout::before {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.1;
}

.callout-info {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-color: #2563eb;
    color: #0f172a;
}

.callout-info::before {
    background: #2563eb;
}

.callout-warn {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    border-color: #f59e0b;
    color: #0f172a;
}

.callout-warn::before {
    background: #f59e0b;
}

.callout-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
    font-size: 1.125rem;
}

.callout p {
    margin-bottom: 0.875rem;
    color: #1e293b;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.callout p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-header h1 {
    margin-bottom: 1rem;
}

.last-updated {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.critical-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
    position: relative;
}

.critical-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px 0 0 12px;
}

.critical-notice h2 {
    margin: 0 0 1rem 0;
    padding: 0;
    border: none;
    color: #92400e;
    font-size: 1.25rem;
}

.critical-notice p {
    margin-bottom: 0;
    color: #1a1a1a;
    line-height: 1.7;
}

/* .disclaimer-highlight removed */

.legal-navigation {
    margin-top: 3rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.legal-navigation p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-navigation ul {
    list-style: none;
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-navigation li a {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: white;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.legal-navigation li a:hover {
    border-color: #2563eb;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.1);
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    margin-top: 5rem;
    padding: 4rem 0 2rem;
    border-top: 1px solid #334155;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.3) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #cbd5e1;
    transition: all 0.2s;
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: white;
    padding-left: 0.375rem;
}

.footer-bottom {
    padding: 2.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
    color: #93c5fd;
    border-bottom-color: #93c5fd;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .hero-trust {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .value-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

    .container {
        padding: 1rem;
    }

    .legal-page {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   Scroll-Triggered Animations
   ======================================== */
.step-card,
.city-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.step-card.visible,
.city-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.step-card:nth-child(1) {
    transition-delay: 0.1s;
}

.step-card:nth-child(2) {
    transition-delay: 0.2s;
}

.step-card:nth-child(3) {
    transition-delay: 0.3s;
}

.step-card:nth-child(4) {
    transition-delay: 0.4s;
}

.city-card:nth-child(1) {
    transition-delay: 0.1s;
}

.city-card:nth-child(2) {
    transition-delay: 0.15s;
}

.city-card:nth-child(3) {
    transition-delay: 0.2s;
}

.city-card:nth-child(4) {
    transition-delay: 0.25s;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

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

.mb-3 {
    margin-bottom: 3rem;
}

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

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

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

.mt-3 {
    margin-top: 3rem;
}

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

/* ========================================
   Icon Insurance (Fix Giant Icons)
   ======================================== */
/* 确保所有 hero 区或流程区的图标/SVG 绝不会超过容器宽度 */
.how-it-works-icon,
svg.main-feature,
.hero-icon-small,
.step-card svg,
.about-hero svg {
    max-width: 100px !important;
    height: auto !important;
    width: 80px !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Specific fix for hero section giant circles */
.hero-icon-wrapper svg {
    width: 80px !important;
    height: 80px !important;
}
/* ========================================
   ANTIGRAVITY SYSTEM - Global Overrides
   ======================================== */

/* DELETED - Use .layout instead */

/* Icon Size Constraints - Fix Huge Icons Bug */
svg {
    max-width: 100% !important;
    height: auto !important;
}

img.icon,
.hero-decoration,
.step-icon,
.feature-icon {
    max-width: 100% !important;
    height: auto !important;
}

.card-step .icon svg {
    width: 64px !important;
    height: 64px !important;
    display: block !important;
    margin-bottom: 16px !important;
    stroke: var(--color-accent-500);
}

/* Section Spacing - Breathing Room */
section {
    padding-top: 100px;
    padding-bottom: 100px;
}

section:first-child {
    padding-top: 0;
}

/* Updated Color System */
body {
    color: var(--color-gray-800);
    line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary-900);
}

a {
    color: var(--color-accent-500);
}

a:hover {
    color: var(--color-accent-600);
}

/* Card System - Antigravity */
.card,
.card-step,
.step-card,
.city-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.card:hover,
.card-step:hover,
.step-card:hover,
.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Step Cards Grid */
.step-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

/* DELETED - Use main definition above */

.hero-title-large {
    color: var(--color-primary-900);
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-desc-large {
    color: var(--color-gray-600);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Button System */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-accent-500);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--color-accent-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary-900);
    border: 2px solid var(--color-primary-900);
}

.btn-secondary:hover {
    background: var(--color-primary-900);
    color: #ffffff;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--color-accent-500);
    border: 2px solid var(--color-accent-500);
}

.btn-hero-secondary:hover {
    background: var(--color-accent-500);
    color: #ffffff;
}

/* DELETED - Use main definition above */

.logo-text {
    color: var(--color-primary-900);
    font-weight: 700;
    font-size: 1.25rem;
}

/* DELETED - Use main definition above */

footer h4 {
    color: #ffffff;
    margin-bottom: 16px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    color: var(--color-primary-900);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
}

.section-description {
    color: var(--color-gray-600);
    font-size: 1.125rem;
    margin-top: 16px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--color-accent-500);
    margin: 24px auto;
    border-radius: 2px;
}
