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

:root {
    --primary: #2d3436;
    --secondary: #6c5ce7;
    --accent: #e17055;
    --light: #ffeaa7;
    --bg-cream: #fef9ef;
    --bg-dark: #1e272e;
    --text-dark: #2d3436;
    --text-light: #f5f5f5;
    --text-muted: #636e72;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

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

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-header.scrolled {
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

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

.nav-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

.hero h1 {
    margin-bottom: 25px;
    color: var(--primary);
}

.hero h1 span {
    color: var(--secondary);
}

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

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 600px;
    background: linear-gradient(45deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image svg {
    width: 60%;
    height: auto;
    opacity: 0.9;
}

.hero-float {
    position: absolute;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-float-1 {
    bottom: 80px;
    left: -40px;
}

.hero-float-2 {
    top: 60px;
    right: -30px;
}

.hero-float-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
}

.hero-float-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

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

.problem-header h2 {
    margin-bottom: 20px;
}

.problem-header h2 span {
    color: var(--accent);
}

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

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

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

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

.problem-card h3 {
    margin-bottom: 15px;
    color: var(--white);
}

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

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

.story-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

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

.story-block:last-child {
    margin-bottom: 0;
}

.story-content {
    flex: 1;
}

.story-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.story-content h2 {
    margin-bottom: 25px;
    color: var(--primary);
}

.story-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.story-visual {
    flex: 1;
}

.story-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light) 0%, var(--bg-cream) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-image svg {
    width: 50%;
    opacity: 0.8;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

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

.trust-header h2 {
    margin-bottom: 15px;
}

.trust-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 10px;
}

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

.testimonial-card {
    flex: 1 1 350px;
    max-width: 400px;
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--primary);
}

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

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--white);
}

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

.services-header h2 {
    margin-bottom: 15px;
}

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

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

.service-card {
    flex: 1 1 350px;
    max-width: 380px;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 80px;
    height: 80px;
    color: var(--white);
}

.service-body {
    padding: 35px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-tag span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.service-btn {
    background: var(--light);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #5b4bc7 100%);
    color: var(--white);
}

.benefits-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    margin-bottom: 40px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-item p {
    opacity: 0.85;
    font-size: 0.95rem;
}

.benefits-visual {
    flex: 1;
}

.benefits-image {
    width: 100%;
    height: 450px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image svg {
    width: 60%;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--bg-dark);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Form Section */
.form-section {
    padding: 120px 0;
    background: var(--bg-cream);
}

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

.form-content {
    flex: 1;
}

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

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

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.form-feature svg {
    color: var(--secondary);
}

.form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

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

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

.form-submit {
    background: var(--secondary);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

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

.about-visual {
    flex: 1;
}

.about-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--light), var(--bg-cream));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image svg {
    width: 50%;
    opacity: 0.8;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-links {
    flex: 1 1 200px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    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(--secondary);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 25px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-accept {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: var(--accent);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    padding: 12px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream), var(--white));
    padding: 40px 20px;
}

.thanks-card {
    background: var(--white);
    padding: 60px 80px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.thanks-card h1 {
    margin-bottom: 20px;
    color: var(--primary);
}

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

.thanks-service {
    background: var(--bg-cream);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.thanks-service strong {
    color: var(--secondary);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary), #5b4bc7);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

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

.page-header p {
    opacity: 0.85;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.9;
}

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

.legal-content ul li {
    list-style: disc;
    margin-bottom: 8px;
}

/* Contact Page */
.contact-info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1 1 250px;
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

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

/* Services Page */
.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 40%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image svg {
    width: 100px;
    color: var(--white);
}

.service-detail-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.6rem;
}

.service-detail-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-detail-price {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-detail-price .price-tag {
    font-size: 2rem;
}

/* Urgency */
.urgency-banner {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

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

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

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-image {
        max-width: 100%;
        height: 400px;
        margin: 0 auto;
    }

    .hero-float {
        display: none;
    }

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

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

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

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

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .trust-stats {
        gap: 30px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .thanks-card {
        padding: 40px 30px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding-top: 100px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
