/* =============================================
   Scale ROAS Agency — Stylesheet
   ============================================= */

/* --- Custom Properties --- */
:root {
    --color-primary: #1e40af;
    --color-primary-light: #3b82f6;
    --color-primary-dark: #1e3a8a;
    --color-accent: #10b981;
    --color-accent-light: #d1fae5;

    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-surface: #ffffff;

    --color-text: #0f172a;
    --color-text-secondary: #475569;
    --color-text-light: #94a3b8;
    --color-text-inverse: #f1f5f9;

    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1120px;
    --section-padding: 96px;
    --section-padding-mobile: 64px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Titles --- */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

.primary-button {
    background: var(--color-primary);
    color: #fff;
}

.primary-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.secondary-button {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-border);
}

.secondary-button:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-alt);
}

.button.large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.logo-text {
    color: var(--color-text);
}

.logo-agency {
    color: var(--color-primary-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-text);
}

.cta-button {
    background: var(--color-primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.cta-button:hover {
    background: var(--color-primary-dark);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    padding-top: 160px;
    padding-bottom: var(--section-padding);
    background: var(--color-bg);
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px 32px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =============================================
   Social Proof
   ============================================= */
.social-proof {
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.social-proof-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo {
    height: 36px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* =============================================
   Value Proposition
   ============================================= */
.value-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.value-card.featured {
    border-color: var(--color-primary-light);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(59, 130, 246, 0.06));
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--color-primary);
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* =============================================
   Problem / Solution Section
   ============================================= */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.problem-section .section-title {
    color: var(--color-text-inverse);
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 32px;
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item,
.solution-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.problem-x {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.solution-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-accent);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.problem-item p,
.solution-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(241, 245, 249, 0.8);
}

/* =============================================
   Founder Section
   ============================================= */
.founder-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    object-fit: cover;
}

.founder-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.founder-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.founder-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.founder-highlights {
    display: flex;
    gap: 40px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.highlight-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 500;
    margin-top: 4px;
}

.founder-cta {
    display: flex;
    gap: 12px;
}

/* =============================================
   Results Section
   ============================================= */
.results-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.result-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--color-bg);
}

.result-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.result-header {
    padding: 20px 20px 0;
}

.result-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.result-period {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.result-image {
    width: 100%;
    padding: 12px 20px;
}

.result-stats {
    display: flex;
    border-top: 1px solid var(--color-border);
}

.result-stat {
    flex: 1;
    padding: 16px;
    text-align: center;
    border-right: 1px solid var(--color-border);
}

.result-stat:last-child {
    border-right: none;
}

.result-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.result-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
}

.result-value.highlight-green {
    color: var(--color-accent);
}

.results-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   Free Tools Section
   ============================================= */
.tools-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.tool-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.tool-card.featured-tool {
    grid-column: 1 / -1;
    border-color: var(--color-primary-light);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(59, 130, 246, 0.06));
}

.tool-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tool-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--color-primary);
}

.featured-tool .tool-icon-wrap {
    background: rgba(30, 64, 175, 0.08);
    border-color: rgba(30, 64, 175, 0.2);
}

.tool-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.tool-type {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.tool-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.tool-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.tool-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.tool-cta {
    width: 100%;
    margin-top: auto;
}

.tools-bottom-cta {
    text-align: center;
    padding: 40px;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
}

.tools-bottom-cta p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tool-card.featured-tool {
        grid-column: 1;
    }
}

/* =============================================
   Process Section
   ============================================= */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.step-content {
    padding-top: 12px;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* =============================================
   Pricing Section
   ============================================= */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.pricing-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.package-card {
    border: 2px solid var(--color-primary-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-bg);
}

.package-header {
    padding: 36px 36px 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.04), rgba(59, 130, 246, 0.08));
    border-bottom: 1px solid var(--color-border);
}

.package-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.package-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.package-requirements,
.package-included {
    padding: 24px 36px;
}

.package-requirements {
    border-bottom: 1px solid var(--color-border);
}

.package-requirements h4,
.package-included h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.package-requirements li,
.package-included li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.package-requirements li::before {
    content: '—';
    color: var(--color-text-light);
    flex-shrink: 0;
}

.package-included li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    flex-shrink: 0;
}

.package-cta {
    display: flex;
    gap: 12px;
    padding: 24px 36px 36px;
}

.package-cta .button {
    flex: 1;
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-size: 0.9rem;
    color: var(--color-text);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.trustpilot-link-wrapper {
    text-align: center;
}

.trustpilot-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.2s;
}

.trustpilot-link:hover {
    color: var(--color-primary-dark);
}

/* =============================================
   Contact Section
   ============================================= */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
}

.contact-wrapper {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text-inverse);
}

.contact-content > p {
    font-size: 1.05rem;
    color: rgba(241, 245, 249, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.2s;
    text-align: left;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.method-icon {
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-inverse);
    margin-bottom: 2px;
}

.contact-method span {
    font-size: 0.85rem;
    color: rgba(241, 245, 249, 0.6);
}

.contact-section .primary-button {
    width: 100%;
    max-width: 400px;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    padding: 64px 0 32px;
    background: #0a0f1e;
    color: rgba(241, 245, 249, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 16px;
    color: rgba(241, 245, 249, 0.5);
}

.footer .logo {
    font-size: 1.2rem;
}

.footer .logo-text {
    color: var(--color-text-inverse);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(241, 245, 249, 0.5);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--color-primary-light);
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(241, 245, 249, 0.4);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(241, 245, 249, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-legal p {
    font-size: 0.85rem;
    color: rgba(241, 245, 249, 0.4);
    margin-bottom: 4px;
}

.legal-address {
    font-size: 0.8rem !important;
    color: rgba(241, 245, 249, 0.3) !important;
}

/* =============================================
   WhatsApp Float
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.3));
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image {
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .button {
        width: 100%;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .founder-highlights {
        flex-wrap: wrap;
        gap: 24px;
    }

    .founder-cta {
        flex-direction: column;
    }

    .founder-cta .button {
        width: 100%;
    }

    .package-header,
    .package-requirements,
    .package-included,
    .package-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .package-cta {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .problem-section .section-title {
        font-size: 1.4rem;
    }

    .contact-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero {
        padding-top: 120px;
    }

    .clients-grid {
        gap: 24px;
    }

    .client-logo {
        height: 28px;
    }
}
