/* ============================================
   Pronto Claims - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --navy: #0a1628;
    --navy-light: #132038;
    --navy-lighter: #1c3a5e;
    --slate: #64748b;
    --slate-light: #94a3b8;
    --cream: #faf9f7;
    --white: #ffffff;
    --accent: #6126B2;
    --accent-hover: #4e1f8f;
    --accent-light: #f0e6fa;
    --success: #10b981;
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent faux bold on Instrument Serif - it only has regular weight */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Header & Navigation
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--slate);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
}

.nav-cta {
    background: var(--navy);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s !important;
}

.nav-cta:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(97, 38, 178, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid rgba(10, 22, 40, 0.15);
}

.btn-secondary:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3.25rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

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

.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--slate);
    font-size: 1.1rem;
}

/* ============================================
   Hero Section (Homepage)
   ============================================ */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(97, 38, 178, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 25px 80px rgba(10, 22, 40, 0.12);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.hero-card-title {
    font-weight: 600;
    color: var(--navy);
}

.hero-card-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.stat-row .stat-label {
    color: var(--slate);
    font-size: 0.95rem;
}

.stat-row .stat-value {
    font-weight: 600;
    color: var(--navy);
    font-size: 1.5rem;
    font-family: var(--font-body);
}

.stat-row .stat-value.highlight {
    color: var(--success);
    font-size: 1.75rem;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-float-card.top {
    top: -60px;
    right: 30px;
}

.hero-float-card.bottom {
    bottom: -40px;
    left: 30px;
}

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.float-icon.amber {
    background: var(--accent-light);
    color: var(--accent);
}

.float-text span {
    display: block;
    color: var(--slate);
    font-size: 0.8rem;
}

.float-text strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
}

/* ============================================
   Stats Bar (Homepage)
   ============================================ */
.stats-bar {
    background: var(--navy);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.stat-number {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-desc {
    color: var(--slate-light);
    font-size: 0.95rem;
}

/* ============================================
   Benefits Section (Homepage)
   ============================================ */
.benefits {
    padding: 100px 0;
    background: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 22, 40, 0.04);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(97, 38, 178, 0.15) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--slate);
    line-height: 1.7;
}

/* ============================================
   Process Section (Homepage)
   ============================================ */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: var(--accent);
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.75rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(97, 38, 178, 0.25);
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent);
}

.testimonial-card p {
    color: var(--slate);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info strong {
    display: block;
    color: var(--navy);
    margin-bottom: 2px;
}

.author-info span {
    color: var(--slate);
    font-size: 0.9rem;
}

/* ============================================
   Contact Section (Homepage)
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--navy);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

/* Homepage contact section (dark background) */
.contact .contact-info h2 {
    color: var(--white);
}

.contact .contact-info > p {
    color: var(--slate-light);
}

.contact .contact-method-icon {
    background: rgba(97, 38, 178, 0.15);
}

.contact .contact-method-text span {
    color: var(--slate-light);
}

.contact .contact-method-text a,
.contact .contact-method-text strong {
    color: var(--white);
}

.contact .contact-method-text a:hover {
    color: var(--accent);
}

.contact-content > p {
    color: var(--slate-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    background: rgba(97, 38, 178, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-info-text span {
    display: block;
    color: var(--slate-light);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text strong {
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--accent);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
}

/* ============================================
   Forms
   ============================================ */
.contact-form {
    display: block;
}

.contact-form.hidden {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(10, 22, 40, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(97, 38, 178, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px 24px;
    justify-content: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 24px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    margin: 0 auto 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--slate);
}

/* ============================================
   Services Page
   ============================================ */
.services-section {
    padding: 80px 0;
    background: var(--cream);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.service-block:last-child {
    border-bottom: none;
}

.service-block:nth-child(even) {
    direction: rtl;
}

.service-block:nth-child(even) > * {
    direction: ltr;
}

.service-content {
    padding: 20px 0;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-content h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
}

.service-content > p {
    color: var(--slate);
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--navy);
}

.service-features li svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 4px;
}

.service-visual {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
}

.service-visual-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(97, 38, 178, 0.2) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
}

.service-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-stat {
    text-align: center;
    padding: 20px;
    background: var(--cream);
    border-radius: 12px;
}

.service-stat-value {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.service-stat-label {
    font-size: 0.85rem;
    color: var(--slate);
}

/* ============================================
   About Page
   ============================================ */
.mission-section {
    padding: 80px 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 24px;
}

.mission-content p {
    color: var(--slate);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-visual {
    background: var(--cream);
    border-radius: 20px;
    padding: 48px;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.mission-stat-value {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.mission-stat-label {
    color: var(--slate);
    font-size: 0.95rem;
}

.values-section {
    padding: 100px 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.1);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(97, 38, 178, 0.2) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 24px;
}

.value-card h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--slate);
    line-height: 1.7;
}

.why-section {
    padding: 100px 0;
    background: var(--navy);
}

.why-section .section-label {
    color: var(--accent);
}

.why-section .section-title {
    color: var(--white);
}

.why-section .section-subtitle {
    color: var(--slate-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--navy-light);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 20px;
}

.why-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(97, 38, 178, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--slate-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--slate);
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: 80px 0 120px;
    background: var(--cream);
}

.contact-section .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--slate);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.06);
}

.contact-method-text span {
    display: block;
    color: var(--slate);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.contact-method-text a,
.contact-method-text strong {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-method-text a:hover {
    color: var(--accent);
}

.contact-benefits {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.04);
}

.contact-benefits h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--slate);
    margin-bottom: 12px;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.benefit-list li svg {
    color: var(--success);
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
}

.contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--slate);
    margin-bottom: 32px;
}

.contact-form-wrapper .form-group textarea {
    min-height: 140px;
}

.contact-form-wrapper .form-success {
    padding: 60px 24px;
}

.contact-form-wrapper .form-success-icon {
    width: 80px;
    height: 80px;
}

.contact-form-wrapper .form-success h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-form-wrapper .form-success p {
    font-size: 1.1rem;
}

/* ============================================
   CTA Sections
   ============================================ */
.pricing-cta,
.cta-section {
    padding: 100px 0;
    background: var(--navy);
    text-align: center;
}

.pricing-cta h2,
.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.pricing-cta p,
.cta-section p {
    color: var(--slate-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.pricing-cta .btn-primary {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-section.light {
    background: var(--cream);
}

.cta-section.light h2 {
    color: var(--navy);
}

.cta-section.light p {
    color: var(--slate);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--navy);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--slate-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--slate-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--slate);
    font-size: 0.9rem;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-float-card.top {
        right: 0;
    }

    .hero-float-card.bottom {
        left: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        gap: 24px;
    }

    .process-steps::before {
        left: 40px;
        right: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-block:nth-child(even) {
        direction: ltr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-section .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(10, 22, 40, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-float-card {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .service-content h2 {
        font-size: 1.75rem;
    }

    .service-stats {
        grid-template-columns: 1fr;
    }

    .mission-content h2 {
        font-size: 2rem;
    }

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

    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

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

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

    .contact-form-card {
        padding: 24px;
    }
}
