/* SEA TalentAcq – Premium B2B Corporate Website */
:root {
    --navy-950: #061426;
    --navy-900: #0a1931;
    --navy-800: #102a4c;
    --navy-700: #16385f;
    --gold-500: #d6a735;
    --gold-400: #e6bd5a;
    --gold-100: #fbf3dd;
    --ink: #152235;
    --muted: #5d6978;
    --line: #dfe5ec;
    --surface: #ffffff;
    --surface-soft: #f5f7fa;
    --surface-warm: #fbfaf7;
    --success: #157347;
    --shadow-sm: 0 10px 30px rgba(7, 24, 46, 0.08);
    --shadow-md: 0 24px 70px rgba(7, 24, 46, 0.14);
    --shadow-lg: 0 35px 90px rgba(7, 24, 46, 0.22);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1220px;
    --ease: 280ms cubic-bezier(.2,.7,.2,1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.section {
    padding: 110px 0;
}

.section-sm {
    padding: 72px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-dark {
    background:
        radial-gradient(circle at 82% 18%, rgba(214, 167, 53, .16), transparent 32%),
        linear-gradient(140deg, var(--navy-950), var(--navy-800));
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-500);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 44px;
}

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

h1,
h2,
h3,
h4 {
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
    line-height: 1.12;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 780;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 750;
}

.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.section-dark .lead,
.section-dark p {
    color: rgba(255, 255, 255, .76);
}

/* Navigation */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}

.navbar-inner {
    width: min(calc(100% - 40px), 1320px);
    min-height: 92px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.navbar.scrolled,
.navbar.solid {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(7, 24, 46, .08);
}

.navbar.scrolled .navbar-inner,
.navbar.solid .navbar-inner {
    min-height: 76px;
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 245px;
    min-height: 74px;
}

.brand img {
    position: absolute;
    inset: 50% auto auto 0;
    width: 245px;
    height: auto;
    transform: translateY(-50%);
    transition: opacity var(--ease), transform var(--ease);
}

.brand-logo-light { opacity: 1; }
.brand-logo-dark { opacity: 0; }

.navbar.scrolled .brand-logo-light,
.navbar.solid .brand-logo-light { opacity: 0; }

.navbar.scrolled .brand-logo-dark,
.navbar.solid .brand-logo-dark { opacity: 1; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    transition: color var(--ease);
}

.navbar.scrolled .nav-links a,
.navbar.solid .nav-links a {
    color: var(--navy-900);
}

.nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    transform: scaleX(0);
    background: var(--gold-500);
    transform-origin: left;
    transition: transform var(--ease);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--gold-500);
    color: var(--navy-950) !important;
    box-shadow: 0 10px 24px rgba(214, 167, 53, .24);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
}

.navbar.scrolled .menu-toggle,
.navbar.solid .menu-toggle {
    color: var(--navy-900);
    border-color: var(--line);
    background: #fff;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle span {
    position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    min-height: 880px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--navy-950);
}

.hero-media,
.page-hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img,
.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 16, 31, .94) 0%, rgba(4, 16, 31, .76) 46%, rgba(4, 16, 31, .18) 100%),
        linear-gradient(0deg, rgba(4, 16, 31, .30), transparent 46%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 110px;
}

.hero-copy {
    max-width: 850px;
}

.hero h1 {
    max-width: 980px;
    color: #fff;
}

.hero h1 span {
    color: var(--gold-400);
}

.hero-subtitle {
    max-width: 760px;
    margin-top: 28px;
    color: rgba(255,255,255,.82);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border var(--ease);
}

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

.btn-primary {
    background: var(--gold-500);
    color: var(--navy-950);
    box-shadow: 0 16px 32px rgba(214, 167, 53, .28);
}

.btn-primary:hover {
    background: var(--gold-400);
    box-shadow: 0 22px 42px rgba(214, 167, 53, .36);
}

.btn-secondary {
    background: var(--navy-900);
    color: #fff;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .38);
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.btn-light {
    background: #fff;
    color: var(--navy-900);
}

.btn-icon {
    font-size: 1.1em;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-top: 44px;
    color: rgba(255,255,255,.74);
    font-size: .93rem;
    font-weight: 700;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero-proof span::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(214, 167, 53, .18);
    color: var(--gold-400);
    font-size: .8rem;
}

.hero-panel {
    position: absolute;
    right: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 58px;
    z-index: 3;
    width: min(390px, calc(100vw - 40px));
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-md);
    background: rgba(8, 26, 49, .70);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.hero-panel-label {
    color: var(--gold-400);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-panel h3 {
    margin: 10px 0 12px;
    color: #fff;
    font-size: 1.35rem;
}

.hero-panel p {
    color: rgba(255,255,255,.73);
    font-size: .95rem;
}

/* Stats */
.stats-wrap {
    position: relative;
    z-index: 4;
    margin-top: -48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(10,25,49,.08);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.stat {
    min-height: 166px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    color: var(--navy-900);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.stat span {
    margin-top: 12px;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 650;
}

/* Layouts */
.split {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 78px;
    align-items: center;
}

.image-frame {
    position: relative;
    min-height: 560px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.image-badge {
    position: absolute;
    left: -36px;
    bottom: 38px;
    max-width: 270px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--navy-900);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.image-badge strong {
    display: block;
    color: var(--gold-400);
    font-size: 1.6rem;
}

.image-badge span {
    color: rgba(255,255,255,.72);
    font-size: .9rem;
}

.check-list {
    display: grid;
    gap: 18px;
    margin-top: 30px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 38px;
    color: var(--ink);
    font-weight: 650;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--gold-100);
    color: #9b7114;
    font-size: .78rem;
    font-weight: 900;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card,
.service-card,
.industry-card {
    position: relative;
    min-height: 100%;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.feature-card:hover,
.service-card:hover,
.industry-card:hover {
    transform: translateY(-7px);
    border-color: rgba(214,167,53,.55);
    box-shadow: var(--shadow-md);
}

.card-number {
    margin-bottom: 30px;
    color: var(--gold-500);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .15em;
}

.card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--gold-100);
    color: var(--navy-900);
    font-size: 1.45rem;
}

.feature-card h3,
.service-card h3,
.industry-card h3 {
    margin-bottom: 14px;
    color: var(--navy-900);
}

.feature-card p,
.service-card p,
.industry-card p {
    color: var(--muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--navy-900);
    font-weight: 800;
}

.card-link::after {
    content: "→";
    transition: transform var(--ease);
}

.card-link:hover::after {
    transform: translateX(5px);
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.process-step {
    position: relative;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.06);
}

.process-step::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -19px;
    width: 20px;
    height: 1px;
    background: rgba(230,189,90,.55);
}

.process-step:last-child::after { display: none; }

.step-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border: 1px solid rgba(230,189,90,.38);
    border-radius: 50%;
    color: var(--gold-400);
    font-weight: 900;
}

.process-step h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.08rem;
}

.process-step p {
    font-size: .9rem;
}

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

.location-card {
    position: relative;
    min-height: 510px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms ease;
}

.location-card:hover img {
    transform: scale(1.045);
}

.location-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5,20,38,.9) 0%, rgba(5,20,38,.12) 65%);
}

.location-content {
    position: absolute;
    z-index: 2;
    left: 34px;
    right: 34px;
    bottom: 32px;
    color: #fff;
}

.location-content h3 {
    margin-bottom: 7px;
    color: #fff;
    font-size: 2rem;
}

.location-content p {
    color: rgba(255,255,255,.74);
}

/* CEO */
.ceo-section {
    background: var(--surface-warm);
}

.ceo-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 70px;
    align-items: center;
}

.ceo-photo {
    position: relative;
}

.ceo-photo::before {
    content: "";
    position: absolute;
    inset: 28px -28px -28px 28px;
    border-radius: var(--radius-lg);
    background: var(--gold-100);
}

.ceo-photo img {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.quote {
    margin: 28px 0;
    padding-left: 26px;
    border-left: 3px solid var(--gold-500);
    color: var(--navy-900);
    font-size: clamp(1.25rem, 2.3vw, 1.75rem);
    font-weight: 750;
    line-height: 1.45;
}

.person-name {
    color: var(--navy-900);
    font-weight: 850;
}

.person-role {
    color: var(--muted);
    font-size: .92rem;
}

/* CTA */
.cta-box {
    position: relative;
    padding: 72px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 85% 20%, rgba(214,167,53,.28), transparent 34%),
        linear-gradient(135deg, var(--navy-950), var(--navy-700));
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cta-box::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-copy {
    max-width: 720px;
}

.cta-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-copy p {
    margin-top: 18px;
    color: rgba(255,255,255,.74);
}

/* Page hero */
.page-hero {
    position: relative;
    min-height: 540px;
    display: grid;
    align-items: end;
    padding: 170px 0 86px;
    overflow: hidden;
    background: var(--navy-950);
    color: #fff;
}

.page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,16,31,.94), rgba(4,16,31,.42));
}

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

