/* ============================================
   SilverLink LLC — Clean Modern Stylesheet
   ============================================ */

:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --white: #ffffff;
    --gold: #d97706;
    --gold-light: #f59e0b;
    --green: #059669;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --max-width: 1140px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-accent {
    color: var(--gold);
    font-style: italic;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.875rem;
    background: rgba(217, 119, 6, 0.08);
    border-radius: 999px;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--navy);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 24px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }

    .nav-menu .btn {
        margin: 0.5rem 0;
    }
}

/* Hero */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero h1 {
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 520px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-social-proof {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
}

.hero-social-proof p {
    font-style: italic;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.hero-social-proof cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.hero-trust {
    margin-top: 1.25rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-badge strong {
    color: var(--gold-light);
}

/* Cards & Grid */
.cards-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cards-grid.three-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

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

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.problem-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.problem-card h3 {
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.problem-card p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Sections */
section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }
}

.pain-points {
    background: var(--cream);
}

.services {
    background: var(--cream);
}

.how-it-works {
    background: var(--white);
}

.testimonials {
    background: var(--cream);
}

/* Pricing */
.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

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

.pricing-card.popular {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.check {
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

/* Steps */
.steps {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.step h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.25rem;
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-card cite strong {
    color: var(--navy);
    display: block;
    margin-bottom: 0.125rem;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    padding: 100px 0;
}

.reviews-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.reviews-content h2 {
    margin-bottom: 1rem;
}

.reviews-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.review-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .review-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.review-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

.local-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .local-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.local-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.local-content > p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
}

.partner-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.partner-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
}

.local-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.local-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255,255,255,0.08);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

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

.stat {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

/* Contact */
.contact {
    background: var(--navy);
    color: var(--white);
}

.contact h2,
.contact .section-tag {
    color: var(--white);
}

.contact .text-accent {
    color: var(--gold-light);
}

.contact p {
    color: rgba(255,255,255,0.75);
}

.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

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

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

.contact-method div span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 0.125rem;
}

.contact-method div a {
    font-weight: 600;
    font-size: 1rem;
}

.contact-method div a:hover {
    color: var(--gold-light);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--cream);
    color: var(--text);
    transition: all 0.2s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

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

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

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

.footer-brand p {
    color: rgba(255,255,255,0.6);
    max-width: 280px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
}

/* Mobile */
@media (max-width: 767px) {
    .hero {
        padding: 120px 0 80px;
    }

    .pricing-card.popular {
        transform: scale(1);
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-3px);
    }

    .partner-list {
        grid-template-columns: 1fr;
    }

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