/* ============================================================
   REEDY 1ST COACH — "Trusted Advisor" Design System
   Colors: Forest Green #1B4332, Emerald #2D6A4F, Amber #E8A838, Ivory #FEFCF3
   Fonts: Libre Baskerville (headings) + Nunito Sans (body)
   ============================================================ */

/* --- FONT FACES --- */
@font-face {
    font-family: 'Libre Baskerville';
    src: url('fonts/libre-baskerville-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Libre Baskerville';
    src: url('fonts/libre-baskerville-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Libre Baskerville';
    src: url('fonts/libre-baskerville-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('fonts/nunito-sans-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('fonts/nunito-sans-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('fonts/nunito-sans-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- CSS VARIABLES --- */
:root {
    --forest: #1B4332;
    --emerald: #2D6A4F;
    --amber: #E8A838;
    --amber-dark: #D4952E;
    --ivory: #FEFCF3;
    --sage: #F0F4F0;
    --charcoal: #2C2C2C;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(27,67,50,0.08);
    --shadow-md: 0 4px 12px rgba(27,67,50,0.10);
    --shadow-lg: 0 8px 30px rgba(27,67,50,0.12);
    --shadow-xl: 0 12px 40px rgba(27,67,50,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.3s ease;
    --max-width: 1200px;
    --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--emerald);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--amber);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--forest);
    line-height: 1.3;
    margin-bottom: 0.5em;
}
h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
p { margin-bottom: 1rem; color: var(--charcoal); }
.text-gray { color: var(--gray); }
.text-amber { color: var(--amber); }
.text-forest { color: var(--forest); }
.text-emerald { color: var(--emerald); }
.text-white { color: var(--white); }

/* --- LAYOUT --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 80px 0;
}
.section-ivory {
    background-color: var(--ivory);
}
.section-sage {
    background-color: var(--sage);
}
.section-forest {
    background-color: var(--forest);
    color: var(--white);
}
.section-forest h2,
.section-forest h3,
.section-forest h4 {
    color: var(--white);
}
.section-forest p {
    color: rgba(255,255,255,0.85);
}

/* --- BADGE --- */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(45,106,79,0.08);
    color: var(--emerald);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
    font-family: var(--font-body);
}
.badge-amber {
    background-color: rgba(232,168,56,0.12);
    color: var(--amber-dark);
}
.badge-white {
    background-color: rgba(255,255,255,0.15);
    color: var(--white);
}

/* --- SECTION HEADER --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 12px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}
.btn-amber {
    background-color: var(--amber);
    color: var(--forest);
    border-color: var(--amber);
}
.btn-amber:hover {
    background-color: var(--amber-dark);
    border-color: var(--amber-dark);
    color: var(--forest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background-color: transparent;
    color: var(--forest);
    border-color: var(--forest);
}
.btn-outline:hover {
    background-color: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--forest);
}
.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}
.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}
.navbar-logo img {
    height: 100px;
    width: auto;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.navbar-nav a {
    display: block;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--emerald);
    background-color: rgba(45,106,79,0.06);
}
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
}
.navbar-phone:hover {
    color: var(--amber);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--forest);
    border-radius: 2px;
    transition: all var(--transition);
}

/* --- HERO --- */
.hero {
    padding-top: 80px;
    background-color: var(--ivory);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 560px;
    padding: 60px 0;
}
.hero-content {
    padding-right: 20px;
}
.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content .hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid var(--border);
    padding-top: 28px;
}
.hero-stat {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid var(--border);
}
.hero-stat:last-child {
    border-right: none;
}
.hero-stat .stat-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
    display: block;
}
.hero-stat .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 2px;
    display: block;
}
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}
.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}
.hero-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: var(--emerald);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

/* --- CARDS --- */
.card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(45,106,79,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.card-icon-amber {
    background-color: rgba(232,168,56,0.12);
}
.card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}
.card-price {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 4px;
}
.card-meta {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 16px;
}

/* --- GRID LAYOUTS --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- STEPS --- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: step-counter;
}
.step {
    position: relative;
    text-align: center;
    padding: 32px 20px;
    counter-increment: step-counter;
}
.step::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--amber);
    color: var(--forest);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.step p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* --- STEPS 6 (for How It Works page) --- */
.steps-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step-counter;
}
.steps-6 .step {
    text-align: left;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.steps-6 .step::before {
    margin: 0 0 20px 0;
}

/* --- AUDIENCE CARDS --- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.audience-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    border-left: 4px solid var(--emerald);
}
.audience-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-left-color: var(--amber);
}
.audience-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--forest);
}
.audience-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

/* --- MISTAKES LIST --- */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.mistake-item {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.mistake-item:hover {
    box-shadow: var(--shadow-sm);
}
.mistake-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: rgba(232,168,56,0.12);
    color: var(--amber-dark);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mistake-item p {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.5;
    align-self: center;
}

/* --- REASONS GRID --- */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.reason-card {
    text-align: center;
    padding: 36px 28px;
}
.reason-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}
.reason-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.reason-card p {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* --- LEAD FORM --- */
.form-section {
    background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%);
    color: var(--white);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.form-info h2 {
    color: var(--white);
    margin-bottom: 16px;
}
.form-info p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--charcoal);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 12px;
    text-align: center;
}