.page-hero h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero p {
    max-width: 720px;
    margin-top: 20px;
    color: rgba(255,255,255,.78);
    font-size: 1.2rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 54px;
    align-items: start;
}

.contact-card {
    padding: 38px;
    border-radius: var(--radius-md);
    background: var(--navy-900);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    color: #fff;
    margin-bottom: 18px;
}

.contact-card p {
    color: rgba(255,255,255,.72);
}

.contact-items {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(214,167,53,.15);
    color: var(--gold-400);
}

.contact-item strong {
    display: block;
    color: #fff;
    font-size: .92rem;
}

.contact-item a,
.contact-item span {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
}

.contact-form {
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

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

.field-full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-900);
    font-size: .9rem;
    font-weight: 800;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border var(--ease), box-shadow var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(214,167,53,.13);
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: .84rem;
}

.privacy-check input {
    width: 17px;
    height: 17px;
    margin-top: 3px;
}

.form-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: .82rem;
}

/* Legal */
.legal-content {
    max-width: 920px;
}

.legal-content h2 {
    margin: 48px 0 14px;
    font-size: 1.85rem;
}

.legal-content h3 {
    margin: 30px 0 10px;
    font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
}

.legal-content ul {
    padding-left: 22px;
}

.notice {
    padding: 20px 24px;
    border-left: 4px solid var(--gold-500);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--gold-100);
    color: #6b5214;
}

/* Form utilities */
.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer */
.footer {
    padding: 76px 0 28px;
    background: var(--navy-950);
    color: rgba(255,255,255,.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .8fr 1fr;
    gap: 48px;
    padding-bottom: 54px;
}

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

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

.footer-about p {
    max-width: 380px;
    margin-top: 22px;
    font-size: .92rem;
}

.footer h4 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-links {
    display: grid;
    gap: 11px;
    list-style: none;
}

.footer-links a {
    font-size: .9rem;
    transition: color var(--ease);
}

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

.footer-contact {
    display: grid;
    gap: 12px;
    font-size: .9rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .82rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 990;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 16px 34px rgba(37,211,102,.35);
    font-size: .8rem;
    letter-spacing: -.04em;
    font-weight: 900;
    transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px rgba(37,211,102,.45);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
    .nav-links { gap: 18px; }
    .nav-links a { font-size: .86rem; }
    .brand { width: 205px; min-height: 64px; }
    .brand img { width: 205px; }
    .hero-panel { display: none; }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .process-step::after { display: none; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 1040px) {
    .section { padding: 84px 0; }
    .menu-toggle { display: inline-flex; }
    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(360px, 88vw);
        padding: 112px 28px 36px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(6,20,38,.98);
        transform: translateX(100%);
        transition: transform var(--ease);
        box-shadow: -20px 0 50px rgba(0,0,0,.2);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,.1); }
    .nav-links a,
    .navbar.scrolled .nav-links a,
    .navbar.solid .nav-links a {
        display: block;
        padding: 18px 4px;
        color: #fff;
        font-size: 1rem;
    }
    .nav-links .nav-cta {
        margin-top: 18px;
        text-align: center;
    }
    .hero { min-height: 760px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .split,
    .ceo-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .split { gap: 52px; }
    .image-badge { left: 24px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .location-card { min-height: 430px; }
    .cta-content { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .navbar-inner { width: calc(100% - 28px); min-height: 78px; }
    .brand { width: 178px; min-height: 58px; }
    .brand img { width: 178px; }
    .hero { min-height: 720px; }
    .hero-content { padding-top: 80px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-proof { display: grid; gap: 12px; }
    .stats-wrap { margin-top: -24px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat { min-height: 132px; border-right: 0; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: 0; }
    .cards-grid,
    .process-grid,
    .location-grid,
    .form-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .image-frame,
    .image-frame img { min-height: 420px; }
    .image-badge { left: 14px; right: 14px; bottom: 14px; max-width: none; }
    .location-card { min-height: 390px; }
    .cta-box { padding: 44px 26px; }
    .contact-form { padding: 28px 22px; }
    .field-full { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}


/* Bilingual navigation and WhatsApp brand enhancements */
.nav-links { gap: 18px; }
.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}
.navbar.scrolled .language-switch,
.navbar.solid .language-switch {
    border-color: var(--line);
    background: var(--surface-soft);
}
.language-switch a,
.navbar.scrolled .language-switch a,
.navbar.solid .language-switch a {
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 32px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .06em;
}
.language-switch a::after { display: none !important; }
.language-switch a.active {
    background: var(--gold-500);
    color: var(--navy-950) !important;
}
.whatsapp-float img { width: 30px; height: 30px; }
.btn-whatsapp { background: #25d366; color: #071a10; }
.btn-whatsapp:hover { background: #39df77; }
.btn-whatsapp img { width: 22px; height: 22px; }
.inline-link { color: var(--navy-900); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.notice strong { color: inherit; }
.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 2000;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-weight: 800;
    transition: top var(--ease);
}
.skip-link:focus { top: 16px; }
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
@media (max-width: 1040px) {
    .language-switch {
        margin-top: 18px;
        justify-content: center;
        border-color: rgba(255,255,255,.22);
    }
    .nav-links li.language-switch { border-bottom: 0; }
    .language-switch a,
    .navbar.scrolled .language-switch a,
    .navbar.solid .language-switch a {
        display: grid;
        padding: 0 12px;
        color: #fff;
    }
}


/* ============================================================
   SEA TalentAcq – Premium visual upgrade 2026
   ============================================================ */
:root {
    --gold-glow: rgba(214,167,53,.24);
    --navy-glass: rgba(6,20,38,.78);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(10,25,49,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,25,49,.018) 1px, transparent 1px);
    background-size: 42px 42px;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 79% 24%, rgba(230,189,90,.18), transparent 25%),
        linear-gradient(115deg, transparent 0 62%, rgba(255,255,255,.035) 62.2%, transparent 62.4%);
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    right: -11vw;
    top: -18vw;
    width: 46vw;
    height: 46vw;
    z-index: 1;
    border: 1px solid rgba(230,189,90,.18);
    border-radius: 50%;
    pointer-events: none;
}

.hero-media img,
.page-hero-media img,
.image-frame img,
.location-card img {
    filter: saturate(.82) contrast(1.055) brightness(.94);
}

.section-heading h2::after,
.partner-heading h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 22px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold-500), rgba(214,167,53,.15));
}

.section-heading.center h2::after {
    margin-inline: auto;
}

.hero-trust-card {
    width: min(420px, calc(100vw - 40px));
    padding: 30px;
    border-color: rgba(255,255,255,.2);
    background: linear-gradient(155deg, rgba(8,26,49,.88), rgba(8,26,49,.64));
    box-shadow: 0 34px 90px rgba(2,11,22,.45), inset 0 1px rgba(255,255,255,.08);
}

.hero-panel-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-400);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.status-dot {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #5bd38c;
    box-shadow: 0 0 0 6px rgba(91,211,140,.12);
}

.hero-panel-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    list-style: none;
}

.hero-panel-list li {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.11);
}

.hero-panel-list strong {
    color: #fff;
    font-size: .92rem;
}

.hero-panel-list span {
    color: rgba(255,255,255,.68);
    font-size: .86rem;
}

.hero-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 17px;
    color: var(--gold-400);
    font-weight: 800;
    font-size: .9rem;
}

.hero-panel-link span { transition: transform var(--ease); }
.hero-panel-link:hover span { transform: translateX(5px); }

.stats-grid {
    background: linear-gradient(180deg, #fff, #fbfcfd);
}

.stat {
    position: relative;
    overflow: hidden;
}

.stat::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    transform: scaleX(0);
    transition: transform 500ms ease;
}

.stat:hover::after { transform: scaleX(1); }
.stat strong { color: var(--gold-500); font-size: clamp(2.3rem, 3.5vw, 3.8rem); }
.stat span { max-width: 220px; }

.partner-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(214,167,53,.11), transparent 31%),
        linear-gradient(180deg, #fff, #f8fafc);
    border-top: 1px solid rgba(10,25,49,.06);
    border-bottom: 1px solid rgba(10,25,49,.06);
}

.partner-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 40px;
}

.partner-heading h2 { font-size: clamp(2rem, 3.4vw, 3.4rem); }
.partner-heading > p { color: var(--muted); font-size: 1.08rem; max-width: 540px; }

.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.partner-logo-card {
    position: relative;
    display: grid;
    align-content: center;
    min-height: 230px;
    padding: 28px 30px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.partner-logo-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--navy-800));
    transform: scaleX(.18);
    transform-origin: left;
    transition: transform var(--ease);
}

