/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
    transition: background 0.3s;
}

.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #444;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #1a5f7a;
    background: rgba(26, 95, 122, 0.07);
}

.lang-link {
    font-weight: 700;
    color: #1a5f7a;
    border: 1.5px solid #1a5f7a;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.85rem;
    margin-left: 8px;
}

.lang-link:hover {
    background: #1a5f7a;
    color: #fff;
}

.nav-cta {
    background: #8b1a3a;
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 8px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #6d1430;
    color: #fff !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1a5f7a;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('img/fondo.jpg') center center / cover no-repeat;
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo {
    max-width: 750px;
    width: 100%;
    margin: 0 auto 30px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #c0392b;
    color: #fff;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.35);
}

.btn-primary:hover {
    background: #a33025;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.45);
}

.btn-white {
    background: #fff;
    color: #1a5f7a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-fuscia {
    background: #c2185b;
    color: #fff;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.35);
}

.btn-fuscia:hover {
    background: #a01349;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.45);
}

.btn-code {
    display: block;
    background: #fff;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    padding: 14px 28px;
    text-align: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.btn-code:hover {
    background: #1a5f7a;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Page Content (inner pages) ===== */
.page-content {
    padding-top: 72px;
}

.page-intro {
    padding: 30px 0 20px;
}

.intro-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
    line-height: 1.5;
}

.credentials-banner {
    padding: 30px 0;
    background: #1a5f7a;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.credential-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.credential-item:hover {
    transform: scale(1.03);
}

.credential-item img {
    max-height: 100px;
    width: auto;
    max-width: 100%;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
}

.about-text {
    padding: 50px 0;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.codes-section {
    padding: 50px 0;
    background: #1a5f7a;
    color: #fff;
}

.codes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.codes-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

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

/* ===== Services Page ===== */
.service-hero {
    padding: 60px 0 40px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a5f7a;
    margin-bottom: 16px;
}

.service-hero-text .lang-pair {
    font-size: 1.15rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 12px;
}

.service-hero-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.service-hero-img img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
}

.service-categories {
    padding: 60px 0;
    background: #f0f4f6;
}

.service-categories h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a5f7a;
    margin-bottom: 36px;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e0e8ec;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(26, 95, 122, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a, #2d8ea9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.25);
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 14px;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card ul li {
    font-size: 0.95rem;
    color: #444;
    padding: 5px 0;
    padding-left: 16px;
    position: relative;
}

.category-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: #1a5f7a;
    border-radius: 50%;
}

.categories-more {
    text-align: center;
    margin-top: 30px;
    font-size: 1.05rem;
    color: #555;
}

.categories-more a {
    color: #1a5f7a;
    font-weight: 700;
    text-decoration: underline;
}

/* ===== Pricing Page ===== */
.page-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a5f7a;
    margin-bottom: 24px;
}

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

.btn-full {
    display: block;
    text-align: center;
    max-width: 500px;
}

.pricing-section {
    padding: 50px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.pricing-main p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.pricing-main ul {
    list-style: none;
    padding: 0;
}

.pricing-main ul li {
    font-size: 0.95rem;
    color: #333;
    padding: 8px 0 8px 20px;
    position: relative;
    line-height: 1.6;
}

.pricing-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: #1a5f7a;
    border-radius: 2px;
}

.pricing-card {
    background: #f0f4f6;
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid #1a5f7a;
}

.pricing-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 12px;
    line-height: 1.5;
}

.pricing-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pricing-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.pricing-list {
    list-style: none;
    padding: 0;
}

.pricing-list li {
    font-size: 0.9rem;
    color: #1a5f7a;
    font-weight: 700;
    padding: 4px 0;
}

