/**
 * FinanzAudit - Main Stylesheet
 * 
 * Color palette:
 * - Neon Lilac: #C67CE3 - for accent elements and buttons
 * - Electric Cyan: #00E8E8 - for secondary accents/hovers
 * - Mint Lime: #D0FF5F - for icons and thin details
 * - Deep Charcoal: #1E1E24 - for block backgrounds and text
 * - Snow White: #FFFFFF - for main background
 * - Warm Amber: #FFB845 - for gradients and progress lines
 */

/* ---------- Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #C67CE3; /* Neon Lilac */
    --color-secondary: #00E8E8; /* Electric Cyan */
    --color-accent: #D0FF5F; /* Mint Lime */
    --color-dark: #1E1E24; /* Deep Charcoal */
    --color-light: #FFFFFF; /* Snow White */
    --color-amber: #FFB845; /* Warm Amber */
    
    --container-width: 1280px;
    --gutter: 24px;
    
    --transition-fast: 200ms;
    --transition-medium: 300ms;
    --transition-slow: 400ms;
    
    --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.16);
    
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 16px;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 var(--gutter);
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
    margin-bottom: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 2rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

a:hover {
    color: var(--color-secondary);
}

ul, ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: var(--border-radius-medium);
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-small);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 36, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 2rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color var(--transition-fast) ease;
}

.site-logo a:hover {
    color: var(--color-secondary);
}

/* Navigation */
.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 0.8rem 1.6rem;
    color: var(--color-light);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-light);
    position: absolute;
    left: 4px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger-line:nth-child(1) {
    top: 10px;
}

.hamburger-line:nth-child(2) {
    top: 16px;
}

.hamburger-line:nth-child(3) {
    top: 22px;
}

/* ---------- Hero Section ---------- */
.hero-section {
    padding: 12rem 0;
    background: linear-gradient(rgba(30, 30, 36, 0.8), rgba(30, 30, 36, 0.8)), url('./img/03rLb2.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
    text-align: center;
}

.hero-content {
    max-width: 70rem;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 5.6rem;
    margin-bottom: 2.4rem;
    color: var(--color-light);
}

.hero-section p {
    font-size: 2.4rem;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    margin-top: 4rem;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- About Section ---------- */
.about-section {
    padding: 8rem 0;
    background-color: var(--color-light);
}

.about-section h2 {
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Benefits Section ---------- */
.benefits-section {
    padding: 8rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
}

.benefits-section h2 {
    color: var(--color-light);
    text-align: center;
}

.benefits-image {
    margin: 3rem auto 4rem;
    max-width: 600px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-medium);
    padding: 3.2rem;
    text-align: center;
    transition: transform var(--transition-medium) ease;
}

.benefit-card:hover {
    transform: translateY(-1rem);
    background-color: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    margin-bottom: 2.4rem;
}

.benefit-card h3 {
    color: var(--color-primary);
    margin-bottom: 1.6rem;
}

.benefit-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- Services & Pricing Section ---------- */
.services-section {
    padding: 8rem 0;
    background-color: var(--color-light);
}

.services-section h2 {
    text-align: center;
}

.services-image {
    margin: 3rem auto 4rem;
    max-width: 600px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

.pricing-card {
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
}

.pricing-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-large);
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    position: relative;
}

.pricing-header {
    padding: 3.2rem;
    text-align: center;
    background-color: var(--color-dark);
    color: var(--color-light);
}

.pricing-header h3 {
    color: var(--color-primary);
    margin-bottom: 1.6rem;
}

.price {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 0.8rem;
}

.price-period {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    padding: 3.2rem;
    background-color: var(--color-light);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(30, 30, 36, 0.1);
    position: relative;
    padding-left: 3.2rem;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.pricing-footer {
    padding: 2.4rem 3.2rem;
    text-align: center;
    background-color: var(--color-light);
    border-top: 1px solid rgba(30, 30, 36, 0.1);
}

/* ---------- Process Timeline Section ---------- */
.process-section {
    padding: 8rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
}

.process-section h2 {
    color: var(--color-light);
    text-align: center;
}

.timeline {
    margin-top: 4.8rem;
    position: relative;
}

.timeline-progress {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.timeline-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-amber));
    animation: progress 3s ease-out forwards;
}

@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.timeline-step {
    text-align: center;
    padding: 0 2.4rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto 2.4rem;
    position: relative;
    z-index: 3;
}

.timeline-step h3 {
    color: var(--color-primary);
    margin-bottom: 1.6rem;
}

.timeline-step p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--color-light);
}

.testimonials-section h2 {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

.testimonial-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    padding: 3.2rem;
    transition: transform var(--transition-medium) ease;
}

.testimonial-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-large);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2.4rem;
}