.partner-logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214,167,53,.48);
    box-shadow: var(--shadow-md);
}
.partner-logo-card:hover::before { transform: scaleX(1); }
.partner-logo-card img { width: 100%; height: 126px; object-fit: contain; }
.partner-logo-card span {
    display: block;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
}
.partner-note { margin-top: 18px; color: var(--muted); font-size: .82rem; text-align: right; }

.ceo-premium {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(214,167,53,.22), transparent 31%),
        linear-gradient(140deg, var(--navy-950), var(--navy-800));
    color: #fff;
}

.ceo-premium::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -250px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
}

.ceo-premium .ceo-grid { position: relative; z-index: 2; }
.ceo-premium h2,
.ceo-premium .person-name { color: #fff; }
.ceo-premium .quote { color: #fff; border-left-color: var(--gold-400); }
.ceo-premium .lead,
.ceo-premium .person-role { color: rgba(255,255,255,.68); }
.ceo-premium .ceo-photo::before { background: linear-gradient(135deg, var(--gold-500), rgba(214,167,53,.12)); }
.ceo-premium .ceo-photo img { filter: saturate(.82) contrast(1.06); }

.leadership-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
    margin-top: 30px;
}

.leadership-points > div {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.055);
}

.leadership-points strong { display: block; color: var(--gold-400); }
.leadership-points span { display: block; margin-top: 6px; color: rgba(255,255,255,.68); font-size: .86rem; }
.leadership-name {
    margin-top: 26px;
    color: rgba(255,255,255,.9);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-style: italic;
    letter-spacing: .02em;
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
    background: linear-gradient(180deg, rgba(6,20,38,.03), rgba(6,20,38,.15));
}

.footer {
    background:
        radial-gradient(circle at 84% 0%, rgba(214,167,53,.16), transparent 26%),
        linear-gradient(150deg, #061426, #0a1931 68%, #102a4c);
}

.footer-topline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 0 27px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.58);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.footer-topline strong { color: var(--gold-400); font-weight: 800; }
.footer-grid-premium { grid-template-columns: 1.35fr .9fr .9fr .75fr; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.footer-badges span {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    color: rgba(255,255,255,.7);
    font-size: .72rem;
    font-weight: 750;
}

.whatsapp-float {
    width: auto;
    min-width: 64px;
    padding: 0 18px;
    gap: 10px;
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(22,124,68,.34);
}
.whatsapp-label { white-space: nowrap; font-size: .83rem; font-weight: 850; color: #052710; }

.reveal { transition-duration: 720ms; }
.reveal:nth-child(2) { transition-delay: 70ms; }
.reveal:nth-child(3) { transition-delay: 140ms; }
.reveal:nth-child(4) { transition-delay: 210ms; }

@media (max-width: 1100px) {
    .partner-heading { grid-template-columns: 1fr; gap: 18px; }
    .footer-grid-premium { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
    .partner-logos, .leadership-points { grid-template-columns: 1fr; }
    .footer-topline { flex-direction: column; gap: 8px; }
    .partner-logo-card { min-height: 205px; }
    .partner-logo-card img { height: 108px; }
}

@media (max-width: 640px) {
    .partner-heading { margin-bottom: 28px; }
    .partner-logo-card { padding: 22px 20px; }
    .partner-note { text-align: left; }
    .footer-grid-premium { grid-template-columns: 1fr; }
    .whatsapp-float { width: 56px; min-width: 56px; padding: 0; }
    .whatsapp-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-media img, .page-hero-media img { transform: none !important; }
}


/* Compact WhatsApp button and original partner images — final overrides */
.whatsapp-float {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
    display: grid;
    place-items: center;
    gap: 0;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(22,124,68,.28);
}

.whatsapp-float img {
    width: 25px;
    height: 25px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 30px rgba(22,124,68,.38);
}

.whatsapp-label {
    position: absolute;
    right: 60px;
    top: 50%;
    width: max-content;
    max-width: min(260px, calc(100vw - 100px));
    padding: 8px 11px;
    border-radius: 9px;
    background: var(--navy-950);
    color: #fff;
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.25;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transform: translate(6px, -50%);
    transition: opacity var(--ease), transform var(--ease);
    box-shadow: var(--shadow-sm);
}

.whatsapp-float:hover .whatsapp-label,
.whatsapp-float:focus-visible .whatsapp-label {
    opacity: 1;
    transform: translate(0, -50%);
}

.partner-logo-card img {
    width: 100%;
    height: 132px;
    object-fit: contain;
    object-position: center;
}


.partner-logo-card img[src*="partner-study-germany"] {
    max-width: 360px;
    margin-inline: auto;
}

@media (max-width: 640px) {
    .whatsapp-float {
        width: 46px;
        min-width: 46px;
        height: 46px;
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float img {
        width: 23px;
        height: 23px;
    }

    .whatsapp-label {
        display: none;
    }

    .partner-logo-card img {
        height: 112px;
    }
}


/* ==============================================================
   Premium visual refinement — final 10/10 edition
   Uses only original user-provided partner artwork.
   ============================================================== */
:root {
    --shadow-premium: 0 28px 80px rgba(6, 20, 38, .14);
    --shadow-premium-dark: 0 35px 100px rgba(2, 11, 22, .38);
}

body {
    background: linear-gradient(180deg, #ffffff 0%, #fdfefe 55%, #fafbfd 100%);
}

h1, h2 {
    text-wrap: balance;
}

.section { padding: 124px 0; }
.section-sm { padding: 88px 0; }

/* Navigation: cleaner spacing and a more polished CTA */
.navbar-inner { max-width: 1360px; }
.nav-links { gap: 20px; }
.nav-cta {
    min-height: 46px;
    padding-inline: 22px;
    box-shadow: 0 12px 28px rgba(214, 167, 53, .22);
}
.language-switch {
    padding: 3px;
    border-color: rgba(255,255,255,.22);
    box-shadow: inset 0 1px rgba(255,255,255,.08);
}

/* Hero: stronger visual hierarchy, premium trust strip, calmer spacing */
.hero { min-height: 920px; }
.hero-content {
    padding-top: 132px;
    padding-bottom: 154px;
}
.hero-copy { max-width: 810px; }
.hero-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-bottom: 20px;
}
.hero-topline .eyebrow { margin-bottom: 0; }
.hero-location-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.78);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.hero h1 {
    max-width: 900px;
    font-size: clamp(3.35rem, 6.5vw, 6.35rem);
    line-height: 1.035;
    letter-spacing: -.052em;
}
.hero-subtitle {
    max-width: 730px;
    margin-top: 30px;
    color: rgba(255,255,255,.84);
    line-height: 1.65;
}
.hero-actions { margin-top: 34px; }
.hero-proof-premium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 790px;
    gap: 0;
    margin-top: 38px;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(8,26,49,.66), rgba(255,255,255,.055));
    box-shadow: inset 0 1px rgba(255,255,255,.07), 0 18px 50px rgba(2,11,22,.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.hero-proof-premium .hero-proof-item {
    min-height: 66px;
    padding: 13px 16px;
    border-right: 1px solid rgba(255,255,255,.11);
    line-height: 1.42;
}
.hero-proof-premium .hero-proof-item:last-child { border-right: 0; }
.hero-proof-premium .hero-proof-item::before {
    flex: 0 0 auto;
    margin-top: 1px;
    background: rgba(214,167,53,.17);
    box-shadow: inset 0 0 0 1px rgba(230,189,90,.2);
}
.hero-support-line {
    margin-top: 14px;
    color: rgba(255,255,255,.55);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .035em;
}
.hero-trust-card {
    right: max(28px, calc((100vw - var(--container)) / 2));
    bottom: 82px;
    width: min(410px, calc(100vw - 40px));
    padding: 34px 30px 28px;
    border-radius: 26px;
    box-shadow: var(--shadow-premium-dark), inset 0 1px rgba(255,255,255,.1);
}
.hero-panel-seal {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid rgba(230,189,90,.22);
    border-radius: 999px;
    background: rgba(214,167,53,.1);
    color: var(--gold-400);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

/* Statistics now read as a premium trust bar rather than four boxes */
.stats-wrap { margin-top: -64px; }
.stats-grid {
    border: 1px solid rgba(10,25,49,.075);
    border-radius: 28px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 30px 90px rgba(7,24,46,.14);
    backdrop-filter: blur(12px);
}
.stat {
    min-height: 190px;
    padding: 37px 34px 34px;
}
.stat-kicker {
    display: block;
    margin-bottom: 13px;
    color: #8b6a18;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.stat strong {
    font-size: clamp(2.45rem, 3.55vw, 3.85rem);
    letter-spacing: -.055em;
}
.stat span:not(.stat-kicker) {
    max-width: 235px;
    margin-top: 13px;
    line-height: 1.5;
}

/* Cards: slightly calmer shadows and a thin premium accent */
.feature-card,
.service-card,
.industry-card {
    border-radius: 24px;
    box-shadow: 0 10px 34px rgba(7,24,46,.055);
}
.feature-card::after,
.service-card::after,
.industry-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), rgba(214,167,53,0));
    opacity: .5;
}
.feature-card:hover,
.service-card:hover,
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 68px rgba(7,24,46,.13);
}

