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

:root {
    --primary: #2c5f6a;
    --secondary: #f5a623;
    --dark: #1a2e35;
    --light: #f8f9fa;
    --accent: #e8734f;
    --text: #3a3a3a;
    --muted: #6c757d;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #2c5f6a 0%, #1a2e35 100%);
    --gradient-warm: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* Navigation */
.nav-wrapper {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    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 {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
    background: var(--gradient-hero);
    padding: 100px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.2rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(245,166,35,0.35);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245,166,35,0.45);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

/* Editorial Prose Section */
.prose-section {
    padding: 80px 20px;
}

.prose-section.alt-bg {
    background: var(--gradient-warm);
}

.prose-lead {
    font-size: 1.35rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 400;
}

.prose-text {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 24px;
}

.prose-heading {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.prose-subheading {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 20px;
    font-weight: 600;
}

.inline-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.inline-image img {
    width: 100%;
    height: auto;
}

.inline-image figcaption {
    padding: 16px 20px;
    background: var(--light);
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
}

.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    margin: 20px 0;
    transition: color 0.3s ease;
}

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

.inline-cta svg {
    width: 18px;
    height: 18px;
}

/* Quote Block */
.quote-block {
    background: var(--primary);
    padding: 50px;
    border-radius: 16px;
    margin: 50px 0;
    position: relative;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: rgba(255,255,255,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.4rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.quote-author {
    margin-top: 20px;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
}

/* Services Grid */
.services-wrapper {
    padding: 100px 20px;
    background: var(--light);
}

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

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    flex: 1 1 340px;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

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

.service-title {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-age {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-desc {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

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

.price-unit {
    font-size: 0.9rem;
    color: var(--muted);
}

.service-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

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

/* Stats Section */
.stats-section {
    background: var(--dark);
    padding: 70px 20px;
}

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

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

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

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
}

.testimonial-featured {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.6rem;
    color: var(--dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    text-align: left;
}

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

.author-role {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Team Section */
.team-section {
    padding: 100px 20px;
    background: var(--light);
}

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

.team-member {
    text-align: center;
    flex: 0 1 280px;
}

.team-photo {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

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

.form-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.form-subtitle {
    color: var(--muted);
}

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

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

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

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

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

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

.form-submit:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-section {
    padding: 100px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info {
    flex: 1 1 350px;
    max-width: 450px;
}

.contact-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

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

.contact-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
}

.contact-map {
    flex: 1 1 450px;
    min-height: 350px;
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 70px 20px 30px;
}

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

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1 1 180px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links 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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 28px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(245,166,35,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    display: none;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(245,166,35,0.5);
}

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

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

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

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

.cookie-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    flex: 1;
}

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

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

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

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

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

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Thanks Page */
.thanks-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: var(--gradient-warm);
}

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

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

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

.thanks-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-service {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.thanks-service-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.thanks-service-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.thanks-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Legal Pages */
.legal-page {
    padding: 100px 20px;
}

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

.legal-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-updated {
    color: var(--muted);
    font-size: 0.95rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 30px 0 15px;
    font-weight: 600;
}

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

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

.legal-content li {
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.7;
}

/* About Page */
.about-hero {
    background: var(--gradient-hero);
    padding: 100px 20px;
    text-align: center;
}

.about-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-hero-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto;
}

.story-section {
    padding: 100px 20px;
}

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

.story-text {
    flex: 1 1 450px;
}

.story-image {
    flex: 1 1 400px;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image svg {
    width: 150px;
    height: 150px;
    color: rgba(255,255,255,0.3);
}

/* Values Grid */
.values-section {
    padding: 100px 20px;
    background: var(--light);
}

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

.value-card {
    flex: 1 1 280px;
    max-width: 340px;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.value-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-text {
    color: var(--muted);
    line-height: 1.7;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .prose-lead {
        font-size: 1.15rem;
    }

    .stats-grid {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .contact-grid {
        gap: 40px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

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

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

    .testimonial-quote {
        font-size: 1.3rem;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .story-content {
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .hero-editorial {
        padding: 70px 20px 90px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

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

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

    .quote-block {
        padding: 35px;
    }

    .quote-text {
        font-size: 1.2rem;
    }
}
