:root {
    --primary: #1a365d;
    --secondary: #c53030;
    --accent: #ed8936;
    --light: #f7fafc;
    --dark: #1a202c;
    --gray: #718096;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(26,54,93,0.10);
    --shadow-lg: 0 12px 48px rgba(26,54,93,0.18);
    --radius: 12px;
    --radius-sm: 6px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

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

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

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: #9b2c2c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-accent:hover {
    background: #dd6b20;
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

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

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 8px 0;
}

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

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

.nav-cta {
    margin-left: 16px;
}

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 16px;
}

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

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

section {
    padding: 80px 0;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a7f 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="1.5" fill="rgba(255,255,255,0.12)"/></svg>');
    background-size: 200px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.hero-visual {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237,137,54,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

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

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

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

.section-desc {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.problem-card {
    flex: 1 1 280px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
}

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--dark);
}

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

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

.story-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

.insight-section {
    background: linear-gradient(180deg, var(--primary) 0%, #2a4a7f 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.insight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237,137,54,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.insight-content {
    position: relative;
    z-index: 2;
}

.insight-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.insight-text {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.8;
}

.insight-stats {
    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(--accent);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 8px;
}

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

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

.trust-card {
    flex: 1 1 300px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.trust-card p {
    color: var(--gray);
}

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

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

.testimonial-card {
    flex: 1 1 350px;
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 24px;
    font-style: italic;
}

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

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

.author-info h4 {
    font-size: 1rem;
    color: var(--dark);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray);
}

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

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

.benefits-visual {
    flex: 1;
}

.benefits-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(45deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.benefits-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
}

.benefits-list {
    flex: 1;
}

.benefits-list h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--dark);
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(8px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.125rem;
    margin-bottom: 6px;
    color: var(--dark);
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 340px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

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

.service-card.featured::before {
    content: 'Popularne';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
}

.service-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

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

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

.price-unit {
    color: var(--gray);
    font-size: 0.875rem;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.9375rem;
}

.service-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

.urgency-section {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0;
}

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

.urgency-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.urgency-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

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

.timer-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: rgba(255,255,255,0.15);
    padding: 16px 24px;
    border-radius: var(--radius);
    display: block;
}

.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.8;
}

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

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--light);
}

.form-wrapper {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-header p {
    color: var(--gray);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,54,93,0.1);
}

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

.form-row {
    display: flex;
    gap: 24px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 16px;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-desc {
    color: #a0aec0;
    line-height: 1.8;
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: #a0aec0;
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

.footer-contact {
    flex: 1 1 250px;
}

.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-item {
    display: flex;
    gap: 12px;
    color: #a0aec0;
    margin-bottom: 12px;
}

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

.footer-copy {
    color: #718096;
    font-size: 0.875rem;
}

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

.footer-legal a {
    color: #718096;
    font-size: 0.875rem;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 16px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sticky-cta-text h4 {
    font-size: 1rem;
    color: var(--dark);
}

.sticky-cta-text p {
    font-size: 0.875rem;
    color: var(--gray);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.9375rem;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a7f 100%);
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-intro {
    background: var(--white);
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--dark);
}

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

.about-visual {
    flex: 1;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

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

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

.value-card {
    flex: 1 1 280px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

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

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

.value-card p {
    color: var(--gray);
}

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

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

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

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

.team-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card span {
    color: var(--gray);
    font-size: 0.9375rem;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9375rem;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.legal-content {
    background: var(--white);
    padding: 80px 0;
}

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

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

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

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

.legal-content li {
    color: var(--gray);
    margin-bottom: 8px;
    list-style: disc;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a7f 100%);
}

.thanks-content {
    text-align: center;
    color: var(--white);
    padding: 60px;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 3rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.inline-cta {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    margin: 40px 0;
    text-align: center;
    border-left: 4px solid var(--secondary);
}

.inline-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.inline-cta p {
    color: var(--gray);
    margin-bottom: 20px;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #9b2c2c 100%);
    color: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    text-align: center;
    margin: 60px 0;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .story-content,
    .benefits-content,
    .about-content,
    .contact-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-content {
        gap: 32px;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

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

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

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

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

    .urgency-timer {
        gap: 12px;
    }

    .timer-number {
        font-size: 1.75rem;
        padding: 12px 16px;
    }

    .insight-stats {
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .btn {
        padding: 14px 28px;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}