/* Cooperation partners: original logos, optically balanced and larger */
.partner-showcase {
    padding: 102px 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(214,167,53,.12), transparent 30%),
        radial-gradient(circle at 92% 100%, rgba(16,42,76,.07), transparent 30%),
        linear-gradient(180deg, #fff, #f7f9fc);
}
.partner-heading {
    margin-bottom: 48px;
    align-items: center;
}
.partner-heading > p { line-height: 1.75; }
.partner-logos { gap: 28px; }
.partner-logo-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 55px rgba(7,24,46,.08);
}
.partner-logo-card::before { height: 4px; }
.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}
.partner-card-tag {
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 30px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid rgba(10,25,49,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    color: var(--navy-800);
    box-shadow: 0 6px 18px rgba(7,24,46,.06);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.partner-logo-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 205px;
    padding: 34px 32px 24px;
    border: 1px solid rgba(10,25,49,.065);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}
.partner-logo-stage img {
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 145px;
    object-fit: contain;
    filter: none !important;
}
.partner-logo-stage img[src*="partner-study-germany"] {
    max-width: 72%;
    max-height: 160px;
}
.partner-card-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    flex: 1;
    padding: 22px 12px 6px;
}
.partner-card-copy {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: var(--ink) !important;
    font-size: .94rem !important;
    font-weight: 760 !important;
    line-height: 1.55;
}
.partner-card-arrow {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-100);
    color: var(--navy-900);
    font-size: 1.05rem;
    font-weight: 900;
    transition: transform var(--ease), background var(--ease);
}
.partner-logo-card:hover .partner-card-arrow {
    transform: translate(2px,-2px);
    background: var(--gold-400);
}
.partner-note {
    margin-top: 22px;
    color: #737d89;
    text-align: center;
}
.partner-intro-grid { gap: 88px; }

/* Location images receive clearer editorial hierarchy */
.location-card { border-radius: 30px; }
.location-card::after {
    background: linear-gradient(0deg, rgba(5,20,38,.94) 0%, rgba(5,20,38,.2) 67%);
}
.location-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--gold-400);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.location-content { bottom: 36px; }

/* CEO section: editorial portrait treatment without altering the supplied photo */
.ceo-premium { padding: 136px 0; }
.ceo-grid-premium {
    grid-template-columns: minmax(320px, .76fr) minmax(0, 1.24fr);
    gap: 94px;
}
.ceo-premium .ceo-photo {
    width: min(100%, 465px);
    margin-inline: auto;
}
.ceo-premium .ceo-photo::before {
    inset: 24px -24px -24px 24px;
    border-radius: 32px;
}
.ceo-premium .ceo-photo img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    box-shadow: 0 34px 90px rgba(2,11,22,.4);
}
.ceo-photo-caption {
    position: absolute;
    z-index: 3;
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(6,20,38,.72);
    color: rgba(255,255,255,.88);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .075em;
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}
.ceo-photo-caption-light { background: rgba(6,20,38,.78); }
.ceo-copy-premium { max-width: 720px; }
.ceo-premium .quote {
    max-width: 700px;
    margin: 34px 0 26px;
    padding-left: 30px;
    font-size: clamp(1.32rem, 2.2vw, 1.85rem);
}
.leadership-points > div {
    padding: 20px;
    border-radius: 18px;
    box-shadow: inset 0 1px rgba(255,255,255,.035);
}

/* CTA: more breathing room and a more tactile button */
.cta-box {
    padding: 80px;
    border-radius: 32px;
}
.cta-box .btn-primary { box-shadow: 0 18px 42px rgba(214,167,53,.3); }

/* Smaller, quieter WhatsApp action */
.whatsapp-float {
    width: 46px;
    min-width: 46px;
    height: 46px;
    right: 18px;
    bottom: 18px;
    border: 2px solid rgba(255,255,255,.94);
    box-shadow: 0 10px 26px rgba(22,124,68,.25);
}
.whatsapp-float img { width: 23px; height: 23px; }
.whatsapp-label { right: 56px; }

/* Page heroes and general image framing */
.page-hero { min-height: 570px; padding-bottom: 92px; }
.page-hero-content { max-width: 960px; }
.image-frame img { border-radius: 30px; }
.image-frame::after { border-radius: 30px; }

@media (max-width: 1120px) {
    .hero { min-height: 800px; }
    .hero-content { padding-bottom: 120px; }
    .hero-proof-premium { max-width: 820px; }
    .ceo-grid-premium { gap: 60px; }
}

@media (max-width: 1040px) {
    .section { padding: 94px 0; }
    .section-sm { padding: 72px 0; }
    .hero { min-height: 790px; }
    .hero-content { padding-top: 112px; padding-bottom: 120px; }
    .stats-wrap { margin-top: -42px; }
    .partner-showcase { padding: 82px 0; }
    .ceo-premium { padding: 100px 0; }
    .ceo-grid-premium { grid-template-columns: 1fr; }
    .ceo-copy-premium { max-width: 780px; }
    .partner-intro-grid { gap: 54px; }
}

@media (max-width: 820px) {
    .hero-proof-premium { grid-template-columns: 1fr; padding: 5px; }
    .hero-proof-premium .hero-proof-item {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .hero-proof-premium .hero-proof-item:last-child { border-bottom: 0; }
    .partner-logo-card { min-height: 310px; }
    .partner-logo-stage { height: 190px; }
    .cta-box { padding: 58px 42px; }
}

@media (max-width: 640px) {
    .section { padding: 78px 0; }
    .section-sm { padding: 62px 0; }
    .hero { min-height: 790px; }
    .hero-content { padding-top: 96px; padding-bottom: 86px; }
    .hero-topline { gap: 11px; margin-bottom: 17px; }
    .hero-location-chip { min-height: 27px; font-size: .63rem; }
    .hero h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
    .hero-subtitle { margin-top: 23px; font-size: 1.06rem; }
    .hero-proof-premium { margin-top: 28px; border-radius: 18px; }
    .hero-proof-premium .hero-proof-item { padding: 11px 13px; font-size: .81rem; }
    .hero-support-line { font-size: .71rem; line-height: 1.5; }
    .stats-wrap { margin-top: -26px; }
    .stats-grid { border-radius: 22px; }
    .stat { min-height: 145px; padding: 28px; }
    .partner-showcase { padding: 68px 0; }
    .partner-logo-card { min-height: 286px; padding: 14px; border-radius: 22px; }
    .partner-card-tag { top: 23px; left: 23px; }
    .partner-logo-stage { height: 172px; padding: 36px 20px 20px; border-radius: 16px; }
    
    .partner-logo-stage img[src*="partner-study-germany"] { max-width: 78%; }
    .partner-card-footer { padding: 18px 8px 5px; }
    .partner-card-copy { font-size: .88rem !important; }
    .ceo-premium { padding: 82px 0; }
    .ceo-premium .ceo-photo { width: min(92%, 430px); }
    .ceo-premium .ceo-photo::before { inset: 16px -14px -14px 14px; }
    .ceo-photo-caption { left: 13px; right: 13px; bottom: 12px; font-size: .62rem; }
    .leadership-points { grid-template-columns: 1fr; }
    .cta-box { padding: 48px 26px; border-radius: 25px; }
    .whatsapp-float {
        width: 44px;
        min-width: 44px;
        height: 44px;
        right: 14px;
        bottom: 14px;
    }
    .whatsapp-float img { width: 22px; height: 22px; }
    .page-hero { min-height: 500px; padding-bottom: 74px; }
}

/* Partner-card reset for legacy generic span rules */
.partner-card-tag {
    display: inline-flex;
    margin: 0;
    padding: 0 11px;
    border-top: 1px solid rgba(10,25,49,.08);
}
.partner-card-arrow {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Own language school: premium USP sections */
.school-advantage {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(214,167,53,.14), transparent 28%),
        linear-gradient(145deg, #f8fafc 0%, #ffffff 55%, #f8f4e9 100%);
}
.school-advantage::before {
    content: "";
    position: absolute;
    right: -180px;
    top: -190px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(10,25,49,.06);
    border-radius: 50%;
}
.school-advantage-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
    gap: 82px;
    align-items: center;
}
.school-visual {
    position: relative;
    min-height: 650px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 34px 85px rgba(7,24,46,.18);
}
.school-visual img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}
.school-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5,20,38,.92) 0%, rgba(5,20,38,.18) 62%);
}
.school-visual-overlay {
    position: absolute;
    z-index: 2;
    left: 34px;
    right: 34px;
    bottom: 32px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: rgba(6,20,38,.72);
    color: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.school-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-400);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.school-visual-overlay strong {
    display: block;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -.05em;
}
.school-visual-overlay p { margin-top: 9px; color: rgba(255,255,255,.76); }
.school-copy h2 { max-width: 760px; }
.school-copy .lead { margin-top: 24px; }
.school-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}
.school-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(10,25,49,.09);
    border-radius: 20px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 35px rgba(7,24,46,.055);
}
.school-point > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--gold-100);
    color: var(--navy-900);
    font-weight: 900;
    font-size: .82rem;
}
.school-point strong { display: block; color: var(--navy-900); font-size: 1rem; }
.school-point p { margin-top: 6px; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.school-callout-section {
    padding: 34px 0 110px;
    background: var(--surface);
}
.school-callout-section + .section { padding-top: 96px; }
.school-callout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
    gap: 58px;
    align-items: center;
    padding: 64px 70px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(214,167,53,.25), transparent 31%),
        linear-gradient(135deg, var(--navy-950), var(--navy-700));
    color: #fff;
    box-shadow: 0 28px 75px rgba(7,24,46,.19);
}
.school-callout::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -120px;
    width: 290px;
    height: 290px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}
