/* ============================================================
   COCHISE MOBILE NOTARY — Design System & Styles
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Color Palette — Southwest Desert */
    --color-sand: #F5EDE3;
    --color-sand-light: #FBF8F4;
    --color-sand-dark: #E8DCD0;
    --color-copper: #B8602A;
    --color-copper-dark: #8E4A1F;
    --color-copper-light: #D4875A;
    --color-teal: #2A7B72;
    --color-teal-dark: #1D5C55;
    --color-teal-light: #3BA399;
    --color-slate: #2C3038;
    --color-slate-light: #4A4F5A;
    --color-white: #FFFFFF;
    --color-offwhite: #FAFAF8;
    --color-overlay: rgba(44, 48, 56, 0.65);
    --color-overlay-deep: rgba(44, 48, 56, 0.82);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(44, 48, 56, 0.78) 0%, rgba(42, 123, 114, 0.55) 100%);
    --gradient-copper: linear-gradient(135deg, #B8602A 0%, #D4875A 100%);
    --gradient-teal: linear-gradient(135deg, #2A7B72 0%, #3BA399 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --fs-hero: clamp(2.2rem, 5vw, 3.6rem);
    --fs-h1: clamp(1.8rem, 4vw, 2.8rem);
    --fs-h2: clamp(1.4rem, 3vw, 2rem);
    --fs-h3: clamp(1.1rem, 2vw, 1.4rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-tiny: 0.8rem;

    --lh-heading: 1.2;
    --lh-body: 1.7;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Layout */
    --max-width: 1140px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 48, 56, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 48, 56, 0.12);
    --shadow-lg: 0 8px 40px rgba(44, 48, 56, 0.16);
    --shadow-glow: 0 4px 30px rgba(42, 123, 114, 0.25);

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: all 0.3s var(--ease-out);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-slate);
    background: var(--color-sand-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-teal-dark);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: var(--lh-heading);
    color: var(--color-slate);
    font-weight: 700;
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-padding {
    padding: var(--space-2xl) 0;
}

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

.section-label {
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-copper);
    margin-bottom: var(--space-xs);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--color-slate-light);
    max-width: 640px;
    margin: 0 auto var(--space-lg);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-body);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-teal);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(42, 123, 114, 0.35);
    color: var(--color-white);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-copper {
    background: var(--gradient-copper);
    color: var(--color-white);
}

.btn-copper:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 96, 42, 0.35);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-teal);
    border: 2px solid var(--color-teal);
}

.btn-outline:hover {
    background: var(--color-teal);
    color: var(--color-white);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(44, 48, 56, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    color: var(--color-copper-light);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-copper);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-copper-light);
    transition: width 0.3s var(--ease-out);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-copper) !important;
    color: var(--color-white) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: var(--radius-full) !important;
    font-size: var(--fs-small) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 96, 42, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(44, 48, 56, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--space-lg) var(--space-md);
        gap: var(--space-md);
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease-out);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: var(--fs-body);
    }
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    max-width: 780px;
}

.hero h1 {
    font-size: var(--fs-hero);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
    background: var(--color-slate);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.trust-strip .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-item .icon {
    color: var(--color-copper-light);
}

/* ---------- Service Tiles ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-tile {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-tile-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    background: var(--gradient-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-white);
}

.service-tile h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.05rem;
}

.service-tile p {
    color: var(--color-slate-light);
    font-size: var(--fs-small);
}

/* ---------- Why Section ---------- */
.why-section {
    background: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-item:hover {
    background: var(--color-sand-light);
}

.why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-copper);
}

.why-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.why-item p {
    font-size: var(--fs-small);
    color: var(--color-slate-light);
}

/* ---------- How It Works (Steps) ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    background: var(--gradient-copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(184, 96, 42, 0.3);
}

.step-card h3 {
    margin-bottom: var(--space-xs);
}

.step-card p {
    color: var(--color-slate-light);
    font-size: var(--fs-small);
}

/* Step connector line */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(16.67% + 30px);
    right: calc(16.67% + 30px);
    height: 2px;
    background: var(--color-sand-dark);
}

@media (max-width: 768px) {
    .steps-grid::before {
        display: none;
    }
}

/* ---------- Pricing Preview ---------- */
.pricing-preview {
    background: var(--color-slate);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-preview h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
    text-align: left;
}

.pricing-line {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
}

.pricing-line .icon {
    color: var(--color-copper-light);
    font-size: 1.3rem;
}

.pricing-line strong {
    color: var(--color-copper-light);
}

/* ---------- Reviews / Testimonials ---------- */
.reviews-section {
    background: var(--color-white);
}

.review-placeholder {
    background: var(--color-sand-light);
    border: 2px dashed var(--color-sand-dark);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.review-placeholder p {
    color: var(--color-slate-light);
    font-style: italic;
}

/* ---------- CTA Band ---------- */
.cta-band {
    background: var(--gradient-copper);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}

.cta-band h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-band .btn {
    background: var(--color-white);
    color: var(--color-copper);
}

.cta-band .btn:hover {
    background: var(--color-sand);
    color: var(--color-copper-dark);
    transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-slate);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: var(--fs-small);
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-sm);
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--fs-small);
    padding: 3px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: var(--fs-tiny);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
    background: var(--color-slate);
    padding: calc(60px + var(--space-xl)) 0 var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 96, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.page-header p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto;
}

