/* ========================================
   GOLD BUYERS TWIN CITIES - PREMIUM STYLES
   ======================================== */

html {
    scrollbar-gutter: stable;
}

/* CSS Variables */
:root {
    /* Colors */
    --gold-primary: #C9A227;
    --gold-light: #E8D48A;
    --gold-dark: #8B7010;
    --navy: #1A2332;
    --navy-light: #2A3A4D;
    --charcoal: #333333;
    --gray-dark: #555555;
    --gray-medium: #888888;
    --gray-light: #E8E8E8;
    --gray-lighter: #F5F5F5;
    --white: #FFFFFF;
    --success: #28A745;
    --error: #DC3545;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

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

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* 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-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
    margin-bottom: var(--space-md);
}

.highlight {
    color: var(--gold-primary);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}

.logo-accent {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold-primary);
}

.nav-list {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal);
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-base);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--gold-primary);
}

.header-cta:hover {
    color: var(--gold-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition-base);
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--gray-lighter) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
}

.stars {
    color: var(--gold-primary);
}

.hero-content h1 {
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-xl);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

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

.feature-icon {
    color: var(--success);
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.trust-icons {
    display: flex;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-light);
}

.trust-icon-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

/* Form Card */
.form-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.form-card > p {
    color: var(--gray-dark);
    margin-bottom: var(--space-xl);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.required {
    color: var(--error);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-group input::placeholder {
    color: var(--gray-medium);
}

/* Honeypot Field */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* Sections */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

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

.section-header p {
    color: var(--gray-dark);
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* What We Buy Section */
.what-we-buy {
    background: var(--gray-lighter);
}

.buy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.buy-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.buy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.buy-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.buy-card h3 {
    margin-bottom: var(--space-lg);
}

.buy-card ul {
    text-align: left;
}

.buy-card li {
    padding: var(--space-sm) 0;
    color: var(--gray-dark);
    border-bottom: 1px solid var(--gray-light);
}

.buy-card li:last-child {
    border-bottom: none;
}

/* Styled Form */
.form-card-styled {
    padding: var(--space-xl);
    background: linear-gradient(135deg, #C9A227 0%, #A8861A 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-owners-photo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.form-owners-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-card-styled h2 {
    font-size: 1.375rem;
    margin-bottom: var(--space-xs);
    text-align: center;
    color: var(--white);
}

.form-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

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

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.form-field input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--white);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--charcoal);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-field input::placeholder {
    color: var(--gray-medium);
}

.form-field input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 35, 50, 0.2);
}

.form-card-styled .btn-primary {
    margin-top: var(--space-sm);
    background: var(--navy);
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.3);
}

.form-card-styled .btn-primary:hover {
    background: var(--navy-light);
    box-shadow: 0 6px 20px rgba(26, 35, 50, 0.4);
}


/* Gold Types Grid (What We Buy redesign) */
.gold-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto var(--space-xl);
}

.gold-type-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--charcoal);
}

.gold-check {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.gold-karats {
    text-align: center;
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.also-buy {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* Meet Mark & Susan Section */
.meet-owners {
    background: var(--white);
}

.owners-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.owners-image {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.owners-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
}

.owners-photo-secondary {
    max-width: 300px;
    border-radius: var(--radius-lg);
}

.owners-content h2 {
    margin-bottom: var(--space-lg);
}

.owners-intro {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-xl);
}

.owners-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.owner-benefit {
    padding: var(--space-md);
    background: var(--gray-lighter);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold-primary);
}

.owner-benefit strong {
    display: block;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.owner-benefit p {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}

.division-note {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-light);
    font-size: 0.9375rem;
    color: var(--gray-dark);
    text-align: center;
}

.division-note p {
    margin-bottom: var(--space-sm);
}

.owners-credentials {
    display: flex;
    align-items: stretch;
    gap: var(--space-lg);
    justify-content: center;
    margin-top: var(--space-lg);
}

.credential-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
    min-width: 160px;
}

.credential-badge:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.credential-badge img {
    border-radius: var(--radius-sm);
    width: 117px;
    height: auto;
}

.credential-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
}

.credential-detail {
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    color: var(--gray-dark) !important;
}

