:root {
    --color-primary: #2d5a4a;
    --color-secondary: #8b6914;
    --color-accent: #c4956a;
    --color-dark: #1a1a1a;
    --color-light: #faf8f5;
    --color-muted: #6b6b6b;
    --color-bg-alt: #f0ebe3;
    --color-success: #3d7a5a;
    --font-primary: 'Georgia', serif;
    --font-secondary: 'Helvetica Neue', Arial, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-funnel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    background: linear-gradient(165deg, var(--color-light) 0%, var(--color-bg-alt) 100%);
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(45, 90, 74, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 860px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(45, 90, 74, 0.1);
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--color-dark);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #234a3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

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

.btn-accent:hover {
    background: #735610;
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    padding: 12px 0;
}

.btn-ghost:hover {
    color: var(--color-secondary);
}

/* Story Section */
.story-section {
    padding: 100px 24px;
    background: white;
}

.story-intro {
    font-size: 1.5rem;
    line-height: 1.9;
    color: var(--color-dark);
    margin-bottom: 48px;
}

.story-intro strong {
    color: var(--color-primary);
}

.story-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-muted);
    margin-bottom: 32px;
}

.story-highlight {
    background: var(--color-bg-alt);
    padding: 40px;
    border-left: 4px solid var(--color-primary);
    margin: 48px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-highlight p {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-dark);
}

/* Problem Section */
.problem-section {
    padding: 120px 24px;
    background: var(--color-dark);
    color: white;
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
}

.problem-header {
    text-align: center;
    margin-bottom: 72px;
}

.problem-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.problem-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.problem-card {
    flex: 1 1 280px;
    max-width: 350px;
    padding: 40px 32px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.problem-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Insight Section */
.insight-section {
    padding: 120px 24px;
    background: var(--color-bg-alt);
}

.insight-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-visual {
    flex: 1;
    position: relative;
}

.insight-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.insight-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-secondary);
    color: white;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.insight-content {
    flex: 1.2;
}

.insight-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 28px;
    color: var(--color-dark);
}

.insight-list {
    list-style: none;
}

.insight-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.insight-check {
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.insight-check svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.insight-list p {
    color: var(--color-muted);
    line-height: 1.7;
}

.insight-list strong {
    color: var(--color-dark);
    display: block;
    margin-bottom: 4px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 24px;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.testimonials-header p {
    color: var(--color-muted);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 400px;
    padding: 40px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.15;
    font-family: var(--font-primary);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info {
    font-size: 0.9rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-role {
    color: var(--color-muted);
}

/* Services */
.services-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-bg-alt) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 72px;
}

.services-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.services-header p {
    color: var(--color-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card.selected {
    border: 3px solid var(--color-primary);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.service-content {
    padding: 32px;
}

.service-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.service-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--color-bg-alt);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
}

.price-period {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.service-select {
    display: none;
}

/* Form Section */
.form-section {
    padding: 120px 24px;
    background: var(--color-dark);
    color: white;
}

.form-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 24px;
}

.form-info p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.85);
}

.form-benefits svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
}

.form-container {
    flex: 1;
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--color-light);
}

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

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

.form-submit {
    padding: 18px 40px;
    font-size: 1rem;
    margin-top: 8px;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--color-secondary), #6b4e10);
    color: white;
    text-align: center;
}

.urgency-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.urgency-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.urgency-cta {
    background: white;
    color: var(--color-secondary);
}

.urgency-cta:hover {
    background: var(--color-light);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 80px 24px 40px;
    background: #111;
    color: white;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1 1 280px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-nav {
    flex: 1 1 160px;
}

.footer-nav h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.4);
}

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

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: white;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-medium);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.cookie-content a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--color-primary);
    color: white;
}

.cookie-accept:hover {
    background: #234a3c;
}

.cookie-reject {
    background: var(--color-bg-alt);
    color: var(--color-dark);
}

.cookie-reject:hover {
    background: #e0dbd3;
}

/* Page Styles */
.page-hero {
    padding: 160px 24px 80px;
    background: linear-gradient(165deg, var(--color-light) 0%, var(--color-bg-alt) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--color-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 24px;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 48px 0 24px;
    color: var(--color-dark);
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    color: var(--color-dark);
}

.page-content p {
    margin-bottom: 20px;
    color: var(--color-muted);
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 24px;
    color: var(--color-muted);
}

.page-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* About Page */
.about-story {
    padding: 100px 24px;
    background: white;
}

.about-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--color-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-card {
    flex: 1 1 280px;
    max-width: 340px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* Contact Page */
.contact-section {
    padding: 80px 24px;
    background: white;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    background: linear-gradient(165deg, var(--color-light) 0%, var(--color-bg-alt) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    fill: white;
}

.thanks-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--color-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.selected-service {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.selected-service h3 {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selected-service p {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 0;
}

/* Benefits inline */
.benefits-inline {
    padding: 80px 24px;
    background: white;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1 1 240px;
    max-width: 300px;
    text-align: center;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--color-muted);
    font-size: 0.9rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 16px;
}

.mobile-nav a {
    font-size: 1.1rem;
    color: var(--color-dark);
    display: block;
    padding: 8px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .insight-wrapper,
    .form-wrapper,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .insight-badge {
        bottom: -10px;
        right: 10px;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .problem-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .testimonial-card,
    .problem-card,
    .value-card {
        max-width: 100%;
    }

    .form-container {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .sticky-cta .btn {
        width: 100%;
        justify-content: center;
    }
}
