/* ===== CSS Reset & Base Styles ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #CED4E2;
    background-color: #0E0E11;
    overflow-x: hidden;
}

/* ===== CSS Variables ===== */
:root {
    --electric-violet: #6A00FF;
    --neon-chartreuse: #D8FF00;
    --off-black: #0E0E11;
    --hot-coral: #FF5964;
    --nebula-grey: #CED4E2;
    
    --gradient-primary: linear-gradient(135deg, var(--electric-violet) 0%, var(--neon-chartreuse) 100%);
    --gradient-dark: linear-gradient(135deg, rgba(106, 0, 255, 0.1) 0%, rgba(216, 255, 0, 0.05) 100%);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
    
    /* Grid Variables */
    --container-max-width: 1200px;
    --gutter-desktop: 120px;
    --gutter-tablet: 60px;
    --gutter-mobile: 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p { margin-bottom: 1rem; }

a {
    color: var(--neon-chartreuse);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--electric-violet);
}

/* ===== Animations ===== */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(106, 0, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(106, 0, 255, 0.6); }
}

/* ===== Container System ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(14, 14, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    animation: fade-up 0.6s ease;
}

.nav__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--hot-coral);
    text-decoration: none;
}

.nav__menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--nebula-grey);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav__link:hover {
    color: var(--neon-chartreuse);
}

.nav__link--cta {
    background: var(--gradient-primary);
    color: var(--off-black) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    animation: pulse-glow 2s infinite;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 17, 0.3);
}

.hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 800px;
    animation: fade-up 1s ease;
}

.hero__logo {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--hot-coral);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    display: block;
    font-size: 2rem;
    color: var(--off-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--off-black);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.hero__cta {
    display: inline-block;
    background: var(--off-black);
    color: var(--neon-chartreuse);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero__cta:hover {
    background: transparent;
    color: var(--off-black);
    border-color: var(--off-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== About Section ===== */
.about {
    padding: 8rem 0;
    background: var(--gradient-dark);
}

.about__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fade-up 0.8s ease;
}

.about__info {
    animation: fade-up 0.8s ease;
}

.about__title {
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about__visual {
    animation: fade-up 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.about__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--electric-violet);
    box-shadow: 0 20px 40px rgba(106, 0, 255, 0.2);
}

/* ===== Benefits Section ===== */
.benefits {
    padding: 8rem 0;
    background: var(--off-black);
}

.benefits__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits__title {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-up 0.8s ease;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefits__card {
    background: rgba(106, 0, 255, 0.1);
    border: 1px solid rgba(216, 255, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    animation: fade-up 0.8s ease;
}

.benefits__card:nth-child(2) { animation-delay: 0.1s; }
.benefits__card:nth-child(3) { animation-delay: 0.2s; }
.benefits__card:nth-child(4) { animation-delay: 0.3s; }

.benefits__card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-chartreuse);
    box-shadow: 0 20px 40px rgba(106, 0, 255, 0.2);
}

.benefits__icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--electric-violet);
}

.benefits__card-title {
    color: var(--neon-chartreuse);
    margin-bottom: 1rem;
}

.benefits__card-text {
    color: var(--nebula-grey);
    line-height: 1.6;
}

/* ===== Services Section ===== */
.services {
    padding: 8rem 0;
    background: var(--gradient-dark);
}

.services__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.services__title {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-up 0.8s ease;
}

.services__tabs {
    max-width: 900px;
    margin: 0 auto;
}

.services__tab-input {
    display: none;
}

.services__tab-labels {
    display: flex;
    border-bottom: 2px solid rgba(106, 0, 255, 0.3);
    margin-bottom: 2rem;
}