/* --- PRICING TABLE --- */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    font-size: 0.92rem;
}
.pricing-table thead {
    background-color: var(--forest);
    color: var(--white);
}
.pricing-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--charcoal);
}
.pricing-table tbody tr:hover {
    background-color: var(--ivory);
}
.pricing-table tbody tr:last-child td {
    border-bottom: none;
}
.check-yes {
    color: var(--emerald);
    font-weight: 700;
}
.check-no {
    color: var(--gray-light);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 10px;
}
.faq-answer {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* --- PAGE HERO (Internal Pages) --- */
.page-hero {
    padding-top: 80px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%);
    color: var(--white);
    text-align: center;
    padding-bottom: 60px;
    padding-top: 140px;
}
.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- SERVICE DETAIL CARDS --- */
.service-detail {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 28px;
    transition: all var(--transition);
}
.service-detail:hover {
    box-shadow: var(--shadow-md);
}
.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}
.service-detail-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
}
.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--amber);
    font-family: var(--font-body);
}
.service-detail-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.service-detail-meta span {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.service-detail p {
    font-size: 0.98rem;
    color: var(--charcoal);
    line-height: 1.8;
}
.service-detail .best-for {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(45,106,79,0.06);
    border-radius: var(--radius);
    font-size: 0.88rem;
    color: var(--emerald);
    font-weight: 600;
}

/* --- CONTACT INFO --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info-card {
    background: var(--ivory);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-info-item:last-child {
    margin-bottom: 0;
}
.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--emerald);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.contact-info-text p {
    font-size: 0.92rem;
    color: var(--gray);
    margin: 0;
}
.contact-info-text a {
    color: var(--emerald);
    font-weight: 600;
}

/* --- ABOUT SECTIONS --- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-story img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.about-story p {
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

/* --- VALUES --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-top: 4px solid var(--emerald);
    transition: all var(--transition);
}
.value-card:hover {
    box-shadow: var(--shadow-md);
    border-top-color: var(--amber);
}
.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.value-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* --- COMPARISON TABLE --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.comparison-table thead {
    background-color: var(--forest);
    color: var(--white);
}
.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.88rem;
}
.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}
.comparison-table tbody tr:hover {
    background-color: var(--ivory);
}
.comparison-table .highlight-col {
    background-color: rgba(45,106,79,0.04);
    font-weight: 600;
}

/* --- LEGAL PAGES --- */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px;
}
.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}
.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 12px;
}
.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}
.legal-content ul,
.legal-content ol {
    margin: 12px 0 20px 24px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.legal-content li {
    margin-bottom: 6px;
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}
.legal-content table th,
.legal-content table td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    text-align: left;
}
.legal-content table th {
    background-color: var(--sage);
    font-weight: 700;
}
.legal-content .last-updated {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 32px;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--forest);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand img {
    height: 140px;
    width: auto;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}
.footer h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--amber);
}
.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.footer-contact a {
    color: rgba(255,255,255,0.7);
}
.footer-contact a:hover {
    color: var(--amber);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.footer-bottom-links a:hover {
    color: var(--amber);
}

/* --- SCROLL TO TOP --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--amber);
    color: var(--forest);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    z-index: 999;
}
.scroll-top:hover {
    background-color: var(--amber-dark);
    transform: translateY(-3px);
}
.scroll-top.visible {
    display: flex;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { padding-right: 0; text-align: center; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hero-stat { border-right: none; padding: 8px; }
    .hero-image { max-width: 500px; margin: 0 auto; }
    .grid-4, .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid, .contact-grid, .about-story { grid-template-columns: 1fr; }
    .service-detail-header { flex-direction: column; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    .navbar-nav { display: none; }
    .navbar-cta .btn { display: none; }
    .menu-toggle { display: flex; }
    .navbar-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }
    .grid-2, .grid-3, .mistakes-grid, .values-grid { grid-template-columns: 1fr; }
    .grid-4, .audience-grid { grid-template-columns: 1fr; }
    .steps, .steps-6 { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .page-hero { padding-top: 120px; }
    .page-hero h1 { font-size: 2rem; }
    .pricing-table, .comparison-table { font-size: 0.8rem; }
    .pricing-table th, .pricing-table td,
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.7rem; }
    .hero-content h1 { font-size: 1.9rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .card { padding: 24px; }
    .service-detail { padding: 28px; }
}