/* ===== Page Hero Banner ===== */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 95, 122, 0.8);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-hero-solid {
    background: linear-gradient(135deg, #1a5f7a 0%, #0d3e52 100%);
}

/* ===== Process Flow ===== */
.process-flow {
    padding: 20px 0 60px;
}

.flow-timeline {
    position: relative;
    padding-left: 60px;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1a5f7a, #2d8ea9);
    border-radius: 2px;
}

.flow-step {
    position: relative;
    margin-bottom: 36px;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-number {
    position: absolute;
    left: -60px;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a5f7a, #2d8ea9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
    z-index: 1;
}

.flow-content {
    background: #f8fafb;
    border-radius: 12px;
    padding: 28px 32px;
    border: 1px solid #e0e8ec;
    transition: all 0.3s;
}

.flow-content:hover {
    box-shadow: 0 8px 24px rgba(26, 95, 122, 0.1);
    transform: translateX(4px);
}

.flow-content h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.flow-content p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.flow-content p:last-child {
    margin-bottom: 0;
}

.flow-content a {
    color: #1a5f7a;
    font-weight: 700;
    text-decoration: underline;
}

.flow-tip {
    background: #eaf4f7;
    border-left: 3px solid #2d8ea9;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #1a5f7a;
    margin-top: 12px;
    line-height: 1.6;
}

.flow-contact {
    margin-top: 40px;
    padding: 28px 32px;
    background: #1a5f7a;
    border-radius: 12px;
    color: #fff;
}

.flow-contact p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.flow-contact p:last-child {
    margin-bottom: 0;
}

.flow-contact a {
    color: #fff;
    text-decoration: underline;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 50px 0;
}

.faq-bg {
    position: relative;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 100px;
}

.faq-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-item {
    border-bottom: 1px solid #e0e8ec;
}

.faq-item:first-child {
    border-top: 1px solid #e0e8ec;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a5f7a;
    text-align: left;
    line-height: 1.4;
    transition: color 0.2s;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a5f7a;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s;
}

.faq-question:hover {
    color: #2d8ea9;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 0 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #1a5f7a;
    font-weight: 700;
    text-decoration: underline;
}

/* ===== Contact Page ===== */
.contact-hero {
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.contact-img img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 12px;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #c0392b;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a5f7a;
    transition: color 0.2s;
}

.contact-email:hover {
    color: #2d8ea9;
}

.email-icon {
    width: 32px;
    height: 32px;
}

.banner-sub {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
}

.contact-map {
    padding: 50px 0 0;
}

.contact-map h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a5f7a;
    margin-bottom: 8px;
}

.map-address {
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
}

.map-embed {
    width: 100%;
    line-height: 0;
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.quote-cta {
    padding: 60px 0;
    text-align: center;
    background: #1a5f7a;
}

.quote-cta h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

/* ===== Banner ===== */
.banner {
    padding: 28px 0;
    background: #1a5f7a;
    text-align: left;
}

.banner h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #c0392b;
    margin: 0;
}

/* ===== Features ===== */
.features {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 12px;
    background: #f8fafb;
    border: 1px solid #e8eef1;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(26, 95, 122, 0.1);
    border-color: rgba(26, 95, 122, 0.2);
}

.feature-img {
    width: 100%;
    height: 160px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

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

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* ===== Reviews ===== */
.reviews {
    padding: 70px 0;
    background: #f8fafb;
    text-align: center;
}

.reviews h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #1a5f7a;
    margin-bottom: 30px;
}

/* ===== CTA ===== */
.cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a5f7a, #2d8ea9);
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.cta p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
    background: #0d2d3a;
    color: #b0c7d1;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.footer-company {
    font-weight: 700;
    color: #d0dfe6;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #7a9aaa;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.footer-col ul li a {
    font-size: 0.9rem;
    color: #8fb3c2;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #5a8494;
}

/* ===== Legal Pages ===== */
.legal-content {
    padding: 50px 0 60px;
}

.legal-content .lang-notice {
    background: #f0f7fa;
    border-left: 4px solid #1a5f7a;
    padding: 16px 20px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    border-radius: 0 8px 8px 0;
}

.legal-content .lang-notice a {
    color: #1a5f7a;
    font-weight: 700;
    text-decoration: underline;
}

.legal-content .update-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #1a5f7a;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f0f3;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

.legal-content a {
    color: #1a5f7a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0d3e52;
}

.legal-content .info-box {
    background: #f0f7fa;
    border-radius: 10px;
    padding: 24px;
    margin: 24px 0;
    border: 1px solid #d0e4ec;
}

.legal-content .info-box p {
    margin-bottom: 8px;
}

.legal-content .info-box p:last-child {
    margin-bottom: 0;
}

.legal-content .info-box strong {
    color: #1a5f7a;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.legal-table thead th {
    background: #1a5f7a;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-table tbody td {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #e8f0f3;
    vertical-align: top;
}

.legal-table tbody tr:nth-child(even) {
    background: #f7fbfc;
}

.legal-table tbody tr:hover {
    background: #eef5f8;
}

.legal-content .highlight-box {
    background: linear-gradient(135deg, #1a5f7a 0%, #0d3e52 100%);
    color: #fff;
    border-radius: 10px;
    padding: 24px;
    margin: 24px 0;
}

.legal-content .highlight-box p,
.legal-content .highlight-box li {
    color: rgba(255, 255, 255, 0.9);
}

.legal-content .highlight-box strong {
    color: #fff;
}

.legal-content .rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0 30px;
}

.legal-content .right-card {
    background: #f7fbfc;
    border: 1px solid #d0e4ec;
    border-radius: 10px;
    padding: 20px;
}

.legal-content .right-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 8px;
}

.legal-content .right-card p {
    font-size: 0.88rem;
    margin-bottom: 0;
    color: #555;
}

@media (max-width: 768px) {
    .legal-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .legal-content .rights-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-logo {
        max-width: 340px;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .codes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        padding: 16px;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 2px;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        width: 100%;
    }

    .lang-link {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-logo {
        max-width: 260px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .banner h2 {
        font-size: 1.3rem;
    }

    .banner {
        padding: 14px 0;
    }

    .faq-bg {
        background-position: center bottom;
        background-attachment: scroll;
    }

    .features {
        padding: 50px 0;
    }

    .reviews {
        padding: 50px 0;
    }

    .cta {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .service-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero-text h1 {
        font-size: 1.6rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .credential-item img {
        max-height: 80px;
    }

    .codes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 200px;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .banner h2 {
        font-size: 1.2rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d3e52;
    color: #fff;
    z-index: 9999;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-inner p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    min-width: 280px;
}

.cookie-banner-inner a {
    color: #e8f0f3;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.cookie-accept {
    background: #8b1a3a;
    color: #fff;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}

/* Hide SociableKit watermark */
.sk-ww-google-reviews .sk-ww-google-reviews-footer,
.sk-ww-google-reviews a[href*="sociablekit"] {
  display: none !important;
}
