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

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #c9a962;
    --color-accent-hover: #b8943d;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-bg-light: #f8f7f4;
    --color-bg-alt: #edeae3;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--color-text);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

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

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Intro Narrative */
.intro-narrative {
    padding: 120px 20px;
    background: var(--color-bg-light);
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

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

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

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    border-radius: 20px;
    z-index: -1;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

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

/* Problem Section */
.problem-section {
    padding: 100px 20px;
    background: var(--color-primary);
}

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

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

.problem-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
}

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

.problem-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
}

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

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

/* Solution Section */
.solution-reveal {
    padding: 120px 20px;
    background: var(--color-white);
}

.solution-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.solution-text {
    flex: 1;
}

.solution-label {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.solution-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.solution-list {
    margin-bottom: 35px;
}

.solution-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.cta-secondary {
    display: inline-block;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.solution-image {
    flex: 1;
}

.solution-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Trust Strip */
.trust-strip {
    padding: 60px 20px;
    background: var(--color-bg-alt);
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

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

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

.trust-label {
    display: block;
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.15);
}

/* Services Funnel */
.services-funnel {
    padding: 100px 20px;
    background: var(--color-bg-light);
}

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

.services-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 380px;
    min-width: 300px;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

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

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    margin-bottom: 20px;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 700;
}

.service-select {
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Testimonials */
.testimonials-flow {
    padding: 100px 20px;
    background: var(--color-white);
}

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

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
}

.testimonials-track {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 380px;
    background: var(--color-bg-light);
    border-radius: 20px;
    padding: 40px;
    scroll-snap-align: start;
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.author-name {
    font-weight: 700;
    color: var(--color-primary);
}

.author-location {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.testimonial-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-inline {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: var(--color-accent-hover);
}

/* Benefits */
.benefits-reveal {
    padding: 100px 20px;
    background: var(--color-bg-alt);
}

.benefits-container {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.benefits-intro p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.benefit-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
}

.benefit-content h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, var(--color-accent) 0%, #d4b86a 100%);
    padding: 50px 20px;
}

.urgency-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.urgency-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.urgency-text p {
    color: var(--color-primary);
    opacity: 0.85;
}

.cta-urgency {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background: var(--color-secondary);
    transform: scale(1.05);
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: var(--color-primary);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.form-intro > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.form-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.form-trust-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.checkbox-group a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--color-accent-hover);
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: var(--color-bg-light);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-final {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 26, 46, 0.2);
}

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

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

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

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

.footer-column a:hover {
    color: var(--color-white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

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

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

.sticky-cta a {
    display: block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(201, 169, 98, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--color-accent-hover);
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

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

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

.cookie-reject {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.cookie-reject:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Page Headers */
.page-header {
    padding: 180px 20px 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin: 40px 0 20px;
}

.page-content h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 30px 0 15px;
}

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

.page-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.page-content li {
    color: var(--color-text-light);
    margin-bottom: 10px;
    list-style: disc;
}

/* About Page */
.about-story {
    padding: 80px 20px;
    background: var(--color-bg-light);
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.team-section {
    padding: 80px 20px;
}

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

.team-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary);
}

.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.team-member span {
    color: var(--color-accent);
    font-size: 0.9rem;
}

/* Services Page */
.services-detail {
    padding: 80px 20px;
}

.services-detail-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

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

.service-detail-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-features {
    margin-bottom: 25px;
}

.service-detail-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--color-text);
}

.service-detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.service-detail-price {
    margin-bottom: 25px;
}

.service-detail-price .price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-price .price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background: var(--color-bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

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

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

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

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

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.thanks-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-service {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.thanks-service span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.thanks-service strong {
    color: var(--color-accent);
    font-size: 1.3rem;
}

.thanks-back {
    display: inline-block;
    margin-top: 30px;
    color: var(--color-accent);
    font-weight: 600;
    transition: color 0.3s ease;
}

.thanks-back:hover {
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 992px) {
    .intro-wrapper,
    .solution-wrapper,
    .about-wrapper,
    .contact-wrapper,
    .form-wrapper {
        flex-direction: column;
    }

    .solution-wrapper {
        flex-direction: column-reverse;
    }

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

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

    .trust-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .trust-divider {
        display: none;
    }

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

    .footer-main {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .team-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        border-radius: 15px;
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .intro-text h2,
    .solution-text h2,
    .services-header h2,
    .testimonials-header h2,
    .benefits-intro h2,
    .form-intro h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-primary,
    .cta-secondary,
    .cta-final {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .benefit-item {
        flex-direction: column;
        gap: 15px;
    }

    .benefit-number {
        width: auto;
    }

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