.services__tab-label {
    flex: 1;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    background: transparent;
    color: var(--nebula-grey);
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.services__tab-label:hover {
    color: var(--neon-chartreuse);
}

.services__tab-input:checked + .services__tab-labels .services__tab-label,
.services__tab-input:nth-child(1):checked ~ .services__tab-labels .services__tab-label:nth-child(1),
.services__tab-input:nth-child(2):checked ~ .services__tab-labels .services__tab-label:nth-child(2),
.services__tab-input:nth-child(3):checked ~ .services__tab-labels .services__tab-label:nth-child(3) {
    color: var(--neon-chartreuse);
    border-bottom-color: var(--electric-violet);
}

.services__tab-content {
    position: relative;
    min-height: 400px;
}

.services__tab-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: rgba(106, 0, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
}

.services__tab-input:nth-child(1):checked ~ .services__tab-content .services__tab-panel:nth-child(1),
.services__tab-input:nth-child(2):checked ~ .services__tab-content .services__tab-panel:nth-child(2),
.services__tab-input:nth-child(3):checked ~ .services__tab-content .services__tab-panel:nth-child(3) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services__tab-panel h3 {
    color: var(--neon-chartreuse);
    margin-bottom: 1.5rem;
}

.services__tab-panel p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services__tab-panel ul {
    list-style: none;
}

.services__tab-panel li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services__tab-panel li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--electric-violet);
}

/* ===== Order Form Section ===== */
.order-form {
    padding: 8rem 0;
    background: var(--off-black);
    position: relative;
}

.order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.order-form__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.order-form__content {
    background: rgba(14, 14, 17, 0.9);
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    animation: fade-up 0.8s ease;
}

.order-form__title {
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-form__description {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.order-form__form {
    display: grid;
    gap: 2rem;
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__label {
    color: var(--neon-chartreuse);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form__input,
.form__select {
    background: rgba(106, 0, 255, 0.1);
    border: 2px solid rgba(216, 255, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    color: var(--nebula-grey);
    font-size: 1rem;
    transition: var(--transition);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D8FF00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form__select option {
    background: var(--off-black);
    color: var(--nebula-grey);
    padding: 0.5rem;
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--neon-chartreuse);
    box-shadow: 0 0 20px rgba(216, 255, 0, 0.3);
}

.form__checkboxes {
    display: grid;
    gap: 1rem;
}

.form__checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form__checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--electric-violet);
}

.form__checkbox-label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.form__checkbox-label a {
    color: var(--neon-chartreuse);
    text-decoration: underline;
}

.form__submit {
    background: var(--gradient-primary);
    color: var(--off-black);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius-lg);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(106, 0, 255, 0.4);
}

/* ===== Process Section ===== */
.process {
    padding: 8rem 0;
    background: var(--gradient-dark);
}

.process__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.process__title {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-up 0.8s ease;
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    counter-reset: step-counter;
}

.process__step {
    text-align: center;
    counter-increment: step-counter;
    animation: fade-up 0.8s ease;
}

.process__step:nth-child(2) { animation-delay: 0.1s; }
.process__step:nth-child(3) { animation-delay: 0.2s; }
.process__step:nth-child(4) { animation-delay: 0.3s; }

.process__step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--off-black);
    position: relative;
}

.process__step-number::before {
    content: counter(step-counter);
}

.process__step-title {
    color: var(--neon-chartreuse);
    margin-bottom: 1rem;
}

.process__step-text {
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 8rem 0;
    background: var(--off-black);
}

.testimonials__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials__title {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-up 0.8s ease;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonials__card {
    background: rgba(106, 0, 255, 0.1);
    border: 1px solid rgba(216, 255, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    animation: fade-up 0.8s ease;
}

.testimonials__card:nth-child(2) { animation-delay: 0.1s; }
.testimonials__card:nth-child(3) { animation-delay: 0.2s; }

.testimonials__card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-chartreuse);
    box-shadow: 0 20px 40px rgba(106, 0, 255, 0.2);
}

.testimonials__text {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--electric-violet);
}

.testimonials__name {
    color: var(--neon-chartreuse);
    margin-bottom: 0.25rem;
}

.testimonials__company {
    color: var(--nebula-grey);
    font-size: 0.9rem;
}

/* ===== Contact Map Section ===== */
.contact-map {
    padding: 8rem 0;
    background: var(--gradient-dark);
}

.contact-map__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-map__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-map__info {
    animation: fade-up 0.8s ease;
}

