:root {
    --primary: #1a3a5c;
    --secondary: #c9a961;
    --accent: #2d5a87;
    --light: #f8f6f3;
    --dark: #0d1b2a;
    --text: #3a4a5a;
    --text-light: #6b7b8b;
    --white: #ffffff;
    --border: #e8e5e0;
    --shadow: rgba(26, 58, 92, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

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

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

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

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

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.nav-wrapper.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

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

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

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    box-shadow: 0 10px 30px var(--shadow);
}

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

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px var(--shadow);
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-image-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

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

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

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.25);
}

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

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

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

.btn-gold:hover {
    background: #d4b46e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

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

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

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* Trust Bar */
.trust-bar {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

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

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

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

/* Value Props */
.value-props {
    padding: 100px 0;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 48px 36px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px var(--shadow);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

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

/* Services */
.services-section {
    padding: 120px 0;
    background: var(--light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 48px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 40px var(--shadow);
}

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

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

.service-content {
    flex: 1;
}

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

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

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

.service-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text);
}

.service-feature svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

.service-price {
    text-align: right;
    flex-shrink: 0;
    min-width: 140px;
}

.service-price .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.service-price .period {
    font-size: 14px;
    color: var(--text-light);
    display: block;
}

.service-price .btn {
    margin-top: 16px;
    padding: 12px 24px;
    font-size: 14px;
}

/* About Preview */
.about-preview {
    padding: 120px 0;
}

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

.about-image {
    flex: 1;
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--light) 0%, var(--border) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder svg {
    width: 100px;
    height: 100px;
    color: var(--primary);
    opacity: 0.2;
}

.about-stat {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 28px 36px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(26, 58, 92, 0.3);
}

.about-stat .number {
    font-size: 42px;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat .label {
    font-size: 14px;
    opacity: 0.8;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin: 32px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text);
}

.about-list svg {
    width: 22px;
    height: 22px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: var(--primary);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
}

.testimonial-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-info .name {
    font-weight: 600;
    color: var(--white);
    font-size: 16px;
}

.testimonial-info .role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Process Section */
.process-section {
    padding: 120px 0;
}

.process-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: var(--border);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--light);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.stat-item .number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 16px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form */
.contact-section {
    padding: 120px 0;
}

.contact-wrapper {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

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

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

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

.contact-form-wrapper {
    flex: 1;
    background: var(--light);
    padding: 48px;
    border-radius: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.3s ease;
}

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

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

.form-group select {
    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='%233a4a5a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-submit {
    width: 100%;
    padding: 18px 36px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.25);
}

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

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

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-brand .logo {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
}

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

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    flex: 1;
    min-width: 300px;
}

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

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

.cookie-accept {
    padding: 12px 28px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-reject {
    padding: 12px 28px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    border-color: var(--white);
}

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

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 48px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin: 32px 0 16px;
}

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

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

.legal-content ul li {
    margin-bottom: 8px;
    color: var(--text);
}

/* Thanks Page */
.thanks-section {
    padding: 200px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4b46e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

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

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

.thanks-service {
    background: var(--light);
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-service p {
    margin: 0;
    font-size: 16px;
    color: var(--text);
}

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

/* About Page */
.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

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

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

.about-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.values-section {
    padding: 120px 0;
}

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

.value-large-card {
    flex: 1;
    min-width: 300px;
    padding: 48px;
    background: var(--light);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.value-large-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
}

.value-large-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-large-card p {
    font-size: 16px;
    color: var(--text-light);
}

.team-section {
    padding: 120px 0;
    background: var(--light);
}

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

.team-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

.services-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-detail {
    padding: 100px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    padding: 60px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text);
}

.service-detail-content ul li svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.service-detail-pricing {
    flex-shrink: 0;
    text-align: center;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
    min-width: 260px;
}

.service-detail-pricing .label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.service-detail-pricing .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.service-detail-pricing .period {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    padding: 100px 0;
}

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

.contact-info-column {
    flex: 1;
}

.contact-info-column h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
}

.contact-info-card {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card h3 svg {
    width: 22px;
    height: 22px;
    color: var(--secondary);
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-column {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

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

    .hero-text {
        text-align: center;
        max-width: none;
    }

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

    .btn-group {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
        gap: 60px;
    }

    .about-stat {
        right: 20px;
        bottom: -20px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

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

    .service-features {
        justify-content: center;
    }

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

    .process-step::after {
        display: none;
    }

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

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

    .service-detail-card {
        flex-direction: column !important;
        text-align: center;
    }

    .service-detail-content ul {
        display: inline-block;
        text-align: left;
    }

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

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

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 140px 0 80px;
    }

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

    .hero p {
        font-size: 17px;
    }

    section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .stats-grid {
        gap: 40px;
    }

    .stat-item .number {
        font-size: 42px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .sticky-cta {
        right: 20px;
        bottom: 90px;
    }

    .page-header {
        padding: 140px 0 60px;
    }

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

    .thanks-content h1 {
        font-size: 34px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-group .btn {
        width: 100%;
        justify-content: center;
    }

    .service-item {
        padding: 28px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
    }
}
