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

:root {
    --primary: #e85a4f;
    --primary-dark: #c94a3f;
    --secondary: #8e8d8a;
    --accent: #eae7dc;
    --dark: #2d3436;
    --light: #fafafa;
    --warm: #f8f4e8;
    --success: #27ae60;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

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

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

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

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

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

p { margin-bottom: 1rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

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

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

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-desktop a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

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

.nav-desktop 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(--dark);
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 15px;
}

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

.nav-mobile a {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--accent);
}

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

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

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

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

.hero-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

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

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

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

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

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

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
}

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

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

.hero-float-card .icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.hero-float-card strong {
    display: block;
    font-size: 1.1rem;
}

.hero-float-card span {
    color: var(--secondary);
    font-size: 0.9rem;
}

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

.story-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.story-intro h2 {
    margin-bottom: 20px;
}

.story-intro p {
    color: var(--secondary);
    font-size: 1.1rem;
}

.story-grid {
    display: flex;
    gap: 40px;
}

.story-card {
    flex: 1;
    background: var(--warm);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.story-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.story-card h3 {
    margin-bottom: 15px;
}

.story-card p {
    color: var(--secondary);
}

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

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

.problem-content {
    position: relative;
    z-index: 2;
}

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

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

.problem-header p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.problem-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.problem-item h4 {
    margin-bottom: 8px;
}

.problem-item p {
    opacity: 0.8;
    margin: 0;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: var(--warm);
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.solution-visual {
    flex: 1;
}

.solution-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.solution-image img {
    width: 100%;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    margin-bottom: 25px;
}

.solution-text > p {
    color: var(--secondary);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.solution-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.solution-feature h4 {
    margin-bottom: 5px;
}

.solution-feature p {
    color: var(--secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: white;
}

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

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

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

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

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

.trust-stat-label {
    color: var(--secondary);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--accent);
}

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

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

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

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

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

.testimonial-info strong {
    display: block;
    color: var(--dark);
}

.testimonial-info span {
    color: var(--secondary);
    font-size: 0.9rem;
}

.testimonial-stars {
    color: #f1c40f;
    font-size: 1.1rem;
    margin-top: 5px;
}

/* Services/Pricing Section */
.services-section {
    padding: 100px 0;
    background: white;
}

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

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

.services-header p {
    color: var(--secondary);
    font-size: 1.1rem;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--warm);
    border-radius: 25px;
    padding: 40px 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card.featured {
    background: var(--dark);
    color: white;
}

.service-card.featured .service-price {
    color: var(--primary);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow);
}

.service-card.featured .service-icon {
    background: var(--accent);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 25px;
    opacity: 0.85;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.service-features {
    text-align: left;
    margin: 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-card.featured .service-features li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--success);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="white" opacity="0.05"/></svg>');
    background-size: 300px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

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

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--warm);
}

.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(--secondary);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-benefit-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.form-benefit span {
    font-weight: 500;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

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

/* Urgency Banner */
.urgency-banner {
    background: var(--dark);
    color: white;
    padding: 20px;
    text-align: center;
}

.urgency-banner p {
    margin: 0;
    font-size: 1.1rem;
}

.urgency-banner strong {
    color: var(--primary);
}

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

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

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 300px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-contact {
    flex: 1;
}

.footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.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 {
    opacity: 0.5;
    margin: 0;
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: white;
    opacity: 0.5;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
    animation: slideUp 0.3s ease;
}

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

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

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

.cookie-banner.active {
    display: block;
    animation: slideUpCookie 0.3s ease;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-content a {
    color: var(--primary);
}

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

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

/* About Page */
.about-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--warm) 0%, var(--accent) 100%);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 20px;
}

.about-hero p {
    color: var(--secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
    background: white;
}

.about-story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-story-text {
    flex: 1;
}

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

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

.about-story-image {
    flex: 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-values {
    padding: 80px 0;
    background: var(--warm);
}

.about-values h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

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

.value-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--secondary);
    margin: 0;
}

/* Contact Page */
.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--warm) 0%, var(--accent) 100%);
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 20px;
}

.contact-content {
    padding: 80px 0;
    background: white;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info > p {
    color: var(--secondary);
    margin-bottom: 35px;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.contact-detail h4 {
    margin-bottom: 5px;
}

.contact-detail p {
    color: var(--secondary);
    margin: 0;
}

.contact-form-section {
    flex: 1;
}

/* Services Page */
.services-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--warm) 0%, var(--accent) 100%);
    text-align: center;
}

.services-hero h1 {
    margin-bottom: 20px;
}

.services-hero p {
    color: var(--secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 0;
    background: white;
}

.service-detailed-card {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--accent);
}

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

.service-detailed-card:last-child {
    border-bottom: none;
}

.service-detailed-image {
    flex: 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detailed-content {
    flex: 1;
}

.service-detailed-content h3 {
    margin-bottom: 15px;
}

.service-detailed-content p {
    color: var(--secondary);
    margin-bottom: 25px;
}

.service-detailed-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

/* Legal Pages */
.legal-hero {
    padding: 150px 0 60px;
    background: var(--warm);
    text-align: center;
}

.legal-hero h1 {
    margin-bottom: 10px;
}

.legal-hero p {
    color: var(--secondary);
}

.legal-content {
    padding: 60px 0;
    background: white;
}

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

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

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

.legal-content ul {
    color: var(--secondary);
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

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

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-float-card {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .solution-content {
        flex-direction: column;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .about-story-content {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .trust-stats {
        gap: 30px;
    }

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

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

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

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

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

@media (max-width: 480px) {
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .trust-stat-number {
        font-size: 2.2rem;
    }

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