.contact-map__title {
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-map__description {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-map__details {
    display: grid;
    gap: 2rem;
}

.contact-map__item h3 {
    color: var(--neon-chartreuse);
    margin-bottom: 0.75rem;
}

.contact-map__item p {
    margin-bottom: 0.5rem;
}

.contact-map__item a {
    color: var(--nebula-grey);
    transition: var(--transition);
}

.contact-map__item a:hover {
    color: var(--neon-chartreuse);
}

.contact-map__visual {
    animation: fade-up 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.contact-map__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--electric-violet);
}

.contact-map__iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--electric-violet);
    filter: contrast(1.1) brightness(0.9);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14, 14, 17, 0.9);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--electric-violet);
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner__link {
    color: var(--neon-chartreuse);
    text-decoration: underline;
}

.cookie-banner__button {
    background: var(--neon-chartreuse);
    color: var(--off-black);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-banner__button:hover {
    background: var(--electric-violet);
    color: white;
}

/* ===== Footer ===== */
.footer {
    background: var(--off-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(106, 0, 255, 0.3);
}

.footer__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__title {
    color: var(--neon-chartreuse);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer__description {
    line-height: 1.7;
    margin-bottom: 0;
}

.footer__contact-item {
    margin-bottom: 1rem;
}

.footer__contact-item strong {
    color: var(--neon-chartreuse);
}

.footer__contact-item a {
    color: var(--nebula-grey);
    transition: var(--transition);
}

.footer__contact-item a:hover {
    color: var(--neon-chartreuse);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: var(--nebula-grey);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer__link:hover {
    color: var(--neon-chartreuse);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(106, 0, 255, 0.2);
}

.footer__copyright {
    color: var(--nebula-grey);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 8rem 0 4rem;
    background: var(--gradient-dark);
    min-height: 80vh;
}

.legal-page__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-page__content {
    background: rgba(14, 14, 17, 0.9);
    border: 1px solid rgba(106, 0, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    animation: fade-up 0.8s ease;
}

.legal-page__title {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-page__intro {
    text-align: center;
    color: var(--nebula-grey);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(106, 0, 255, 0.3);
}

.legal-page__section {
    margin-bottom: 3rem;
}

.legal-page__section h2 {
    color: var(--neon-chartreuse);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-page__section h3 {
    color: var(--electric-violet);
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.legal-page__section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page__section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page__section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-page__section li::marker {
    color: var(--electric-violet);
}

.legal-page__back {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(106, 0, 255, 0.3);
    text-align: center;
}

.legal-page__back-link {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--off-black);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.legal-page__back-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 0, 255, 0.4);
}

/* ===== Responsive Design ===== */

/* Tablet: 768px - 1279px */
@media (max-width: 1279px) {
    :root {
        --container-max-width: 960px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    
    .hero__logo {
        font-size: 3.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.75rem;
    }
    
    .contact-map__content {
        gap: 3rem;
    }
    
    .process__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile: ≤ 767px */
@media (max-width: 767px) {
    :root {
        --container-max-width: 100%;
        --gutter: var(--gutter-mobile);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Navigation */
    .nav__menu {
        flex-direction: column;
        gap: 1rem;
        display: none; /* Simplified for mobile */
    }
    
    .nav__logo-text {
        font-size: 1.75rem;
    }
    
    /* Hero */
    .hero__content {
        text-align: center;
    }
    
    .hero__logo {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.5rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .about,
    .benefits,
    .services,
    .order-form,
    .process,
    .testimonials,
    .contact-map {
        padding: 4rem 0;
    }
    
    /* Benefits Grid */
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Services Tabs */
    .services__tab-labels {
        flex-direction: column;
    }
    
    .services__tab-panel {
        padding: 2rem;
    }
    
    /* Order Form */
    .order-form__content {
        padding: 2.5rem 1.5rem;
    }
    
    /* Process */
    .process__timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    /* About Section */
    .about__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about__image {
        height: 300px;
    }
    
    /* Contact */
    .contact-map__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map__image,
    .contact-map__iframe {
        height: 250px;
    }
    
    /* Cookie Banner */
    .cookie-banner__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Footer */
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Legal Pages Mobile */
    .legal-page__content {
        padding: 2.5rem 1.5rem;
    }
    
    .legal-page__title {
        font-size: 2rem;
    }
    
    .legal-page__section ul {
        padding-left: 1.5rem;
    }
}