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

:root {
    --primary: #1a1a2e;
    --secondary: #e94560;
    --accent: #0f3460;
    --light: #f8f9fa;
    --dark: #16213e;
    --gold: #d4a574;
    --text: #333;
    --text-light: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
}

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

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

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-toggle {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle:hover {
    background: var(--secondary);
}

.nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 20px;
    min-width: 220px;
    display: none;
    flex-direction: column;
    gap: 5px;
}

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

.nav-menu a {
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--primary);
    font-weight: 500;
}

.nav-menu a:hover {
    background: var(--light);
    color: var(--secondary);
}

/* Hero Section */
.hero-cinematic {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-cinematic::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 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff08" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23ffffff05" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

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

.hero-text {
    flex: 1;
    color: #fff;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
}

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

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

.btn-primary {
    background: var(--secondary);
    color: #fff;
}

.btn-primary:hover {
    background: #d63a52;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233,69,96,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

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

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

.btn-gold:hover {
    background: #c49664;
}

.btn-dark {
    background: var(--primary);
    color: #fff;
}

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

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-light {
    background: var(--light);
}

.section-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 600px;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.problem-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.problem-card .icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

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

.problem-card p {
    opacity: 0.8;
    font-size: 0.95rem;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

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

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

.story-image-box {
    background: var(--light);
    border-radius: 30px;
    padding: 40px;
    position: relative;
}

.story-image-box svg {
    width: 100%;
    height: 300px;
}

.story-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Features */
.features-wrapper {
    margin-top: 60px;
}

.feature-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-content {
    flex: 1;
}

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

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

.feature-visual {
    flex: 1;
}

.feature-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 25px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box svg {
    width: 200px;
    height: 200px;
}

/* Testimonials */
.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    margin-top: 50px;
}

.testimonial-card {
    min-width: 350px;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary);
}

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

/* Pricing Cards */
.pricing-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.pricing-card.featured .pricing-tag {
    background: var(--secondary);
}

.pricing-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: var(--primary);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-card .price span {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-card .price-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

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

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

.pricing-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

/* Form Styles */
.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
}

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

.form-info {
    flex: 1;
    color: #fff;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-info p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.form-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.form-benefits li::before {
    content: '→';
    color: var(--gold);
    font-weight: 700;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 15px center;
    background-size: 20px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #d63a52;
    transform: translateY(-2px);
}

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

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

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

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

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

/* Stats Section */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
}

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

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

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

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.trust-badge svg {
    width: 40px;
    height: 40px;
    fill: var(--accent);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--gold);
}

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

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

.footer-col a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

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

.cookie-banner h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

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

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

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: #fff;
}

.cookie-reject {
    background: var(--light);
    color: var(--text);
}

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

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

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

.thanks-icon svg {
    width: 60px;
    height: 60px;
    fill: #fff;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.thanks-service span {
    color: var(--gold);
    font-weight: 700;
}

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

.urgency-banner span {
    background: #fff;
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 5px;
    margin-left: 10px;
}

/* Service Cards Compact */
.services-compact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.service-mini {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-mini h4 {
    margin-bottom: 8px;
}

.service-mini .price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.8;
    font-size: 1.2rem;
}

/* Content Page */
.content-page {
    padding: 80px 0;
}

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

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

.content-page p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.content-page ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
}

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

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

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

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

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

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

.value-card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

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

.value-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

/* Contact Info */
.contact-grid {
    display: flex;
    gap: 40px;
}

.contact-info-card {
    flex: 1;
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
}

.contact-info-card h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

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

.contact-detail svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-detail strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-detail span {
    color: var(--text-light);
}

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

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card-full {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.service-card-image svg {
    width: 80px;
    height: 80px;
    fill: #fff;
    opacity: 0.8;
}

.service-card-content {
    padding: 30px;
}

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

.service-card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .story-content,
    .form-wrapper,
    .feature-row,
    .feature-row:nth-child(even),
    .about-story,
    .contact-grid {
        flex-direction: column;
    }

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

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }

    .problem-grid,
    .about-values {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: none;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

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

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

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}