.school-callout-copy { position: relative; z-index: 1; }
.school-callout h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 3.25rem); }
.school-callout-copy > p { max-width: 760px; margin-top: 20px; color: rgba(255,255,255,.74); font-size: 1.06rem; }
.school-callout-facts {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}
.school-callout-facts > div {
    display: grid;
    grid-template-columns: minmax(105px, auto) 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
}
.school-callout-facts strong { color: var(--gold-400); font-size: 1.55rem; line-height: 1; }
.school-callout-facts span { color: rgba(255,255,255,.78); font-size: .91rem; }
.school-callout-light {
    border-color: rgba(10,25,49,.08);
    background:
        radial-gradient(circle at 90% 10%, rgba(214,167,53,.15), transparent 31%),
        linear-gradient(145deg, #ffffff, #f7f9fc);
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(7,24,46,.10);
}
.school-callout-light::after { border-color: rgba(10,25,49,.07); }
.school-callout-light h2 { color: var(--navy-900); }
.school-callout-light .school-callout-copy > p { color: var(--muted); }
.school-callout-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 13px;
    list-style: none;
}
.school-callout-list li {
    position: relative;
    padding: 18px 18px 18px 54px;
    border: 1px solid rgba(10,25,49,.08);
    border-radius: 18px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(7,24,46,.055);
}
.school-callout-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 17px;
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--gold-100);
    color: #8b6512;
    font-size: .76rem;
    font-weight: 900;
}

@media (max-width: 1040px) {
    .school-advantage-grid { grid-template-columns: 1fr; gap: 58px; }
    .school-visual { min-height: 520px; }
    .school-visual img { min-height: 520px; }
    .school-callout { grid-template-columns: 1fr; padding: 58px; }
}
@media (max-width: 700px) {
    .school-advantage-grid { gap: 42px; }
    .school-visual { min-height: 450px; border-radius: 26px; }
    .school-visual img { min-height: 450px; }
    .school-visual-overlay { left: 18px; right: 18px; bottom: 18px; padding: 20px; }
    .school-points { grid-template-columns: 1fr; }
    .school-callout-section { padding: 16px 0 76px; }
    .school-callout { padding: 42px 25px; border-radius: 26px; gap: 36px; }
    .school-callout-facts > div { grid-template-columns: 1fr; gap: 8px; }
}



/* Main locations, regional network and 12-month support enhancements */
.locations-expanded .main-location-grid { margin-bottom: 30px; }
.regional-presence {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 34px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(214,167,53,.28);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(251,243,221,.72), #fff 68%);
    box-shadow: var(--shadow-sm);
}
.regional-presence-label,
.regional-location-kicker {
    display: block;
    color: #9b7114;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.regional-presence-intro h3 { margin: 9px 0 10px; color: var(--navy-900); font-size: clamp(1.45rem,2.2vw,2rem); }
.regional-presence-intro p { color: var(--muted); }
.regional-location-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.regional-location-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    min-height: 180px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.regional-location-card:hover { transform: translateY(-4px); border-color: rgba(214,167,53,.55); box-shadow: var(--shadow-sm); }
.regional-location-code {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--navy-900);
    color: var(--gold-400);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
}
.regional-location-card h3 { margin: 7px 0 8px; color: var(--navy-900); font-size: 1.25rem; }
.regional-location-card p { color: var(--muted); font-size: .92rem; }
.footer-regional {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.72);
}
.contact-items .contact-item { align-items: flex-start; }
@media (max-width: 1120px) {
    .regional-location-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 900px) {
    .regional-presence { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .regional-presence { padding: 24px 20px; }
    .regional-location-grid { grid-template-columns: 1fr; }
    .regional-location-card { min-height: 0; }
}


/* Combined presentation for Brunei, Indonesia and the Philippines */
.regional-location-grid-combined { grid-template-columns: 1fr; }
.regional-location-card-combined {
    display: block;
    min-height: 0;
    padding: 24px;
}
.regional-location-card-combined:hover { transform: none; }
.regional-location-names {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.regional-location-name {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-soft);
    color: var(--navy-900);
}
.regional-location-name strong {
    min-width: 0;
    font-size: 1rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}
.regional-location-card-combined > p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
}
@media (max-width: 720px) {
    .regional-location-names { grid-template-columns: 1fr; }
}

/* =========================================================
   SEA 360° Arrival & Integration Package + PURPLAN partner
   ========================================================= */
