:root {
    --ink: #17211d;
    --muted: #66736d;
    --soft: #f5f7f2;
    --paper: #ffffff;
    --line: #dce3da;
    --forest: #184b35;
    --leaf: #2e7a4f;
    --gold: #c99a3d;
    --harbor: #28536b;
    --shadow: 0 24px 70px rgba(23, 33, 29, 0.12);
    --radius: 8px;
    --max: 1180px;
    --header: 78px;
    --font-ui: "Manrope", sans-serif;
    --font-display: "Source Serif 4", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--soft);
    color: var(--ink);
    font-family: var(--font-ui);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
iframe {
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2 {
    font-family: var(--font-display);
    letter-spacing: 0;
    line-height: 1.02;
}

h1 {
    font-size: clamp(3.1rem, 8vw, 7.4rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
    font-size: 1.08rem;
    line-height: 1.3;
}

#scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--leaf), var(--gold), var(--harbor));
    z-index: 1200;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled,
.site-header.nav-active {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--line);
    box-shadow: 0 16px 45px rgba(23, 33, 29, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(var(--max), calc(100% - 40px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-link img {
    display: block;
    width: min(220px, 52vw);
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link,
.mobile-link {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
}

.nav-link {
    position: relative;
    padding: 11px 15px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 7px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: 8px;
    border: 1px solid rgba(24, 75, 53, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
}

.mobile-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(23, 33, 29, 0.18);
    border-radius: 50%;
    background: var(--paper);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

#app-view {
    min-height: 70vh;
}

.page {
    background: var(--soft);
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.section.compact {
    padding: 80px 0;
}

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

.section.harbor {
    background: var(--harbor);
    color: var(--paper);
}

.section.harbor h2,
.section.harbor h3 {
    color: var(--paper);
}

.process-section {
    background: linear-gradient(180deg, #0f1f2e 0%, #162a3a 50%, #1a2f40 100%);
    color: var(--paper);
}

.process-section h2 {
    color: var(--paper);
}

.section-kicker {
    display: block;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.section-head {
    max-width: 780px;
    margin-bottom: 48px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-head p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.04rem;
}

.hero {
    position: relative;
    min-height: 82vh;
    padding: calc(var(--header) + 70px) 0 86px;
    display: flex;
    align-items: flex-end;
    color: var(--paper);
    isolation: isolate;
    overflow: hidden;
}

.hero::before,
.page-hero::before,
.inquiry-visual-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 28, 22, 0.82) 0%, rgba(12, 28, 22, 0.58) 45%, rgba(12, 28, 22, 0.18) 100%);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(245, 247, 242, 0) 0%, rgba(245, 247, 242, 0.6) 100%);
    z-index: -1;
}

.hero-image,
.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-content {
    width: min(860px, 100%);
}

.hero h1,
.hero p {
    color: var(--paper);
}

.hero p {
    width: min(680px, 100%);
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.03rem, 2vw, 1.26rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-socials a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--paper);
    line-height: 1;
    backdrop-filter: blur(14px);
}

.hero-socials a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1c1608;
    transform: translateY(-2px);
}

.page-hero {
    position: relative;
    min-height: 68vh;
    padding: calc(var(--header) + 92px) 0 92px;
    display: flex;
    align-items: flex-end;
    color: var(--paper);
    isolation: isolate;
    overflow: hidden;
}

.page-hero::before {
    background: linear-gradient(90deg, rgba(12, 28, 22, 0.84) 0%, rgba(12, 28, 22, 0.64) 48%, rgba(12, 28, 22, 0.18) 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(245, 247, 242, 0) 0%, rgba(245, 247, 242, 0.5) 100%);
    z-index: -1;
}

.page-hero-content {
    width: min(820px, 100%);
}

.page-hero-content h1,
.page-hero-content p {
    color: var(--paper);
}

.page-hero-content h1 {
    font-size: clamp(3rem, 6.5vw, 6.2rem);
}

.page-hero-content p {
    width: min(690px, 100%);
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.btn-primary {
    background: var(--gold);
    color: #1c1608;
    box-shadow: 0 18px 45px rgba(201, 154, 61, 0.24);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--paper);
    background: rgba(255, 255, 255, 0.1);
}

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

.trust-strip {
    transform: translateY(-34px);
    margin-bottom: -34px;
    position: relative;
    z-index: 3;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.trust-item {
    padding: 26px;
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;
    color: var(--forest);
    font-size: 1.45rem;
    line-height: 1;
}

.trust-item span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
    gap: 64px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
}

.copy-stack {
    display: grid;
    gap: 22px;
}

.copy-stack p,
.rich-copy p {
    color: var(--muted);
    font-size: 1.02rem;
}

.section.harbor.export-section {
    position: relative;
    overflow: hidden;
    background-color: #1B3B4E;
    padding: 6rem 0;
}

.export-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.export-glow-sky {
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.08);
}

.export-glow-amber {
    bottom: -10%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(245, 158, 11, 0.05);
    filter: blur(100px);
}

.export-container {
    position: relative;
    z-index: 1;
    align-items: center;
    gap: 4rem;
}

.export-frame {
    position: relative;
    flex: 1;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.export-frame-glow {
    position: absolute;
    inset: -4px;
    border-radius: 1.25rem;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.15), rgba(56, 189, 248, 0.05));
    filter: blur(8px);
    z-index: -1;
}

.export-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
    object-fit: cover;
}

