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

:root {
    --primary: #1a365d;
    --primary-dark: #0f2440;
    --secondary: #2c5282;
    --accent: #ed8936;
    --accent-dark: #dd6b20;
    --text: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --light: #f7fafc;
    --light-alt: #edf2f7;
    --dark: #1a202c;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

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

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

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    margin: 0;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.nav-desktop {
    display: none;
}

.nav-desktop .nav-link {
    margin-left: 32px;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-desktop .nav-link:hover,
.nav-desktop .nav-link.active {
    color: var(--accent);
}

.nav-desktop .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.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 {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 0 20px 20px;
    border-top: 1px solid var(--border);
}

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

.nav-mobile .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}

.nav-mobile .nav-link.active {
    color: var(--accent);
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1600&h=900&fit=crop') center/cover no-repeat;
    margin-top: 64px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(44, 82, 130, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.compact {
    padding: 50px 0;
}

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

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

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

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

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-tag.center {
    display: block;
    text-align: center;
}

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

.center-header.light {
    color: var(--white);
}

.center-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.center-header p {
    font-size: 17px;
    color: var(--text-light);
}

.center-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

/* Intro Block */
.intro-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.intro-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.intro-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 35px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    min-width: 150px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Split Content */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-dark .split-text h2 {
    color: var(--white);
}

.split-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.section-dark .split-text p {
    color: rgba(255, 255, 255, 0.85);
}

.split-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Feature List */
.feature-list {
    margin-bottom: 28px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.section-dark .feature-list li {
    color: rgba(255, 255, 255, 0.9);
}

/* Benefit Cards */
.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.benefit-card strong {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 4px;
}

.benefit-card span {
    font-size: 14px;
    color: var(--text-light);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

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

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--accent);
}

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

/* Testimonials */
.section-testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
}

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

.testimonial-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

/* Brands */
.brands-block {
    text-align: center;
}

.brands-block h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 40px;
}

.brands-block h2.center {
    text-align: center;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.brand-item {
    padding: 20px 36px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

/* CTA Block */
.section-cta-block {
    background: var(--light);
    padding: 80px 0;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
}

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

.cta-text h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.15);
}

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

.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: 14px;
}

/* Final CTA */
.final-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.final-cta p {
    font-size: 18px;
    margin: 0;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-col ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

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

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
    margin-top: 64px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.timeline-item h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 15px;
    color: var(--text-light);
}

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

.team-card {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.team-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 14px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-light);
}

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

.service-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-item-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.service-feature {
    padding: 8px 16px;
    background: var(--light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text);
}

.service-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-pricing .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.service-pricing .price-note {
    font-size: 14px;
    color: var(--text-light);
}

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

.contact-info {
    flex: 1 1 300px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

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

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

.contact-item-text h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 15px;
    color: var(--text-light);
}

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

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

/* Thanks Page */
.thanks-section {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: var(--light);
    margin-top: 64px;
}

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

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

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

.thanks-content h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 22px;
    color: var(--primary);
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin: 30px 0 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content .update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Responsive */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-desc {
        font-size: 20px;
    }

    .split-content {
        flex-direction: row;
    }

    .split-content.reverse {
        flex-direction: row-reverse;
    }

    .cta-wrapper {
        flex-direction: row;
        padding: 60px;
        align-items: center;
    }

    .cta-text {
        flex: 1;
        text-align: left;
    }

    .cta-text p {
        margin: 0;
    }

    .cta-form {
        flex: 1;
        max-width: 450px;
    }

    .about-intro {
        flex-direction: row;
    }

    .service-item {
        flex-direction: row;
    }

    .service-item-image {
        flex: 0 0 300px;
    }
}

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

    .section {
        padding: 100px 0;
    }

    .center-header h2,
    .intro-block h2 {
        font-size: 40px;
    }

    .split-text h2 {
        font-size: 36px;
    }
}