.arrival-package {
    position: relative;
    padding: 118px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(214,167,53,.20), transparent 31%),
        radial-gradient(circle at 88% 86%, rgba(49,91,139,.22), transparent 33%),
        linear-gradient(138deg, #061426 0%, #0a1931 55%, #12375f 100%);
    color: #fff;
}
.arrival-package::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -210px;
    top: -230px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
}
.arrival-package::after {
    content: "360°";
    position: absolute;
    right: 3vw;
    bottom: -48px;
    color: rgba(255,255,255,.025);
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: clamp(9rem, 18vw, 18rem);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}
.arrival-package-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 74px;
    align-items: center;
}
.arrival-package .eyebrow { color: var(--gold-400); }
.arrival-package h2 { color: #fff; max-width: 720px; }
.arrival-package .lead { margin-top: 24px; color: rgba(255,255,255,.77); }
.package-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin-bottom: 24px;
    padding: 0 15px;
    border: 1px solid rgba(230,189,90,.35);
    border-radius: 999px;
    background: rgba(214,167,53,.12);
    color: var(--gold-400);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    box-shadow: inset 0 1px rgba(255,255,255,.08);
}
.package-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
    margin-top: 34px;
}
.package-highlights > div {
    min-height: 116px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.package-highlights strong { display: block; color: #fff; font-size: 1rem; }
.package-highlights span { display: block; margin-top: 8px; color: rgba(255,255,255,.63); font-size: .8rem; line-height: 1.45; }
.btn-package-ghost {
    border-color: rgba(255,255,255,.25);
    color: #fff;
    background: rgba(255,255,255,.07);
}
.btn-package-ghost:hover { border-color: rgba(230,189,90,.55); background: rgba(255,255,255,.12); }
.arrival-package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
}
.package-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 178px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
    box-shadow: 0 18px 46px rgba(2,11,22,.16), inset 0 1px rgba(255,255,255,.06);
    transition: transform var(--ease), border-color var(--ease), background var(--ease);
}
.package-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(230,189,90,.34);
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
}
.package-feature > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(230,189,90,.28);
    border-radius: 14px;
    background: rgba(214,167,53,.10);
    color: var(--gold-400);
    font-size: .78rem;
    font-weight: 900;
}
.package-feature h3 { color: #fff; font-size: 1.12rem; letter-spacing: -.02em; }
.package-feature p { margin-top: 9px; color: rgba(255,255,255,.66); font-size: .9rem; line-height: 1.55; }
.package-feature-highlight {
    border-color: rgba(230,189,90,.34);
    background: linear-gradient(145deg, rgba(214,167,53,.18), rgba(255,255,255,.06));
}
.package-disclaimer {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 26px auto 0;
    color: rgba(255,255,255,.46);
    font-size: .74rem;
    line-height: 1.55;
    text-align: center;
}
.hero-package-card .hero-panel-list li { grid-template-columns: 104px 1fr; }
.hero-package-card .hero-panel-kicker { padding-right: 86px; }
.hero-package-card h3 { max-width: 335px; }

/* Three original partner logos in a balanced row */
.partner-logos { grid-template-columns: repeat(3, minmax(0,1fr)); }
.partner-logo-stage img[src*="partner-purplan"] { max-width: 82%; max-height: 96px; }
.partner-logo-static { cursor: default; }
.partner-card-status {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 64px;
    min-height: 34px;
    margin: 0 !important;
    padding: 0 11px !important;
    border: 1px solid rgba(214,167,53,.20) !important;
    border-radius: 999px;
    background: var(--gold-100);
    color: var(--navy-900) !important;
    font-size: .67rem !important;
    font-weight: 900 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 1120px) {
    .arrival-package-shell { grid-template-columns: 1fr; gap: 54px; }
    .arrival-package-intro { max-width: 860px; }
    .partner-logos { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .partner-logo-static { grid-column: 1 / -1; width: min(100%, 560px); justify-self: center; }
}
@media (max-width: 820px) {
    .arrival-package { padding: 92px 0; }
    .package-highlights { grid-template-columns: 1fr; }
    .package-highlights > div { min-height: auto; }
}
@media (max-width: 700px) {
    .arrival-package { padding: 78px 0; }
    .arrival-package-shell { gap: 40px; }
    .arrival-package-grid { grid-template-columns: 1fr; }
    .package-feature { min-height: auto; padding: 21px; }
    .partner-logos { grid-template-columns: 1fr; }
    .partner-logo-static { grid-column: auto; width: 100%; }
    .hero-package-card .hero-panel-list li { grid-template-columns: 90px 1fr; }
}


/* =========================================================
   Compact premium layout – June 2026
   Compact two-partner presentation
   ========================================================= */
.section { padding: 86px 0; }
.section-sm { padding: 58px 0; }
.section-heading { margin-bottom: 32px; }
.section-heading .lead { margin-top: 16px !important; }

.navbar-inner { min-height: 82px; }
.navbar.scrolled .navbar-inner,
.navbar.solid .navbar-inner { min-height: 68px; }
.brand { width: 220px; min-height: 64px; }
.brand img { width: 220px; }
.nav-links { gap: 22px; }
.nav-cta { min-height: 44px; padding-inline: 18px; }

.hero { min-height: 800px; }
.hero-content { padding-top: 92px; }
.hero-copy { max-width: 790px; }
.hero h1 { font-size: clamp(2.9rem, 6.2vw, 5.35rem); }
.hero-subtitle { max-width: 720px; margin-top: 20px; font-size: clamp(1.04rem, 1.55vw, 1.27rem); }
.hero-actions { margin-top: 27px; }
.hero-proof { margin-top: 30px; gap: 12px 22px; }
.hero-support-line { margin-top: 14px; }
.hero-panel { bottom: 34px; width: min(360px, calc(100vw - 40px)); padding: 22px; }
.hero-panel h3 { margin: 8px 0 10px; font-size: 1.25rem; }
.hero-panel-list { gap: 10px; }
.hero-panel-list li { padding-block: 8px; }
.hero-package-card .hero-panel-list li { grid-template-columns: 92px 1fr; }

.stats-wrap { margin-top: -42px; }
.stats-grid { border-radius: 18px; }
.stat { min-height: 132px; padding: 25px 27px; }
.stat span { margin-top: 8px; line-height: 1.45; }

.arrival-package { padding: 84px 0; }
.arrival-package-shell { gap: 48px; }
.arrival-package .lead { margin-top: 18px; }
.package-badge { min-height: 34px; margin-bottom: 18px; }
.package-highlights { margin-top: 24px; }
.package-highlights > div { min-height: 94px; padding: 15px; }
.arrival-package-grid { gap: 12px; }
.package-feature { min-height: 148px; padding: 20px; gap: 13px; border-radius: 18px; }
.package-feature p { margin-top: 6px; line-height: 1.48; }
.package-disclaimer { margin-top: 18px; }

.school-advantage-grid { gap: 52px; }
.school-visual,
.school-visual img { min-height: 480px; }
.school-copy .lead { margin-top: 18px; }
.school-points { gap: 12px; margin-top: 22px; }
.school-point { padding: 16px; }
.school-callout-section + .section { padding-top: 76px; }
.school-callout { padding: 48px; }

.split { gap: 54px; }
.image-frame,
.image-frame img { min-height: 470px; }
.image-badge { left: -22px; bottom: 28px; padding: 19px; }
.check-list { gap: 14px; margin-top: 24px; }

.cards-grid { gap: 18px; }
.feature-card,
.service-card,
.industry-card { padding: 27px; border-radius: 18px; }
.card-icon { margin-bottom: 18px; }
.card-link { margin-top: 17px; }

.process-grid { gap: 13px; }
.process-step { padding: 21px; border-radius: 18px; }
.step-number { margin-bottom: 16px; }

.partner-showcase { padding: 62px 0; }
.partner-heading { margin-bottom: 28px; }
.partner-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 920px; margin-inline: auto; }
.partner-logo-card { min-height: 270px; padding: 22px; }
.partner-logo-stage { min-height: 138px; }
.partner-logo-stage img { max-height: 94px; }
.partner-card-footer { margin-top: 16px; }
.partner-intro-grid { gap: 56px; }
.partner-note { max-width: 920px; margin: 14px auto 0; }

.location-card { min-height: 430px; }
.location-content { left: 28px; right: 28px; bottom: 25px; }
.locations-expanded .main-location-grid { margin-bottom: 22px; }
.regional-presence { padding: 26px; gap: 28px; }
.regional-location-card { padding: 20px; }

.ceo-premium { padding: 92px 0; }
.ceo-grid-premium { gap: 54px; }
.ceo-premium .quote { margin: 22px 0; }
.leadership-points { margin-top: 24px; }

.cta-box { padding: 50px 54px; }
.cta-copy p { margin-top: 13px; }

.page-hero { min-height: 460px; padding: 142px 0 66px; }
.page-hero p { margin-top: 15px; }

.contact-grid { gap: 40px; }
.contact-card { padding: 30px; }

.footer { padding-top: 66px; }
.footer-topline { padding-bottom: 24px; margin-bottom: 36px; }
.footer-grid { gap: 34px; padding-bottom: 42px; }
.footer-about p { margin-top: 16px; }
.footer-badges { margin-top: 16px; }
.footer-bottom { padding: 20px 0; }

@media (max-width: 1120px) {
    .hero { min-height: 860px; }
    .arrival-package-shell { gap: 38px; }
    .partner-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partner-logo-static { grid-column: auto; width: auto; }
}

@media (max-width: 1040px) {
    .section { padding: 74px 0; }
    .section-sm { padding: 50px 0; }
    .hero { min-height: auto; padding: 150px 0 78px; }
    .hero-content { padding-top: 0; }
    .hero-panel { position: relative; right: auto; bottom: auto; margin: 38px auto 0; }
    .stats-wrap { margin-top: 0; padding-top: 24px; }
    .split,
    .school-advantage-grid,
    .ceo-grid-premium { gap: 40px; }
    .image-frame,
    .image-frame img { min-height: 410px; }
    .ceo-premium { padding: 76px 0; }
}

@media (max-width: 820px) {
    .navbar-inner { min-height: 72px; }
    .brand,
    .brand img { width: 196px; }
    .section { padding: 64px 0; }
    .section-sm { padding: 44px 0; }
    .hero { padding: 132px 0 66px; }
    .hero h1 { font-size: clamp(2.55rem, 10vw, 4.15rem); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { min-height: 118px; padding: 22px; }
    .arrival-package { padding: 68px 0; }
    .package-highlights { grid-template-columns: repeat(3, 1fr); }
    .partner-logos { gap: 16px; }
    .partner-logo-card { min-height: 235px; }
    .page-hero { min-height: 410px; padding: 124px 0 55px; }
    .cta-box { padding: 42px; }
}

@media (max-width: 700px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 54px 0; }
    .section-sm { padding: 38px 0; }
    .hero { padding: 118px 0 56px; }
    .hero-actions { gap: 10px; }
    .btn { min-height: 50px; padding-inline: 20px; }
    .hero-proof { margin-top: 24px; }
    .hero-panel { margin-top: 30px; padding: 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat { min-height: 112px; padding: 19px; }
    .arrival-package { padding: 58px 0; }
    .arrival-package-shell { gap: 30px; }
    .package-highlights { grid-template-columns: 1fr; gap: 8px; }
    .package-highlights > div { min-height: auto; }
    .package-feature { min-height: auto; padding: 18px; }
    .school-callout { padding: 32px 24px; }
    .image-frame,
    .image-frame img { min-height: 350px; }
    .image-badge { position: relative; left: auto; bottom: auto; margin: -28px 14px 0; }
    .partner-logos { grid-template-columns: 1fr; }
    .partner-logo-card { min-height: 220px; padding: 20px; }
    .regional-presence { padding: 22px; }
    .ceo-premium { padding: 60px 0; }
    .cta-box { padding: 34px 24px; }
    .page-hero { min-height: 370px; padding: 112px 0 48px; }
    .footer { padding-top: 52px; }
    .footer-topline { margin-bottom: 28px; }
}

@media (max-width: 460px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat { min-height: auto; }
    .hero h1 { font-size: 2.65rem; }
    .hero-topline { align-items: flex-start; }
}

/* =========================================================
   Final typography consistency & location-card overflow fix
   ========================================================= */
:root {
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --type-body: 1rem;
    --type-small: .9rem;
    --type-label: .74rem;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-sans);
}

body {
    font-size: var(--type-body);
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.stat strong,
.school-visual-overlay strong,
.arrival-package::after {
    font-family: var(--font-display);
}

h1 {
    font-size: clamp(2.85rem, 6vw, 5.35rem);
    line-height: 1.05;
    font-weight: 800;
}

h2 {
    font-size: clamp(2.05rem, 3.7vw, 3.55rem);
    line-height: 1.1;
    font-weight: 780;
}

h3 {
    font-size: clamp(1.22rem, 1.8vw, 1.5rem);
    line-height: 1.2;
    font-weight: 750;
}

h4 {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 750;
}

p,
li,
label,
input,
textarea,
select,
button {
    font-size: 1rem;
}

p,
li {
    overflow-wrap: break-word;
    text-wrap: pretty;
}

.lead {
    font-size: clamp(1.03rem, 1.45vw, 1.18rem);
    line-height: 1.68;
}

.eyebrow,
.stat-kicker,
.regional-presence-label,
.regional-location-kicker,
.school-kicker,
.package-badge {
    font-family: var(--font-sans);
    font-size: var(--type-label);
    line-height: 1.35;
}

.nav-links a {
    font-size: .92rem;
}

.feature-card p,
.service-card p,
.industry-card p,
.process-step p,
.partner-card-copy,
.school-point p,
.package-feature p,
.footer-about p,
.footer-links a,
.footer-contact,
.footer-bottom {
    font-size: var(--type-small);
    line-height: 1.6;
}

/* The management signature now uses the same family as the site. */
.leadership-name {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-style: italic;
    font-weight: 650;
}

.page-hero h1 {
    font-size: clamp(2.55rem, 5.2vw, 4.45rem);
}

.page-hero p {
    font-size: clamp(1.04rem, 1.45vw, 1.16rem);
    line-height: 1.65;
}

/* Keep all location content inside its card/image at every viewport. */
.location-card,
.regional-location-card {
    min-width: 0;
    overflow: hidden;
}

.location-content {
    max-width: calc(100% - 56px);
    overflow: hidden;
}

.location-content h3,
.location-content p {
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.location-content p {
    font-size: .95rem;
    line-height: 1.55;
}

.regional-presence {
    align-items: stretch;
}

.regional-location-grid {
    align-items: stretch;
}

.regional-location-card {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    height: 100%;
}

.regional-location-card > div {
    min-width: 0;
}

.regional-location-card h3 {
    margin: 6px 0 7px;
    font-size: 1.2rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.regional-location-card p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.regional-location-kicker {
    overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
    .regional-location-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    html { font-size: 15.5px; }

    h1 { font-size: clamp(2.45rem, 11vw, 3.85rem); }
    h2 { font-size: clamp(1.9rem, 8vw, 2.75rem); }
    h3 { font-size: 1.2rem; }

    .page-hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.4rem);
    }

    .regional-location-grid {
        grid-template-columns: 1fr;
    }

    .regional-location-card {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .regional-location-code {
        width: 40px;
        height: 40px;
    }

    .location-content {
        left: 22px;
        right: 22px;
        max-width: calc(100% - 44px);
    }
}

@media (max-width: 420px) {
    html { font-size: 15px; }

    .regional-presence {
        padding: 20px 16px;
    }

    .regional-location-card {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px;
        padding: 16px;
    }

    .regional-location-code {
        width: 36px;
        height: 36px;
        border-radius: 11px;
        font-size: .72rem;
    }
}


/* Refined Southeast Asia network presentation */
.regional-presence {
    display: block;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(251,243,221,.78), #fff 62%);
}
.regional-presence-intro {
    max-width: 760px;
    margin: 0 auto 26px;
    text-align: center;
}
.regional-presence-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--gold-100);
    color: #8b6512;
    letter-spacing: .1em;
}
.regional-presence-intro h3 {
    margin: 12px 0 10px;
}
.regional-presence-intro p {
    max-width: 680px;
    margin-inline: auto;
}
.regional-location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.regional-location-card {
    min-height: 128px;
    padding: 21px;
    align-items: center;
    border-radius: 18px;
}
.regional-location-card h3,
.regional-location-card p,
.regional-presence-intro h3,
.regional-presence-intro p {
    word-break: normal;
    overflow-wrap: break-word;
    -webkit-hyphens: none;
    hyphens: none;
}
.regional-location-card h3 {
    margin: 0 0 6px;
}
.regional-location-card p {
    line-height: 1.48;
}
.footer-regional strong {
    display: inline-block;
    margin-bottom: 3px;
    color: rgba(255,255,255,.92);
}
@media (max-width: 900px) {
    .regional-location-grid { grid-template-columns: 1fr; }
    .regional-location-card { min-height: 0; }
}
@media (max-width: 640px) {
    .regional-presence { padding: 24px 18px; }
    .regional-presence-intro { margin-bottom: 20px; }
}


/* Additional locations: compact support note */
.footer-regional small { display:block; margin-top:4px; color:rgba(255,255,255,.58); font-size:.76rem; line-height:1.35; }


/* =========================================================
   FINAL SITEWIDE TYPOGRAPHY & COMBINED LOCATIONS
   Single type system across all German and English pages.
   ========================================================= */
:root {
    --site-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --site-body: 1rem;
    --site-card-copy: .92rem;
    --site-small: .86rem;
    --site-label: .74rem;
}

html {
    font-family: var(--site-font);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body,
button,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6,
.stat strong,
.school-visual-overlay strong,
.leadership-name,
.arrival-package::after {
    font-family: var(--site-font);
}

body {
    font-size: var(--site-body);
    line-height: 1.65;
}

h1 {
    font-size: clamp(2.85rem, 6vw, 5.35rem);
    line-height: 1.05;
    font-weight: 800;
}

h2 {
    font-size: clamp(2.05rem, 3.7vw, 3.55rem);
    line-height: 1.1;
    font-weight: 780;
}

h3 {
    font-size: clamp(1.22rem, 1.8vw, 1.5rem);
    line-height: 1.22;
    font-weight: 750;
}

h4 {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 750;
}

p,
li,
label,
input,
textarea,
select,
button {
    font-size: var(--site-body);
}

.nav-links a { font-size: .92rem; }

.eyebrow,
.stat-kicker,
.location-kicker,
.regional-presence-label,
.regional-location-kicker,
.school-kicker,
.package-badge,
.partner-card-tag,
.partner-card-status {
    font-size: var(--site-label) !important;
    line-height: 1.35;
}

.feature-card p,
.service-card p,
.industry-card p,
.process-step p,
.partner-card-copy,
.school-point p,
.package-feature p,
.location-content p,
.regional-location-card p,
.footer-about p,
.footer-links a,
.footer-contact,
.footer-bottom {
    font-size: var(--site-card-copy) !important;
    line-height: 1.58;
}

.page-hero h1 { font-size: clamp(2.55rem, 5.2vw, 4.45rem); }
.page-hero p,
.lead { font-size: clamp(1.03rem, 1.45vw, 1.18rem); }

/* The three additional countries are intentionally one full-width unit. */
.regional-location-grid.regional-location-grid-combined {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
}

.regional-location-card.regional-location-card-combined {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 24px;
}

.regional-location-names {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.regional-location-name {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-soft);
}

.regional-location-name strong {
    min-width: 0;
    font-size: 1rem;
    line-height: 1.3;
    overflow-wrap: break-word;
}

/* No automatic hyphenation in titles or location copy. */
.location-content h3,
.location-content p,
.regional-presence-intro h3,
.regional-presence-intro p,
.regional-location-card h3,
.regional-location-card p,
.regional-location-name strong {
    word-break: normal;
    overflow-wrap: break-word;
    -webkit-hyphens: none;
    hyphens: none;
}

@media (max-width: 760px) {
    html { font-size: 15.5px; }
    h1 { font-size: clamp(2.45rem, 11vw, 3.85rem); }
    h2 { font-size: clamp(1.9rem, 8vw, 2.75rem); }
    h3 { font-size: 1.2rem; }
    .page-hero h1 { font-size: clamp(2.25rem, 10vw, 3.4rem); }
    .regional-location-names { grid-template-columns: 1fr; }
    .regional-location-card.regional-location-card-combined { padding: 18px; }
}

@media (max-width: 420px) {
    html { font-size: 15px; }
}


/* =========================================================
   COMPACT HOMEPAGE — clearer hierarchy, fewer repetitions
   ========================================================= */
.home-compact .section { padding: 84px 0; }
.home-compact .section-sm { padding: 58px 0; }
.home-compact .section-heading { margin-bottom: 34px; }
.home-compact .hero { min-height: 780px; }
.home-compact .hero-copy { max-width: 790px; }
.home-compact .hero-subtitle { max-width: 720px; }
.home-compact .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-compact .stat { min-height: 142px; padding: 27px; }
.home-compact .stat strong { font-size: clamp(1.85rem, 2.8vw, 2.8rem); }
.home-compact .stat span:last-child { margin-top: 9px; }

.home-difference { background: var(--surface); }
.home-difference-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 66px;
    align-items: center;
}
.home-difference-visual { position: relative; min-width: 0; }
.home-difference-visual img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}
.home-difference-badge {
    position: absolute;
    right: -22px;
    bottom: 26px;
    max-width: 230px;
    padding: 19px 21px;
    border-radius: 18px;
    background: var(--navy-900);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.home-difference-badge strong { display: block; color: var(--gold-400); font-size: 1.35rem; }
.home-difference-badge span { display: block; margin-top: 3px; font-size: .88rem; color: rgba(255,255,255,.72); }
.home-difference-copy .lead { margin-top: 20px; }
.difference-points { display: grid; gap: 12px; margin: 26px 0 4px; }
.difference-points > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 13px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface-soft);
}
.difference-points span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--gold-100);
    color: #8d6715;
    font-size: .76rem;
    font-weight: 850;
}
.difference-points p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.48; }
.difference-points strong { color: var(--navy-900); }