.testimonial-content:before {
    content: """;
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-size: 8rem;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.6rem;
    border: 2px solid var(--color-primary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.4rem;
    color: var(--color-dark);
}

.author-info p {
    margin-bottom: 0;
    color: var(--color-primary);
    font-size: 1.4rem;
}

/* ---------- Form Section ---------- */
.form-section {
    padding: 8rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
}

.form-section h2 {
    color: var(--color-light);
    text-align: center;
}

.form-container {
    max-width: 64rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-medium);
    padding: 4.8rem;
}

.form-error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    padding: 1.6rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 2.4rem;
}

.form-group {
    margin-bottom: 2.4rem;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 1.6rem;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: var(--color-light);
    font-size: 1.6rem;
    transition: border-color var(--transition-fast);
}

.form-field select option {
    background-color: var(--color-dark);
}

.form-field label {
    position: absolute;
    left: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    pointer-events: none;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-field input:focus + label,
.form-field select:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:not([value=""]):valid + label {
    top: -0.5rem;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.form-field input:not(:placeholder-shown),
.form-field select:valid {
    border-color: rgba(255, 255, 255, 0.6);
}

.form-field input::placeholder {
    color: transparent;
}

.checkbox-group {
    margin-bottom: 1.6rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 0.5rem;
    margin-right: 1rem;
}

.form-checkbox label {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: var(--color-secondary);
}

/* ---------- Contact Section ---------- */
.contact-section {
    padding: 8rem 0;
    background-color: var(--color-light);
}

.contact-section h2 {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    margin-top: 4.8rem;
}

.contact-info {
    display: grid;
    gap: 2.4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 1.6rem;
    background-color: rgba(198, 124, 227, 0.1);
    padding: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    margin-bottom: 0.8rem;
    color: var(--color-dark);
}

.contact-text p {
    margin-bottom: 0.8rem;
    color: rgba(30, 30, 36, 0.8);
}

.contact-map {
    height: 100%;
    min-height: 360px;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 6.4rem 0 2.4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4.8rem;
    margin-bottom: 4.8rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 2.4rem;
}

.footer-logo a {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color var(--transition-fast) ease;
}

.footer-logo a:hover {
    color: var(--color-secondary);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact h4,
.footer-links h4 {
    color: var(--color-primary);
    margin-bottom: 2.4rem;
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 2.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 36, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.4rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.4rem;
}

.cookie-content p {
    color: var(--color-light);
    margin-bottom: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.cookie-link {
    color: var(--color-light);
    text-decoration: underline;
}

/* ---------- Thank You Page ---------- */
.thankyou-section {
    padding: 12rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('./img/03rLb2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-content {
    text-align: center;
    max-width: 76rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 4.8rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-large);
    position: relative;
    z-index: 1;
}

.thankyou-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary), var(--color-accent));
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
    z-index: 2;
}

.thankyou-icon {
    margin-bottom: 3.2rem;
    position: relative;
    display: inline-block;
}

.thankyou-icon.animated {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.thankyou-content h1 {
    margin-bottom: 2.4rem;
    color: var(--color-primary);
}

.thankyou-message {
    margin-bottom: 3.6rem;
}

.thankyou-message .lead {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.thankyou-message p {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
    color: var(--color-dark);
}

.thankyou-message a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: underline;
    transition: color var(--transition-fast) ease;
}

.thankyou-message a:hover {
    color: var(--color-secondary);
}

.thankyou-details {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    background-color: rgba(30, 30, 36, 0.03);
    padding: 1.6rem;
    border-radius: var(--border-radius-medium);
    transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-small);
}

.detail-icon {
    flex-shrink: 0;
    background-color: var(--color-dark);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-text {
    text-align: left;
}

.detail-text p {
    margin-bottom: 0;
    font-size: 1.6rem;
}

.detail-text a {
    color: var(--color-primary);
    font-weight: 500;
    transition: color var(--transition-fast) ease;
}

.detail-text a:hover {
    color: var(--color-secondary);
}

.thankyou-actions {
    margin-top: 4.8rem;
    display: flex;
    justify-content: center;
    gap: 2.4rem;
}

@media screen and (max-width: 768px) {
    .thankyou-content {
        padding: 3.2rem 2.4rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.6rem;
    }
    
    .thankyou-actions .btn {
        width: 100%;
    }
}

/* ---------- Policy Pages ---------- */
.policy-section {
    padding: 8rem 0;
    background-color: var(--color-light);
}

.policy-header {
    text-align: center;
    margin-bottom: 6.4rem;
}

.policy-header p {
    color: rgba(30, 30, 36, 0.6);
    font-size: 1.4rem;
}

.policy-content {
    max-width: 80rem;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 2.4rem;
    margin-top: 4.8rem;
    margin-bottom: 2.4rem;
    color: var(--color-dark);
}

.policy-content p {
    margin-bottom: 1.6rem;
}

.policy-content ul {
    margin-bottom: 1.6rem;
}

.policy-content address {
    font-style: normal;
    margin-top: 2.4rem;
    padding: 2.4rem;
    background-color: rgba(30, 30, 36, 0.05);
    border-radius: var(--border-radius-medium);
}

/* ---------- Responsive Styles ---------- */

/* Large devices (desktops, up to 1280px) */
@media (max-width: 1280px) {
    html {
        font-size: 56.25%; /* 9px = 1rem */
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, up to 992px) */
@media (max-width: 992px) {
    html {
        font-size: 50%; /* 8px = 1rem */
    }
    
    .hero-section h1 {
        font-size: 4.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 48rem;
        margin: 0 auto;
    }
    
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 4.8rem;
    }
    
    .timeline-progress {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 48rem;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }
}

/* Small devices (phones, up to 768px) */
@media (max-width: 768px) {
    .header-cta {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section h1 {
        font-size: 3.6rem;
    }
    
    .hero-section p {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 240px;
    }
    
    .form-container {
        padding: 3.2rem 2.4rem;
    }
}

/* Extra small devices (small phones, up to 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 1.6rem;
    }
    
    .timeline-steps {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
} 