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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #64748b;
}

.btn-reject:hover {
    background: #334155;
}

.nav-main {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

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

.nav-links a {
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0f172a;
}

.hero-block {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.info-strip {
    padding: 80px 20px;
    background: #f8fafc;
}

.large-text {
    font-size: 22px;
    line-height: 1.7;
    color: #475569;
}

.visual-statement {
    padding: 100px 20px;
}

.statement-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.statement-image {
    flex: 1;
}

.statement-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.statement-text {
    flex: 1;
}

.statement-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 700;
}

.statement-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.numbers-block {
    padding: 80px 20px;
    background: #0f172a;
    color: #ffffff;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #60a5fa;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #cbd5e1;
}

.services-showcase {
    padding: 100px 20px;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #0f172a;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card-visual {
    height: 220px;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #0f172a;
    font-weight: 600;
}

.service-card p {
    padding: 0 24px;
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.6;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    padding: 0 24px;
    margin-bottom: 20px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1d4ed8;
}

.trust-elements {
    padding: 80px 20px;
    background: #f1f5f9;
}

.trust-elements h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 600;
}

.trust-item p {
    color: #64748b;
    line-height: 1.7;
}

.testimonial-block {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.quote {
    font-size: 24px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.author {
    font-size: 17px;
    color: #bfdbfe;
    font-weight: 500;
}

.process-explanation {
    padding: 100px 20px;
}

.process-explanation h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.process-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #e0e7ff;
    margin-bottom: 16px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 600;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

.cta-sticky-trigger {
    padding: 80px 20px;
    background: #fef3c7;
}

.cta-sticky-trigger h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #0f172a;
}

.cta-sticky-trigger p {
    font-size: 18px;
    color: #64748b;
}

.form-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #0f172a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #334155;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input[readonly] {
    background: #f1f5f9;
    color: #64748b;
}

.form-hint {
    font-size: 14px;
    color: #64748b;
    margin-top: 6px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.btn-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.final-push {
    padding: 80px 20px;
    text-align: center;
}

.final-text {
    font-size: 20px;
    color: #475569;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
    z-index: 90;
    transition: all 0.3s ease;
}

.sticky-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.sticky-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-content span {
    font-weight: 500;
}

.btn-sticky {
    background: #ffffff;
    color: #2563eb;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #f1f5f9;
}

.page-header {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 800;
}

.header-subtitle {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro {
    padding: 100px 20px;
}

.two-col-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.col-text {
    flex: 1;
}

.col-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.col-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.col-image {
    flex: 1;
}

.col-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 600;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
}

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

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #0f172a;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    text-align: center;
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #0f172a;
}

.role {
    font-size: 15px;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

.milestones-section {
    padding: 100px 20px;
    background: #f1f5f9;
}

.milestones-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.year {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    min-width: 100px;
}

.timeline-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    padding-top: 4px;
}

.cta-about {
    padding: 80px 20px;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #0f172a;
}

.cta-about p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
}

.services-detail {
    padding: 80px 20px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-card.reverse .service-detail-content {
    flex-direction: row-reverse;
}

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

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f172a;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #475569;
    font-size: 16px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.price-display {
    margin: 32px 0 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #64748b;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
}

.service-form-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.service-form-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #0f172a;
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #0f172a;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

.info-item a {
    color: #2563eb;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: #e5e7eb;
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 18px;
}

.contact-additional {
    padding: 80px 20px;
    background: #f8fafc;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    color: #0f172a;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.contact-additional .cta-primary {
    margin-top: 32px;
}

.thanks-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
    font-weight: 700;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0f172a;
}

.thanks-message {
    font-size: 19px;
    color: #475569;
    margin-bottom: 24px;
}

.service-selected {
    margin-top: 24px;
}

.service-highlight {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    font-size: 17px;
    color: #0f172a;
    display: inline-block;
}

.next-steps {
    padding: 100px 20px;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.step-num {
    display: block;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
}

.thanks-cta {
    padding: 80px 20px;
    background: #f1f5f9;
}

.thanks-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0f172a;
}

.thanks-cta p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
}

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

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #0f172a;
}

.last-updated {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0f172a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1e293b;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #334155;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .statement-grid,
    .two-col-layout,
    .contact-grid,
    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-card.reverse .service-detail-content {
        flex-direction: column;
    }

    .service-cards {
        gap: 24px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 32px;
    }

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

    .team-grid {
        justify-content: center;
    }

    .section-heading {
        font-size: 32px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-content {
        justify-content: center;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}