.home-journey .section-heading { max-width: 780px; }
.journey-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.journey-step {
    min-height: 240px;
    padding: 27px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 21px;
    background: rgba(255,255,255,.065);
}
.journey-step > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 21px;
    border: 1px solid rgba(230,189,90,.4);
    border-radius: 50%;
    color: var(--gold-400);
    font-size: .82rem;
    font-weight: 850;
}
.journey-step h3 { color: #fff; margin-bottom: 11px; }
.journey-step p { color: rgba(255,255,255,.7); font-size: .94rem; }
.package-compact-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 24px;
    padding: 24px 26px;
    border: 1px solid rgba(230,189,90,.28);
    border-radius: 21px;
    background: rgba(4,16,31,.42);
}
.package-compact-copy { display: flex; align-items: center; gap: 18px; min-width: 0; }
.package-compact-copy .package-badge { flex: 0 0 auto; margin: 0; }
.package-compact-copy strong { display: block; color: #fff; font-size: 1.08rem; }
.package-compact-copy p { margin: 4px 0 0; color: rgba(255,255,255,.68); font-size: .9rem; }
.package-compact-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.package-compact-actions .btn { min-height: 46px; padding: 0 19px; font-size: .9rem; }
.package-compact-note { max-width: 900px; margin: 13px auto 0; text-align: center; color: rgba(255,255,255,.52) !important; font-size: .78rem !important; }

.home-main-location-grid { gap: 20px; }
.home-main-location-grid .location-card { min-height: 390px; }
.home-main-location-grid .location-content { left: 28px; right: 28px; bottom: 26px; }
.location-network-strip {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: center;
    margin-top: 18px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface-soft);
}
.location-network-strip > div { display: grid; gap: 4px; }
.network-strip-label { color: #8b6512; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.location-network-strip strong { color: var(--navy-900); font-size: 1.06rem; }
.location-network-strip p { margin: 0; color: var(--muted); font-size: .92rem; }

.partner-trust-compact { background: var(--surface-soft); }
.partner-trust-shell {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(360px, 1.2fr) auto;
    gap: 30px;
    align-items: center;
    padding: 25px 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.partner-trust-copy .eyebrow { margin-bottom: 8px; }
.partner-trust-copy h2 { font-size: clamp(1.55rem, 2.4vw, 2.15rem); }
.partner-trust-logos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: center; }
.partner-trust-logos > a,
.partner-trust-logos > div {
    display: grid;
    place-items: center;
    min-height: 90px;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
}
.partner-trust-logos img { width: 100%; max-width: 205px; max-height: 62px; object-fit: contain; }
.partner-trust-shell > .card-link { margin: 0; white-space: nowrap; }
.home-final-cta { padding-top: 58px !important; }

@media (max-width: 1050px) {
    .home-compact .hero { min-height: 820px; }
    .home-difference-grid { gap: 42px; }
    .partner-trust-shell { grid-template-columns: 1fr; text-align: center; }
    .partner-trust-copy .eyebrow { justify-content: center; }
    .partner-trust-shell > .card-link { justify-self: center; }
}
@media (max-width: 900px) {
    .home-compact .section { padding: 70px 0; }
    .home-compact .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-difference-grid { grid-template-columns: 1fr; }
    .home-difference-visual { max-width: 700px; margin-inline: auto; }
    .home-difference-badge { right: 18px; }
    .journey-grid { grid-template-columns: 1fr; }
    .journey-step { min-height: 0; }
    .package-compact-band { align-items: flex-start; flex-direction: column; }
    .package-compact-actions { width: 100%; }
    .location-network-strip { grid-template-columns: 1fr; gap: 9px; }
}
@media (max-width: 640px) {
    .home-compact .section { padding: 58px 0; }
    .home-compact .section-sm { padding: 44px 0; }
    .home-compact .hero { min-height: auto; padding: 122px 0 42px; }
    .home-compact .stats-wrap { margin-top: 0; padding-top: 14px; background: var(--surface); }
    .home-compact .stats-grid { grid-template-columns: 1fr 1fr; border-radius: 18px; }
    .home-compact .stat { min-height: 126px; padding: 20px 17px; }
    .home-compact .stat:nth-child(2) { border-right: 0; }
    .home-compact .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .home-difference-visual img { height: 340px; border-radius: 22px; }
    .home-difference-badge { position: relative; right: auto; bottom: auto; max-width: none; margin: -44px 15px 0; }
    .difference-points > div { grid-template-columns: 36px 1fr; padding: 12px; }
    .package-compact-copy { align-items: flex-start; }
    .package-compact-actions .btn { width: 100%; }
    .home-main-location-grid .location-card { min-height: 340px; }
    .partner-trust-shell { padding: 22px 18px; }
    .partner-trust-logos { grid-template-columns: 1fr; }
}


/* Authentic photography refinements */
.home-difference-visual img[src*="authentic-b2-graduates"] { object-position: 50% 48%; }
.page-hero-media img[src*="authentic-student-departure"] { object-position: 50% 47%; }
.image-frame img[src*="authentic-education-event"] { object-position: 50% 50%; }
.image-frame img[src*="authentic-partner-exchange"] { object-position: 50% 43%; }
@media (max-width: 720px) {
  .page-hero-media img[src*="authentic-student-departure"] { object-position: 50% 50%; }
  .home-difference-visual img[src*="authentic-b2-graduates"] { object-position: 50% 52%; }
}

/* Face-safe authentic photo framing */
.page-hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
}
.page-hero-media picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Match the B2 group photo's native 4:3 ratio so no person is cut off. */
.home-difference-visual.authentic-photo-frame {
    aspect-ratio: 4 / 3;
}
.home-difference-visual.authentic-photo-frame > img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: 50% 50%;
}

