:root {
    /* Logo-inspired: red (Benner) + dark blue (banners/gear) */
    --primary: #0b2741;
    --primary-soft: #0f3557;
    --accent: #c41e3a;
    --accent-strong: #a61a30;
    --accent-soft: #fef2f2;
    --text-main: #0f172a;
    --text-muted: #475569;
    --line: #cbd5e1;
    --bg: #f8fafc;
    --white: #ffffff;
    --bg-white: #ffffff;
    --whatsapp: #25d366;
    --whatsapp-hover: #1ebe5d;
    --shadow-soft: 0 4px 24px rgba(11, 39, 65, 0.08);
    --shadow-md: 0 12px 32px rgba(11, 39, 65, 0.12);
    --shadow-lg: 0 24px 48px rgba(11, 39, 65, 0.14);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    line-height: 1.65;
    background: var(--bg);
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.2;
    color: var(--text-main);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-icon {
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

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

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
}

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

.btn-email:hover {
    background: var(--primary-soft);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(203, 213, 225, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 100px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
}

.logo img,
.header .logo img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transform: scale(1.6);
    transform-origin: left center;
}

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.15rem;
}

.nav-list a,
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 0;
    background: transparent;
    color: var(--text-main);
    font: inherit;
    font-weight: 600;
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-chevron {
    transition: transform 0.2s ease;
    margin-top: 1px;
}

.has-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-list a:hover,
.nav-dropdown-toggle:hover,
.nav-list a:focus-visible,
.nav-dropdown-toggle:focus-visible {
    background: var(--accent-soft);
    color: var(--accent);
    outline: none;
}

.has-dropdown {
    position: relative;
}

/* Invisible bridge so hover doesn’t break between button and menu */
.has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
    display: none;
}

.has-dropdown.open::after {
    display: block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 2px;
    min-width: 260px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    list-style: none;
    display: none;
    box-shadow: var(--shadow-md);
    z-index: 100;
}

.has-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-main);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: var(--accent-soft);
    color: var(--accent);
    outline: none;
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: 10px;
    padding: 0.5rem 1rem !important;
    margin-left: 0.25rem;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--accent-strong) !important;
    color: var(--white) !important;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.header-call {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.header-call-icon {
    flex-shrink: 0;
}

.contact-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.menu-toggle {
    display: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    width: 46px;
    height: 42px;
    margin-left: auto;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero */
.hero {
    padding: 4rem 0 3rem;
    position: relative;
    min-height: 68vh;
    background: #e8f2ff;
    background-image: url("../assets/hero-benner.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(11, 39, 65, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
    padding-right: 8rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.hero-copy {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    box-shadow: 0 8px 32px rgba(11, 39, 65, 0.06);
}

.badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.hero-lead {
    font-size: 1.06rem;
    color: var(--text-muted);
    margin: 1.25rem 0 1.75rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-tips {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(203, 213, 225, 0.5);
}

.hero-tips .hero-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.hero-tips .hero-tip:last-child {
    margin-bottom: 0;
}

.hero-tips .hero-tip-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.15rem;
}

.hero-tips .hero-tip--contact .hero-tip-icon {
    color: #fff;
}

.hero-tips .hero-tip--contact .hero-tip-icon svg {
    width: 20px;
    height: 20px;
}

.hero-tips .hero-tip-icon--minus {
    color: var(--text-muted);
}

.hero-tips .hero-tip-icon--minus svg {
    width: 20px;
    height: 20px;
}

.hero-tips strong {
    color: var(--text-main);
}

.service-benefit-card {
    background: linear-gradient(165deg, rgba(11, 39, 65, 0.4) 0%, rgba(15, 53, 87, 0.45) 50%, rgba(19, 74, 117, 0.5) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #e8f2ff;
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2rem);
    box-shadow: 0 8px 32px rgba(11, 39, 65, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-benefit-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-contact-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e8f2ff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.hero-contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.hero-contact-icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.95);
}

.hero-contact-item--whatsapp .hero-contact-icon {
    color: #7ee68a;
}

.benefit-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-benefit-card h2 {
    color: var(--white);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.service-benefit-card p {
    color: #b8d4f0;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.benefit-list li {
    position: relative;
    padding-left: 1.35rem;
}

.benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7eb8e8;
}

/* Sections */
.summary-section {
    padding: 5rem 0;
    background: var(--white);
}

.flow-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f7ff 100%);
}

.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #f8fafc 100%);
}

.report-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fc 100%);
}

.text-area {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 3.5vw, 2.25rem);
    box-shadow: var(--shadow-soft);
}

.summary-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 360px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: #f1f5f9;
    margin: 0.75rem 0 1.25rem;
    display: block;
}

.summary-points {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.summary-points div {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1rem;
    background: #fafbff;
    transition: var(--transition);
}

.summary-points div:hover {
    border-color: #fecaca;
    box-shadow: var(--shadow-soft);
}

.summary-points strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.4rem;
}