.export-copy {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.export-copy h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.export-copy p {
    font-size: 1rem;
    line-height: 1.6;
    color: #CBD5E1;
    margin: 0;
}

.export-copy strong {
    color: #FFFFFF;
    font-weight: 600;
}

.product-portfolio-callout {
    border-left: 2px solid rgba(245, 158, 11, 0.4);
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.01);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.product-portfolio-callout strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #E2E8F0;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.product-portfolio-callout p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0;
}

.export-btn-wrap {
    padding-top: 0.5rem;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #F59E0B;
    color: #0F172A;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.1), 0 4px 6px -4px rgba(245, 158, 11, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.25), 0 10px 20px rgba(245, 158, 11, 0.15);
}

.btn-glass svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 250ms ease;
}

.btn-glass:hover svg {
    transform: translateX(4px);
}

.media-frame {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #e8ede6;
    box-shadow: var(--shadow);
}

.media-frame::before {
    content: "";
    display: block;
    padding-top: 72%;
}

.media-frame img,
.media-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

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

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

.service-card,
.value-card,
.product-card,
.office-card,
.faq-item,
.contact-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.service-card,
.value-card {
    padding: 28px;
}

.service-card span {
    color: var(--gold);
    font-weight: 900;
    font-size: 0.8rem;
}

.service-card h3 {
    margin: 18px 0 10px;
}

.service-card p,
.product-card p,
.office-card p,
.faq-item p {
    color: var(--muted);
}

.value-section {
    position: relative;
    overflow: hidden;
}

.value-bg-shape {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 122, 79, 0.12) 0%, rgba(201, 154, 61, 0.06) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.value-grid {
    gap: 32px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 16px !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    padding: 36px !important;
    transition: transform 320ms ease, box-shadow 320ms ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.value-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(46, 122, 79, 0.12), rgba(201, 154, 61, 0.1));
    color: var(--forest) !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid rgba(46, 122, 79, 0.15);
}

.gradient-text {
    margin: 20px 0 12px !important;
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    background: linear-gradient(135deg, var(--ink) 0%, var(--forest) 60%, var(--leaf) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card p {
    color: var(--muted) !important;
    font-size: 0.96rem;
    line-height: 1.7;
}

.legal-section {
    background: var(--paper);
}

.legal-split {
    grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.8fr);
    gap: 48px;
    align-items: stretch;
}

.legal-section .media-frame {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    min-height: 0;
}

.legal-section .media-frame::before {
    display: none;
}

.legal-section .media-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.legal-details {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: rgba(245, 247, 242, 0.7);
    border-radius: var(--radius);
    border-left: 3px solid var(--leaf);
}

.legal-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--leaf);
}

.legal-value {
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 500;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-line {
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15) 15%, rgba(46, 122, 79, 0.4) 50%, rgba(201, 154, 61, 0.4) 85%, transparent);
    z-index: 0;
}

.glass-dark {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px;
    transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.glass-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(46, 122, 79, 0.3), transparent 40%, transparent 60%, rgba(201, 154, 61, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 320ms ease;
}

.glass-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.12);
}

.glass-dark:hover::before {
    opacity: 1;
}

.process-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--leaf) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.glass-dark p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.65;
}

.category-block {
    margin-top: 70px;
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
}