/* Authentic editorial photos use a face-safe 4:3 frame instead of the taller generic frame. */
.image-frame.authentic-image-frame {
    min-height: 0 !important;
    aspect-ratio: 4 / 3;
}
.image-frame.authentic-image-frame > img {
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
}
.image-frame.authentic-image-frame--event > img {
    object-position: 50% 50%;
}
.image-frame.authentic-image-frame--partner > img {
    object-position: 50% 50%;
}

/* The wide airport photo keeps the full group on desktop; mobile uses a dedicated central crop. */
.page-hero-media img[src*="authentic-student-departure"] {
    object-position: 50% 38%;
}
@media (max-width: 720px) {
    .page-hero-media img[src*="authentic-student-departure-mobile"] {
        object-position: 50% 44%;
    }
    .home-difference-visual.authentic-photo-frame {
        aspect-ratio: 4 / 3;
    }
    .image-frame.authentic-image-frame {
        aspect-ratio: 4 / 3;
    }
}

/* Keep the event caption outside the photograph so it never covers a face. */
.image-frame.authentic-image-frame--event {
    margin-bottom: 62px;
}
.image-frame.authentic-image-frame--event .image-badge {
    left: 24px;
    right: 24px;
    bottom: -48px;
    max-width: 360px;
}
@media (max-width: 640px) {
    .image-frame.authentic-image-frame--event {
        margin-bottom: 78px;
    }
    .image-frame.authentic-image-frame--event .image-badge {
        left: 14px;
        right: 14px;
        bottom: -64px;
        max-width: none;
    }
}

/* Partner intro photo: preserve the complete Study Germany wordmark and all faces. */
.image-frame.authentic-image-frame--partner {
    aspect-ratio: 16 / 9;
    min-height: 0 !important;
    background: #f5c400;
}
.image-frame.authentic-image-frame--partner > img {
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: contain;
    object-position: 50% 50%;
    background: #f5c400;
}
@media (max-width: 640px) {
    .image-frame.authentic-image-frame--partner {
        aspect-ratio: 16 / 9;
    }
}