.summary-points p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section-header {
    margin-bottom: 2.25rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Flow */
.flow-chart {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.flow-chart li {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    min-height: 220px;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(11, 39, 65, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flow-chart li:hover {
    border-color: #fecaca;
    box-shadow: 0 8px 24px rgba(11, 39, 65, 0.08);
    transform: translateY(-2px);
}

.flow-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.flow-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-weight: 800;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.flow-step-icon {
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.95;
}

.flow-chart li h3 {
    margin-bottom: 0.4rem;
}

.flow-chart li p {
    color: var(--text-muted);
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.flow-contact-box {
    margin-top: 1rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid #fecaca;
    border-radius: 10px;
    background: var(--accent-soft);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    width: 100%;
}

.flow-contact-box strong {
    color: var(--text-main);
    font-size: 0.88rem;
}

.flow-contact-box span {
    color: var(--text-muted);
}

.flow-contact-box a {
    font-weight: 600;
    color: var(--accent);
}

.flow-contact-box a:hover {
    text-decoration: underline;
}

.flow-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.flow-contact-icon {
    flex-shrink: 0;
    color: var(--accent);
}

.flow-contact-link--whatsapp .flow-contact-icon {
    color: #25d366;
}

.flow-contact-sep {
    color: var(--text-muted);
}

.flow-chart li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 6l6 6-6 6'/%3E%3C/svg%3E") center/28px no-repeat;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.35);
    z-index: 2;
    pointer-events: none;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(12, 45, 77, 0.04);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: #fecaca;
    box-shadow: var(--shadow-md);
}

.service-card p {
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.98rem;
}

.services-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* FAQ */
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text-main);
    list-style: none;
    padding-right: 1.5rem;
    position: relative;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0.75rem 0 0;
    color: var(--text-muted);
}

/* Report */
.report-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: clamp(1.5rem, 3.5vw, 2.25rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.report-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.contact-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-top: 1rem;
    margin-bottom: 0;
}

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

.contact-disclaimer a:hover {
    text-decoration: none;
}

.service-benefit-card .contact-disclaimer {
    color: rgba(232, 242, 255, 0.85);
}

.service-benefit-card .contact-disclaimer a {
    color: #fecaca;
}

.report-section .contact-disclaimer {
    text-align: center;
}

.contact-disclaimer--section {
    text-align: center;
    margin-top: 1.5rem;
}

.contact-disclaimer--flow {
    font-size: 0.75rem;
    margin-top: 1.25rem;
    text-align: center;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: 0 4px 20px rgba(12, 45, 77, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card-icon--whatsapp {
    color: #25d366;
}

.contact-card:hover {
    border-color: #fecaca;
    box-shadow: var(--shadow-soft);
}

.contact-link {
    font-weight: 700;
    color: var(--text-main);
}

.contact-link:hover {
    color: var(--accent);
}

.contact-card address {
    font-style: normal;
    color: var(--text-muted);
}

/* Contact section image */
.contact-section .section-header + .contact-image-wrap {
    margin: 0 auto 2rem;
    max-width: 900px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-section .contact-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary) 0%, #0a2439 100%);
    color: #b8d4f0;
    padding: 3.5rem 0 1.75rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-brand strong {
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

.footer-copy {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.25rem;
    font-size: 0.9rem;
}

/* Legal pages */
.legal-content {
    padding: 6rem 0;
    background-color: var(--bg-white);
    min-height: 60vh;
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.legal-content h4 {
    margin-top: 1.25rem;
    font-size: 1.05rem;
}

.legal-content ul {
    margin: 0.75rem 0 1rem 1.25rem;
}

.legal-content li {
    margin-bottom: 0.35rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .header-container {
        min-height: 96px;
    }

    .logo img,
    .header .logo img {
        height: 80px;
        transform: scale(1.5);
    }

    .nav-list a,
    .nav-dropdown-toggle {
        padding: 0.5rem;
        font-size: 0.92rem;
    }

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

    .flow-chart {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flow-chart li:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero .container {
        padding-right: 1.5rem;
    }

    .header-container {
        min-height: 88px;
        padding-left: 0;
    }

    .logo {
        max-width: min(340px, 72vw);
    }

    .logo img,
    .header .logo img {
        height: 90px;
        max-height: 90px;
        transform: scale(1.6);
        transform-origin: left center;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-actions {
        display: none;
    }

    .main-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% - 6px);
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-md);
        padding: 0.85rem;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav-list a,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .nav-cta {
        justify-content: center;
        text-align: center;
        margin-left: 0;
        margin-top: 0.25rem;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        box-shadow: none;
        border-radius: 10px;
        margin-top: 0.35rem;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .summary-points,
    .services-grid,
    .contact-grid,
    .flow-chart {
        grid-template-columns: 1fr;
    }

    .flow-chart li::after {
        display: none;
    }

    .report-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-benefit-card {
        background: linear-gradient(165deg, #0b2741 0%, #0f3557 50%, #134a75 100%);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@media (max-width: 600px) {
    .header-container {
        min-height: 80px;
    }

    .logo {
        max-width: min(300px, 68vw);
    }

    .logo img,
    .header .logo img {
        height: 80px;
        max-height: 80px;
        transform: scale(1.6);
    }

    .hero,
    .summary-section,
    .flow-section,
    .services-section,
    .faq-section,
    .report-section,
    .contact-section {
        padding: 3.5rem 0;
    }
}