.ebay-badge {
    border-radius: var(--radius-sm);
}

/* CTA badge links */
.cta-badge-link {
    display: inline-block;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.cta-badge-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .owners-credentials {
        flex-direction: column;
        align-items: center;
    }
    .credential-badge {
        min-width: 200px;
    }
}

/* Why Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.why-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.why-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.why-card p {
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* Process Section */
.process {
    background: var(--navy);
    color: var(--white);
}

.process .section-header h2,
.process .section-header p {
    color: var(--white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
}

.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.process-step h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.process-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    margin-top: 30px;
}

.process-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* Testimonials Section */
.testimonials {
    background: var(--gray-lighter);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

.testimonial-stars {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gold-light);
}

.testimonial-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

/* What We Buy Images */
.what-we-buy-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.what-we-buy-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.what-we-buy-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

@media (max-width: 600px) {
    .what-we-buy-images {
        grid-template-columns: 1fr;
    }
}

/* BBB Badge in Trust Icons */
.trust-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bbb-badge {
    border-radius: var(--radius-sm);
}

/* CTA Trust Badges */
.cta-trust-badges {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.cta-badge {
    border-radius: var(--radius-sm);
    object-fit: contain;
}

@media (max-width: 1024px) {
    .cta-trust-badges {
        justify-content: center;
    }
}

/* Objections Section */
.objection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.objection-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: var(--gray-lighter);
}

.objection-card h3 {
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.objection-card p {
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    background: var(--gray-lighter);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: var(--space-lg) var(--space-xl);
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-primary);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
}

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

.cta-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.cta-note {
    color: var(--gold-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Google Reviews Link */
.reviews-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1.125rem;
    transition: color var(--transition-fast);
}

.google-reviews-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.reviews-disclaimer {
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--gray-medium);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* Final CTA with Form */
.final-cta-form {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: var(--space-4xl) 0;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

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

.final-cta-content > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.final-cta-content .btn-primary {
    margin-bottom: var(--space-2xl);
}

.house-calls-info {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold-primary);
    margin-bottom: var(--space-xl);
}

.house-calls-info h3 {
    color: var(--gold-light);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.house-calls-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.final-cta-content .cta-note {
    margin-top: var(--space-md);
}

.cta-map {
    margin-top: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-map iframe {
    display: block;
    border-radius: var(--radius-lg);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-md);
}

.footer-trust-badges {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.footer-trust-badges img {
    border-radius: var(--radius-sm);
    opacity: 0.85;
    transition: opacity var(--transition-fast);
}

.footer-trust-badges img:hover {
    opacity: 1;
}

.footer .logo {
    color: var(--white);
}

.footer .logo-text {
    color: var(--white);
}

.footer h4 {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-contact p,
.footer-hours p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
}

.footer-division {
    font-size: 0.8125rem;
    color: var(--gold-light);
    margin-top: var(--space-xs);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Mobile Menu */
.nav.active .nav-list {
    display: flex;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .hero-features {
        align-items: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .trust-icons {
        justify-content: center;
    }

    .buy-grid,
    .why-grid,
    .testimonial-grid,
    .objection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gold-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .owners-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .owners-image {
        order: -1;
    }

    .owners-image img {
        margin: 0 auto;
    }

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

    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .final-cta-content .btn-primary {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
    }

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

    .header-cta {
        display: none;
    }

    .buy-grid,
    .why-grid,
    .testimonial-grid,
    .objection-grid {
        grid-template-columns: 1fr;
    }

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

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

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .trust-icons {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: calc(70px + var(--space-2xl));
    }

    .form-card {
        padding: var(--space-lg);
    }

    .form-card-compact {
        padding: var(--space-md);
    }

    .gold-types-grid {
        grid-template-columns: 1fr;
    }

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

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    z-index: 9999;
}

.skip-link:focus {
    top: var(--space-md);
}

/* Sticky Mobile Phone Button */
.mobile-phone-fab {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: var(--white);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.mobile-phone-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(201, 162, 39, 0.5);
}

.mobile-phone-fab svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

@media (max-width: 768px) {
    .mobile-phone-fab {
        display: flex;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-form,
    .process-cta,
    .final-cta,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
