:root {
    --primary: #1a2942;
    --accent: #e63946;
    --secondary: #457b9d;
    --light: #f8f9fa;
    --dark: #0d1b2a;
    --gold: #d4a853;
    --success: #2d6a4f;
    --text: #2b2d42;
    --text-light: #6c757d;
    --border: #dee2e6;
    --shadow: rgba(0, 0, 0, 0.12);
    --gradient-dark: linear-gradient(135deg, #1a2942 0%, #0d1b2a 100%);
    --gradient-accent: linear-gradient(135deg, #e63946 0%, #c41e3a 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 41, 66, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

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

.nav-desktop {
    display: none;
}

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

.nav-desktop a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-desktop a:hover {
    color: #fff;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--gradient-dark);
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-mobile a {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::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="rgba(212,168,83,0.05)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 2.2rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.hero-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.45);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: #fff;
}

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

.btn-gold:hover {
    background: #c49a48;
    color: var(--dark);
}

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

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

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

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

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

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

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

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-dark .section-title {
    color: #fff;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 4px solid var(--accent);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.problem-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Story Section */
.story-section {
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
    display: none;
}

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

.story-block {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 30px;
    position: relative;
}

.story-block::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    display: none;
}

.story-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    position: relative;
    padding-left: 25px;
    border-left: 3px solid var(--gold);
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.story-author-info span {
    display: block;
}

.story-author-info .name {
    font-weight: 600;
    color: var(--primary);
}

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

/* Solution Section */
.solution-section {
    background: var(--gradient-dark);
    color: #fff;
    position: relative;
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.solution-number {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

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

/* Benefits Section */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow);
}

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

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

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

.benefit-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
}

.testimonial-info .name {
    font-weight: 600;
    color: var(--primary);
}

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

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: var(--gold);
}

/* Services/Pricing Section */
.services-section {
    background: #fff;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.service-card.featured {
    border-color: var(--accent);
    position: relative;
}

.service-card.featured::before {
    content: 'En Popüler';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-image {
    height: 180px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.service-body {
    padding: 25px;
}

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

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

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

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

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

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

.service-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .currency {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-price .period {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Trust Section */
.trust-section {
    background: var(--light);
}

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

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-number span {
    color: var(--gold);
}

.trust-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 8px;
}

/* CTA Sections */
.cta-section {
    background: var(--gradient-accent);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inline {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
    border: 2px dashed var(--secondary);
}

.cta-inline h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-inline p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 41, 66, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

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

.sticky-cta-text {
    color: #fff;
    font-size: 0.9rem;
    display: none;
}

.sticky-cta .btn {
    flex: 1;
}

/* Form Section */
.form-section {
    background: linear-gradient(180deg, #fff 0%, var(--light) 100%);
}

.form-wrapper {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
}

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

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

.form-group label span {
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(69, 123, 157, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(69, 123, 157, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.form-note svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-note p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Urgency Elements */
.urgency-bar {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.urgency-bar strong {
    color: var(--gold);
}

.urgency-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
}

.urgency-box h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.urgency-box p {
    color: var(--text);
    font-size: 0.95rem;
}

/* Guarantee Section */
.guarantee-box {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid var(--success);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.guarantee-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.guarantee-content h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

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

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(69, 123, 157, 0.05);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

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

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

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

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

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

.cookie-accept {
    background: var(--gold);
    color: var(--dark);
}

.cookie-accept:hover {
    background: #c49a48;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: #fff;
}

/* Page Headers */
.page-header {
    background: var(--gradient-dark);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Pages */
.content-page {
    padding: 60px 0;
}

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

.content-page h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 25px 0 12px;
}

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

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

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

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

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

.contact-info-card {
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-info-item h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Thanks Page */
.thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
}

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

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

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: #fff;
}

.thanks-content h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.thanks-service {
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
}

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

/* About Page */
.about-hero {
    background: var(--gradient-dark);
    padding: 120px 0 80px;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-hero-text h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-hero-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image {
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 100px;
    height: 100px;
    color: var(--gold);
    opacity: 0.5;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
}

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

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

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

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

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

.service-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow);
}

.service-detail-image {
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-detail-body {
    padding: 30px;
}

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

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

.service-detail-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.service-detail-features svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.service-detail-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid var(--light);
}

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

.service-detail-price .price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Responsive */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

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

    .sticky-cta-text {
        display: block;
    }

    .sticky-cta .btn {
        flex: none;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .form-wrapper {
        padding: 45px 40px;
    }
}

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

    .hamburger {
        display: none;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 1 1 calc(50% - 10px);
    }

    .story-section::before {
        display: block;
    }

    .story-block::before {
        display: block;
    }

    .solution-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .solution-card {
        flex: 1 1 calc(50% - 15px);
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 10px);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

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

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

    .footer-links {
        flex: 1;
    }

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

    .contact-grid > div {
        flex: 1;
    }

    .about-hero-content {
        flex-direction: row;
        align-items: center;
    }

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

    .about-image {
        flex: 1;
        height: 400px;
    }

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

    .value-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section {
        padding: 100px 0;
    }

    .problem-card {
        flex: 1 1 calc(33.333% - 15px);
    }

    .solution-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .services-page-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-detail-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}