/* ---------- Content Sections (services page, etc.) ---------- */
.content-section {
    padding: var(--space-xl) 0;
}

.content-section:nth-child(even) {
    background: var(--color-white);
}

.service-detail {
    max-width: 780px;
    margin: 0 auto var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-sand-dark);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-teal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.service-detail h2 {
    margin-bottom: var(--space-sm);
}

.service-detail p {
    margin-bottom: var(--space-sm);
    color: var(--color-slate-light);
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-left: var(--space-md);
}

.doc-list li {
    position: relative;
    padding-left: var(--space-sm);
    color: var(--color-slate-light);
    font-size: var(--fs-small);
}

.doc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: 600;
}

/* ---------- Pricing Page ---------- */
.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card h2 {
    margin-bottom: var(--space-sm);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-teal);
    display: block;
    margin: var(--space-sm) 0;
}

.price-note {
    color: var(--color-slate-light);
    font-size: var(--fs-small);
    font-style: italic;
}

.example-card {
    background: var(--color-sand-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    border-left: 4px solid var(--color-copper);
}

.example-card h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.05rem;
}

.example-card p {
    color: var(--color-slate-light);
    font-size: var(--fs-small);
}

/* ---------- Areas Served ---------- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

.area-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-teal-light);
}

.area-card .area-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.area-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.area-card p {
    color: var(--color-slate-light);
    font-size: var(--fs-small);
}

/* ---------- About Page ---------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--color-slate-light);
}

.credentials-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.credential-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-sand);
}

.credential-row:last-child {
    border-bottom: none;
}

.credential-label {
    font-weight: 600;
    font-size: var(--fs-small);
}

.credential-value {
    color: var(--color-slate-light);
    font-size: var(--fs-small);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-slate);
    transition: var(--transition);
}

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

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-out);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-slate-light);
    line-height: 1.7;
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--color-slate);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    color: var(--color-white);
}

.contact-info-card h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method a {
    color: var(--color-copper-light);
    font-weight: 600;
}

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

.contact-method span {
    display: block;
    font-size: var(--fs-tiny);
    color: rgba(255, 255, 255, 0.6);
}

.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-small);
    margin-bottom: var(--space-xs);
    color: var(--color-slate);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    transition: var(--transition);
    background: var(--color-sand-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(42, 123, 114, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- Sticky Mobile CTA ---------- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-slate);
    padding: var(--space-sm);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-cta-inner {
    display: flex;
    gap: var(--space-xs);
    max-width: var(--max-width);
    margin: 0 auto;
}

.mobile-cta .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: var(--fs-small);
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}

/* ---------- Animations (Scroll Reveal) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ---------- Misc ---------- */
.divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-copper);
    border-radius: 2px;
    margin: var(--space-sm) auto var(--space-md);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    background: var(--color-sand);
    border-radius: var(--radius-full);
    font-size: var(--fs-tiny);
    font-weight: 600;
    color: var(--color-copper);
}

.highlight {
    color: var(--color-copper);
    font-weight: 600;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--color-teal);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--color-teal-dark);
    transform: translateY(-2px);
}

/* ---------- Verified Credentials Panel ---------- */
.credentials-panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    max-width: 780px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 480px) {
    .cred-grid {
        grid-template-columns: 1fr;
    }
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.cred-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 2px;
}

.cred-item strong {
    display: block;
    font-size: var(--fs-small);
    color: var(--color-slate);
    margin-bottom: 2px;
}

.cred-item span {
    font-size: var(--fs-tiny);
    color: var(--color-slate-light);
}

.cred-item a {
    color: var(--color-teal);
    font-weight: 500;
}

.cred-item a:hover {
    color: var(--color-teal-dark);
}

/* ---------- Policy Pages ---------- */
.policy-content {
    max-width: 780px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-h3);
}

.policy-content p {
    color: var(--color-slate-light);
    margin-bottom: var(--space-sm);
}

.policy-content ul {
    padding-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.policy-content ul li {
    color: var(--color-slate-light);
    font-size: var(--fs-small);
    padding: 4px 0;
    position: relative;
    padding-left: var(--space-sm);
}

.policy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-copper);
    font-weight: 700;
}

/* ---------- Landing Page Intro ---------- */
.landing-intro {
    max-width: 780px;
    margin: 0 auto;
}

.landing-intro p {
    color: var(--color-slate-light);
    margin-bottom: var(--space-sm);
}

.landing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (max-width: 600px) {
    .landing-features {
        grid-template-columns: 1fr;
    }
}

.landing-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.landing-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.landing-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-teal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.landing-feature h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.landing-feature p {
    color: var(--color-slate-light);
    font-size: var(--fs-small);
}

/* ---------- Audience/Business Page ---------- */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

.spec-card {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.spec-card .spec-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.spec-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.spec-card p {
    color: var(--color-slate-light);
    font-size: var(--fs-small);
}