.category-title h2 {
    font-family: var(--font-ui);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.category-title span {
    color: var(--muted);
    font-weight: 800;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-media {
    position: relative;
    background: #e6ebe3;
    overflow: hidden;
}

.product-media::before {
    content: "";
    display: block;
    padding-top: 76%;
}

.lazy-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 600ms ease, transform 900ms ease;
}

.lazy-img.loaded {
    opacity: 1;
    transform: scale(1);
}

.product-body {
    padding: 24px;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-meta span {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(46, 122, 79, 0.1);
    color: var(--forest);
    font-size: 0.72rem;
    font-weight: 900;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

.accordion-chevron {
    flex: 0 0 auto;
    color: var(--muted);
    transition: transform 300ms ease, color 300ms ease;
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
    color: var(--forest);
}

.accordion-content {
    display: none;
    padding-top: 14px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.accordion-content ul {
    margin: 0;
    padding-left: 18px;
}

.accordion-content li + li {
    margin-top: 8px;
}

.faq-section {
    background: linear-gradient(180deg, var(--soft) 0%, #eef1ec 100%);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(320px, 1fr);
    gap: 64px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-title {
    margin-top: 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.faq-subtitle {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.6;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 22px 26px;
    transition: background 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 34px;
    align-items: start;
}

.contact-panel {
    padding: 34px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfcfa;
    color: var(--ink);
    padding: 14px 15px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--leaf);
    box-shadow: 0 0 0 4px rgba(46, 122, 79, 0.12);
}

.office-stack {
    display: grid;
    gap: 20px;
}

.office-card {
    overflow: hidden;
}

.office-card-content {
    padding: 24px;
}

.map-frame {
    position: relative;
    min-height: 300px;
    background: #e8ede6;
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.inquiry-visual-section {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 110px 0;
    color: var(--paper);
    isolation: isolate;
    overflow: hidden;
    background: #15251f;
}

.inquiry-visual-section::before {
    z-index: -1;
    background: linear-gradient(90deg, rgba(10, 23, 18, 0.7) 0%, rgba(10, 23, 18, 0.28) 52%, rgba(10, 23, 18, 0.08) 100%);
}

.inquiry-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.inquiry-copy {
    width: min(560px, 100%);
    padding: 32px;
    background: rgba(10, 23, 18, 0.5);
    border-radius: var(--radius);
}

.inquiry-copy h2,
.inquiry-copy p {
    color: var(--paper);
}

.inquiry-copy p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
}

.inquiry-contact-info {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inquiry-contact-info a {
    color: var(--paper);
    font-size: 0.95rem;
    opacity: 0.85;
}

.inquiry-contact-info a:hover {
    opacity: 1;
    text-decoration: underline;
}

.inquiry-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.inquiry-panel {
    position: relative;
    isolation: isolate;
    background: var(--paper);
    border: 0;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

#page-loader {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    place-items: center;
    background: rgba(245, 247, 242, 0.76);
    backdrop-filter: blur(10px);
    opacity: 1;
    transition: opacity 180ms ease;
}

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-mark {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(24, 75, 53, 0.16);
    border-top-color: var(--forest);
    border-radius: 50%;
    animation: spin 780ms linear infinite;
}

.site-footer {
    background: #101815;
    color: rgba(255, 255, 255, 0.78);
    padding: 72px 0 28px;
}

.footer-grid {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 42px;
}

.footer-grid h3 {
    margin-bottom: 18px;
    color: var(--paper);
}

.footer-grid a,
.footer-grid p,
.footer-grid span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.68);
}

.footer-brand img {
    display: block;
    max-width: 220px;
    height: auto;
    margin-bottom: 16px;
    padding: 8px;
    background: var(--paper);
    border-radius: 6px;
}

.footer-brand p {
    color: var(--gold);
    font-weight: 900;
}

.footer-bottom {
    width: min(var(--max), calc(100% - 40px));
    margin: 46px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.86rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 200ms ease;
}

.footer-credit a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-socials a {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1c1608;
}

.testimonials-section {
    background-color: var(--soft);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    max-width: 650px;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.03);
}

.quote-icon {
    color: var(--gold);
    opacity: 0.15;
    margin-bottom: -1rem;
    width: 32px;
    height: 32px;
}

.testimonial-content {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 1.25rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 1.25rem;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.team-section {
    background-color: #122835;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.team-header h2 {
    color: #F8FAFC;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.team-header p {
    color: #94A3B8;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.team-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.member-photo-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1 / 1.1;
    margin-bottom: 1.5rem;
    background-color: #0f1f2a;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .member-photo {
    transform: scale(1.04);
    filter: brightness(0.85);
}

.member-social-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 60%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .member-social-overlay {
    opacity: 1;
}

.social-btn-container {
    display: flex;
    gap: 0.75rem;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .social-btn-container {
    transform: translateY(0);
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0F172A;
    transform: translateY(-3px);
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.member-meta h3 {
    color: #F8FAFC;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .member-meta h3 {
    color: var(--gold);
}

.member-role {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.member-bio {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.6;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.floating-overlay {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.scroll-top-btn {
    background: var(--forest, #1B3B4E);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
