:root {
    --color-primary: #8B5A2B;
    --color-secondary: #D4A574;
    --color-accent: #C7522A;
    --color-dark: #2C1810;
    --color-light: #FDF8F3;
    --color-warm: #F5E6D3;
    --color-text: #3D2914;
    --color-muted: #7A6352;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    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-accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 90, 43, 0.1);
    transition: all 0.3s ease;
}

.nav-header.scrolled {
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.1);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
}

.nav-logo span {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

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

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

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

.hero-funnel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%238B5A2B" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 300px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-title {
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(44, 24, 16, 0.2);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--color-secondary);
    border-radius: 20px;
    z-index: -1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 8px 25px rgba(199, 82, 42, 0.3);
}

.btn-primary:hover {
    background: #A8421F;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(199, 82, 42, 0.4);
    color: white;
}

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

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

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

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

.btn-large {
    padding: 20px 50px;
    font-size: 1.15rem;
}

.btn-arrow::after {
    content: '\2192';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
    transform: translateX(5px);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-warm {
    background: var(--color-warm);
}

.section-dark {
    background: var(--color-dark);
    color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: white;
}

.section-gradient {
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-warm) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

/* Story Section */
.story-block {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.story-content {
    flex: 1;
}

.story-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 20px;
}

.story-content h3 {
    margin-bottom: 20px;
}

.story-content p {
    color: var(--color-muted);
    margin-bottom: 15px;
}

/* Problem Section */
.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.problem-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--color-accent);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--color-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-accent);
}

.problem-card h4 {
    margin-bottom: 15px;
}

/* Benefits */
.benefits-wrapper {
    display: flex;
    gap: 40px;
}

.benefits-main {
    flex: 2;
}

.benefits-sidebar {
    flex: 1;
    background: var(--color-dark);
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.benefit-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(139, 90, 43, 0.2);
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefit-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.benefit-text h4 {
    margin-bottom: 10px;
}

.benefit-text p {
    color: var(--color-muted);
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
}

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

.sidebar-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-list li::before {
    content: '\2713';
    color: var(--color-secondary);
    font-weight: bold;
}

/* Services/Products */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(44, 24, 16, 0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(44, 24, 16, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-body {
    padding: 30px;
}

.service-body h4 {
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '\2713';
    color: var(--color-accent);
    font-weight: bold;
}

/* Testimonials */
.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 400px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(44, 24, 16, 0.1);
    scroll-snap-align: start;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
}

.author-info h5 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Trust Elements */
.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 40px 0;
    border-top: 1px solid rgba(139, 90, 43, 0.15);
    border-bottom: 1px solid rgba(139, 90, 43, 0.15);
}

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

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

.trust-label {
    font-size: 0.9rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Urgency Section */
.urgency-banner {
    background: linear-gradient(135deg, var(--color-accent) 0%, #A8421F 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px;
}

.urgency-banner h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
}

.urgency-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
}

.urgency-banner .btn {
    background: white;
    color: var(--color-accent);
    position: relative;
}

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

/* Form Styles */
.form-section {
    background: var(--color-warm);
    padding: 80px 0;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 20px;
}

.form-info p {
    color: var(--color-muted);
    margin-bottom: 30px;
}

.form-guarantee {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-top: 30px;
}

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

.form-container {
    flex: 1;
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.12);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid rgba(139, 90, 43, 0.2);
    border-radius: 12px;
    background: var(--color-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(139, 90, 43, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 30px rgba(44, 24, 16, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    font-weight: 600;
}

.sticky-cta-text span {
    color: var(--color-accent);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(44, 24, 16, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner h4 {
    margin-bottom: 10px;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 20px;
}

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

.cookie-buttons .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

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

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

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

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

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--color-muted);
    margin-bottom: 30px;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-light) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
}

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

/* About Page */
.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(44, 24, 16, 0.15);
}

.about-text {
    flex: 1;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--color-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--color-accent);
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p {
    color: var(--color-muted);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--color-muted);
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--color-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 35px;
    }

    .hero-image::after {
        display: none;
    }

    .story-block,
    .story-block:nth-child(even) {
        flex-direction: column;
    }

    .benefits-wrapper {
        flex-direction: column;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .about-intro {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

    .problem-card {
        flex: 1 1 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 0 0 320px;
    }

    .trust-bar {
        gap: 30px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .sticky-cta-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .value-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .btn {
        padding: 14px 28px;
    }

    .btn-large {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .urgency-banner {
        padding: 40px 25px;
    }
}
