/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #6366f1;
    --accent-color: #8b5cf6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(99, 102, 241, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(99, 102, 241, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(99, 102, 241, 0.15);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.15);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 8rem 0;
    text-align: left;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary),
                url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?w=1920&h=1080&fit=crop') center/cover;
    z-index: -1;
    animation: heroFadeIn 1.5s ease-in-out;
    opacity: 0.95;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-copy {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: slideUp 1s ease-out 0.3s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background: rgba(255, 255, 255, 0.25);
    padding: 0 0.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideUp 1s ease-out 0.5s both;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.7s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: slideUp 1s ease-out 0.9s both;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(15, 23, 42, 0.35);
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.01em;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.22);
}

.hero-feature span {
    font-size: 1.2rem;
}

.hero-proofs {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    animation: slideUp 1s ease-out 1.1s both;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatars img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}

.hero-avatars img:first-child {
    margin-left: 0;
}

.hero-proofs p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 220px;
}

.hero-media {
    position: relative;
    max-width: 400px;
    display: grid;
    gap: 1.5rem;
    animation: slideUp 1s ease-out 1s both;
}

.hero-media::before,
.hero-media::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.hero-media::before {
    width: 260px;
    height: 260px;
    background: rgba(129, 140, 248, 0.45);
    top: -80px;
    right: -120px;
    z-index: -1;
}

.hero-media::after {
    width: 220px;
    height: 220px;
    background: rgba(139, 92, 246, 0.45);
    bottom: -60px;
    left: -90px;
    z-index: -1;
}

.hero-media-card {
    background: rgba(15, 23, 42, 0.55);
    padding: 1.75rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-media-card.accent {
    background: rgba(99, 102, 241, 0.75);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.35);
}

.hero-media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.45);
}

.hero-media-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: inline-flex;
}

.hero-media-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero-media-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.hero-media-highlight {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-media-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.hero-media-highlight p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Value Proposition */
.value-prop {
    padding: 5rem 0;
    background: var(--bg-light);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(5deg);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Pitch Section */
.pitch-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pitch-content {
    max-width: 900px;
    margin: 0 auto;
}

.pitch-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.pitch-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 720px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

.offer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: stretch;
}

.offer-highlight {
    position: relative;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 45%, rgba(15, 23, 42, 0.05) 100%);
    border-radius: 1.75rem;
    padding: 3rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.15);
    overflow: hidden;
}

.offer-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.18), transparent 55%);
    pointer-events: none;
}

.offer-price {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.offer-price-amount {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

.offer-price-note {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

.offer-description {
    margin: 1.75rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.offer-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.offer-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
    color: var(--text-dark);
    font-weight: 500;
}

.offer-benefits li span {
    font-size: 1.35rem;
}

.offer-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin: 2rem 0 1.5rem;
}

.offer-guarantee-card {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(15, 23, 42, 0.75);
    color: white;
    padding: 1.5rem 1.75rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
}

.offer-guarantee-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.offer-guarantee-card strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.offer-guarantee-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.offer-steps {
    position: relative;
    display: grid;
    gap: 1.5rem;
}

.offer-steps::before {
    content: '';
    position: absolute;
    top: 0.75rem;
    bottom: 0.75rem;
    left: 26px;
    width: 2px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.18), rgba(139, 92, 246, 0.1));
}

.step-card {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    background: var(--bg-white);
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.step-card.accent {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.35);
}

.step-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.step-number {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35);
}

.step-head h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.step-card strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-light);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.example-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid;
    border-image: var(--gradient-primary) 1;
    overflow: hidden;
}

.example-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.example-card:hover .example-image img {
    transform: scale(1.1);
}

.example-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    padding: 1.5rem 2rem 0 2rem;
}

.example-card p {
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 2rem 2rem 2rem;
}

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.testimonials {
    padding: 6rem 0;
    background: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: radial-gradient(circle at top, rgba(99, 102, 241, 0.12) 0%, rgba(15, 23, 42, 0.02) 60%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem 2.25rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--bg-white);
    margin: auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-right: 2rem;
}

.modal-body {
    color: var(--text-light);
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.modal-body h4 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-link {
    cursor: pointer;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-brand {
        gap: 0.5rem;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .logo {
        font-size: 1.35rem;
    }

    .hero {
        padding: 6rem 0;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .hero-feature {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-proofs {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .hero-proofs p {
        max-width: 100%;
    }

    .hero-media {
        width: 100%;
    }

    .hero-media::before,
    .hero-media::after {
        display: none;
    }

    .pitch-header {
        margin-bottom: 2.5rem;
    }

    .pitch-lead {
        font-size: 1.05rem;
        margin-top: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-highlight {
        padding: 2.25rem;
    }

    .offer-benefits li {
        padding: 0.85rem 1.25rem;
    }

    .offer-action {
        flex-direction: column;
        align-items: stretch;
    }

    .offer-action .btn {
        width: 100%;
        text-align: center;
    }

    .offer-steps::before {
        left: 20px;
    }

    .step-card {
        padding: 1.5rem 1.5rem 1.5rem 4rem;
    }

    .testimonial-grid {
        gap: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
        min-height: 70vh;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-feature {
        font-size: 0.95rem;
    }

    .hero-media-card,
    .hero-media-highlight {
        padding: 1.5rem;
    }

    .pitch-header {
        text-align: left;
    }

    .offer-highlight {
        padding: 2rem;
    }

    .offer-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .offer-price-amount {
        font-size: 2.75rem;
    }

    .offer-benefits li {
        flex-direction: row;
        align-items: flex-start;
        padding: 0.8rem 1.1rem;
    }

    .offer-benefits li span {
        font-size: 1.2rem;
    }

    .offer-action .btn {
        width: 100%;
    }

    .offer-steps::before {
        display: none;
    }

    .step-card {
        padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    }

    .step-number {
        left: 1.25rem;
        top: 1.25rem;
        width: 32px;
        height: 32px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .testimonial-card {
        padding: 2rem 1.75rem 2rem;
    }

    .value-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .modal-close {
        right: 1rem;
        top: 1rem;
        font-size: 1.5rem;
    }

    .example-image {
        height: 150px;
    }
}

