:root {
    --color-primary: #1a365d;
    --color-secondary: #4fd1c5;
    --color-accent: #38b2ac;
    --color-dark: #1a202c;
    --color-gray-dark: #2d3748;
    --color-gray: #4a5568;
    --color-gray-light: #718096;
    --color-gray-lighter: #a0aec0;
    --color-light: #e2e8f0;
    --color-white: #ffffff;
    --color-bg: #f7fafc;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-bg);
}

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

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-light);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gray-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    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='%234fd1c5' 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-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: rgba(79, 209, 197, 0.2);
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: var(--color-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    max-width: 450px;
    z-index: 1;
}

.btn-primary {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition);
}

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

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    transition: all var(--transition);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-submit {
    width: 100%;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-submit:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.intro-section {
    padding: 6rem 1.5rem;
    background: var(--color-white);
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--color-gray);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    color: var(--color-gray);
    font-size: 0.875rem;
}

.services-preview {
    padding: 6rem 1.5rem;
    background: var(--color-bg);
}

.section-header-alt {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.service-card-featured {
    border: 2px solid var(--color-secondary);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-link {
    font-weight: 600;
    color: var(--color-secondary);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.process-section {
    padding: 6rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
}

.process-text {
    max-width: 600px;
    margin-bottom: 4rem;
}

.process-text h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.process-text .section-tag {
    color: var(--color-secondary);
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 250px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.5;
    line-height: 1;
}

.step-content h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-light);
    font-size: 0.9375rem;
}

.testimonials-section {
    padding: 6rem 1.5rem;
    background: var(--color-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-item {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-secondary);
}

.testimonial-item p {
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-item cite {
    display: block;
    font-style: normal;
}

.testimonial-item strong {
    display: block;
    color: var(--color-dark);
}

.testimonial-item span {
    font-size: 0.875rem;
    color: var(--color-gray-light);
}

.insights-section {
    padding: 6rem 1.5rem;
    background: var(--color-bg);
}

.insights-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insights-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.insights-content {
    flex: 1;
}

.insights-content h2 {
    margin-bottom: 1.5rem;
}

.insights-content p {
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.insights-content .btn-outline {
    margin-top: 1rem;
}

.cta-banner {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gray-dark) 0%, var(--color-primary) 100%);
    text-align: center;
}

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

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.form-section {
    padding: 6rem 1.5rem;
    background: var(--color-white);
}

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 1rem;
}

.form-info p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

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

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-gray);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.contact-form {
    flex: 1;
    background: var(--color-bg);
    padding: 2.5rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--color-white);
}

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

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

.trust-section {
    padding: 4rem 1.5rem;
    background: var(--color-bg);
    border-top: 1px solid var(--color-light);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    color: var(--color-gray-light);
    font-weight: 500;
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.trust-logo {
    opacity: 0.6;
    transition: opacity var(--transition);
}

.trust-logo:hover {
    opacity: 1;
}

.site-footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 1.5rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

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

.footer-brand p {
    color: var(--color-gray-light);
    font-size: 0.9375rem;
}

.footer-links {
    flex: 2 1 500px;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--color-gray-light);
    font-size: 0.9375rem;
}

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

.footer-column address {
    font-style: normal;
    color: var(--color-gray-light);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--color-gray-dark);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-light);
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-cta-btn {
    display: block;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.sticky-cta-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 1.5rem;
    z-index: 9999;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--color-light);
    flex: 1;
    font-size: 0.9375rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-size: 0.9375rem;
}

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

.cookie-accept:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.cookie-reject {
    background: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-gray);
}

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

.page-header {
    padding: 10rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gray-dark) 100%);
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

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

.page-content {
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

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

.page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light);
}

.page-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
    color: var(--color-gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.services-full {
    padding: 4rem 1.5rem;
    background: var(--color-bg);
}

.services-full-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-full-card {
    display: flex;
    gap: 3rem;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.service-full-image {
    flex: 0 0 40%;
    min-height: 300px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.service-full-image svg {
    width: 120px;
    height: 120px;
    color: var(--color-secondary);
}

.service-full-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-full-content h3 {
    margin-bottom: 1rem;
}

.service-full-content p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.service-full-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-gray);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.contact-info-section {
    padding: 4rem 1.5rem;
    background: var(--color-bg);
}

.contact-info-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-card {
    flex: 1 1 300px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.contact-info-card p {
    color: var(--color-gray);
    margin-bottom: 0.75rem;
}

.contact-info-card a {
    color: var(--color-secondary);
}

.about-story {
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

.about-story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-story h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.about-story p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.about-values {
    padding: 4rem 1.5rem;
    background: var(--color-bg);
}

.about-values-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 280px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-item h4 {
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.value-item p {
    color: var(--color-gray);
    font-size: 0.9375rem;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gray-dark) 100%);
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(79, 209, 197, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--color-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

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

    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 7rem;
    }

    .hero-image {
        max-width: 300px;
        margin-top: 2rem;
    }

    .intro-wrapper {
        flex-direction: column;
    }

    .insights-wrapper {
        flex-direction: column;
    }

    .form-wrapper {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 5rem;
        right: 1rem;
    }

    .service-full-card,
    .service-full-card:nth-child(even) {
        flex-direction: column;
    }

    .service-full-image {
        min-height: 200px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .trust-logos {
        flex-direction: column;
    }
}
