/* =========================================================
   Buddy Immigration — shared stylesheet
   Tokens: Primary #0057FF · Secondary #00B894 · Accent #FFC107
   Display: Poppins (headings) · Body: Inter (clean reading face)
   ========================================================= */

:root {
    --primary: #0057FF;
    --primary-dark: #0041C4;
    --secondary: #00B894;
    --accent: #FFC107;
    --ink: #0B1220;
    --accent-color: #ff6f00;
    --ink-soft: #4A5567;
    --bg: #FFFFFF;
    --bg-muted: #F5F8FF;
    --bg-deep: #0B1220;
    --border: #E6EBF5;
    --border-color: #e0e0e0;
    --text-muted: #6c757d;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 10px rgba(11, 18, 32, .06);
    --shadow-md: 0 10px 30px rgba(11, 18, 32, .10);
    --shadow-lg: 0 24px 60px rgba(11, 18, 32, .16);
    --container: 1180px;
    --ff-display: 'Poppins', sans-serif;
    --ff-body: 'Inter', sans-serif;
    --radius: 8px;
    --white: #ffffff;

    --dark-bg: #181818;
    --light-bg: #111111;
    --primary-color: #ffffff;
    --secondary-color: #f8bd3f;
    --grey-color: #a2a2a2;
    --ff-heading: 'PTSerif';
    --ff-bodyText: 'Nunito', sans-serif;
    --line: rgba(255, 255, 255, 0.09);
    --brass: #C6A15B;
}

/* * {
    box-sizing: border-box;
} */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--ff-body);
    color: var(--primary-color);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1 {
    color: var(--primary-color);
    font-family: var(--ff-heading);
}

h2 {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--ff-heading);
}

h3 {
    color: var(--primary-color);
    font-family: var(--ff-heading);
}

h4 {
    font-family: var(--ff-display);
    line-height: 1.15;
    margin: 0 0 .5em;
    font-weight: 700;
}

p {
    margin: 0 0 1em;
    color: var(--ink-soft);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 50px 0;
}

@media (max-width:768px) {
    section {
        padding: 56px 0;
    }
}

/* Eyebrow / labels */
.eyebrow {
    display: inline-flex;
    align-items: left;
    gap: 8px;
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 18px;
    /* letter-spacing: .06em; */
    text-transform: uppercase;
    color: var(--secondary-color);
    /* background: color-mix(in srgb,
            var(--secondary-color) 30%,
            transparent); */
    /* padding: 7px 14px; */
    /* border-radius: 999px; */
    /* margin-bottom: 16px; */
}

.highlight {
    color: var(--secondary-color);
}

.section-head {
    max-width: 1180px;
    margin: 0 auto 8px;
    text-align: left;
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
}

.section-head p {
    font-size: 16px;
    font-weight: 400;
}

.tech-head {
    max-width: 640px;
    margin-bottom: 56px;
}

.tech-head h2 {
    font-size: clamp(28px, 3vw, 38px);
}

.main-heading {
    font-size: 40px !important;
    font-weight: bold !important;
    color: #0B1220 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
    background: var(--secondary-color);
    /* color: #fff; */
    /* box-shadow: 0 10px 24px rgba(0, 87, 255, .28); */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 87, 255, .34);
}

.btn-outline {
    /* background: #fff; */
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .3);
}

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

.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}

.main-bg {
    background: var(--dark-bg);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    /* background: rgba(255, 255, 255, .85); */
    background-color: var(--light-bg);
    backdrop-filter: blur(14px);
    /* border-bottom: 1px solid var(--border); */
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 19px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 28px;
    padding-top: 15px;
    font-family: var(--ff-heading);
    font-size: 18px;
    font-weight: 400;
}

.nav-links a {
    /* color: var(--ink-soft); */
    color: var(--primary-color);
    transition: color .2s;
    /* background: var(--light-bg); */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--ink);
}

@media (max-width:920px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        display: none;
        gap: 16px;
    }

    .nav-links.open {
        display: flex;
        background-color: var(--dark-bg);
        border-bottom: 0.5px solid var(--grey-color);
    }

    .nav-toggle {
        display: block;
    }

    .nav-cta .btn-outline {
        display: none;
    }
}

/* Breadcrumb */
.breadcrumb {
    font-size: 13.5px;
    color: var(--ink-soft);
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    opacity: .5;
}

/* Hero */
.hero {
    padding: 64px 0 88px;
    /* background: radial-gradient(circle at 85% 15%, rgba(0, 87, 255, .08), transparent 45%), var(--bg); */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

@media (max-width:940px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.hero h1 {
    font-size: clamp(32px, 4.4vw, 52px);
}

.hero .lead {
    font-size: 16px;
    max-width: 520px;
    color: var(--grey-color);
    font-family: var(--ff-bodyText);
    padding-top: 25px;
}

.bodytext {
    font-size: 1px;
    color: var(--grey-color);
    font-family: var(--ff-bodyText);
}

.trust-row {
    display: flex;
    gap: 8px 22px;
    flex-wrap: wrap;
    /* margin-top: 30px; */
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    /* color: var(--ink-soft); */
    /* color: var(--grey-color) */
    color: var(--primary-color);
    font-family: var(--ff-bodyText);
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
}

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

.hero-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-media img {
    width: 100%;
    height: 460px;
    object-fit: contain;
    /* transform: scale(1.2); */
    transition: transform .5s ease;
    /* background: #fff; */
    background: color-mix(in srgb,
            var(--primary-color) 10%,
            transparent);
}

.hero-media:hover img {
    transform: scale(1.04);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-badge .num {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}

.hero-badge small {
    display: block;
    color: var(--ink-soft);
    font-size: 12px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    justify-content: center;
}

/* .grid-4 .tech-stack:last-child {
    grid-column: 1 / -1;
    justify-self: center;
}

.grid-4 .tech-stack:last-child .image-row {
    justify-content: center;
} */

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

@media (max-width:920px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:620px) {

    .grid-3,
    .grid-4,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.card {
    /* background: #fff; */
    background: color-mix(in srgb,
            var(--grey-color) 10%,
            transparent);
    /* border: 0.5px solid var(--border); */
    border-radius: var(--radius-sm);
    padding: 30px 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb,
            var(--secondary-color) 30%,
            transparent);
    font-size: 22px;
    margin-bottom: 18px;
}

.special-text {
    font-family: var(--ff-heading);
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.color {
    color: var(--secondary-color);
}

.image-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.card h3 {
    font-size: 18px;
    font-weight: 500;
}

.card p {
    font-size: 14.5px;
    margin-bottom: 0;
}

/* Country / destination card */
.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 230px;
    box-shadow: var(--shadow-sm);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.dest-card:hover img {
    transform: scale(1.08);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 18, 32, .82), rgba(11, 18, 32, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.dest-overlay h3 {
    color: #fff;
    font-size: 17px;
    margin: 0;
}

/* Process timeline */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border);
}

.t-step {
    display: flex;
    gap: 22px;
    padding-bottom: 36px;
    position: relative;
}

.t-step:last-child {
    padding-bottom: 0;
}

.t-num {
    flex: 0 0 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--primary);
    z-index: 1;
    font-size: 18px;
}

.t-step.done .t-num {
    background: var(--primary);
    color: #fff;
}

.t-content h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.t-content p {
    font-size: 14.5px;
    margin-bottom: 0;
}

/* Documents */
.doc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
}

.doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 184, 148, .1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    font-size: 18px;
}

.doc-item span {
    font-size: 14.5px;
    font-weight: 600;
}

/* FAQ accordion */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 15.5px;
}

.faq-q .plus {
    transition: transform .3s ease;
    color: var(--primary);
    font-size: 20px;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-a p {
    padding: 0 22px 20px;
    font-size: 14.5px;
    margin: 0;
}

/* Testimonials */
.t-card {
    background: var(--bg-muted);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.stars {
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.t-quote {
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 18px;
}

.t-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: var(--ff-display);
    font-size: 15px;
}

.t-person strong {
    font-size: 14px;
    display: block;
}

.t-person small {
    color: var(--ink-soft);
    font-size: 12.5px;
}

/* Stats */
.stats-band {
    background: var(--bg-deep);
    border-radius: var(--radius-lg);
    padding: 52px 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

@media (max-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-num {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 40px);
    color: #fff;
}

.stat-label {
    color: #AEB8D0;
    font-size: 13.5px;
    margin-top: 4px;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(120deg, var(--primary), #3F7BFF 60%, var(--secondary));
    border-radius: var(--radius-lg);
    padding: 20px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(24px, 3.2vw, 34px);
}

.cta-banner p {
    color: rgba(255, 255, 255, .9);
    max-width: 520px;
    margin: 0 auto 26px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner .btn-outline {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
}

.cta-banner .btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

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

@media (max-width:860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--ff-body);
    font-size: 14.5px;
    background: var(--bg-muted);
    transition: border-color .2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.contact-info-card {
    background: var(--bg-muted);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.info-row {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.info-row .card-icon {
    margin-bottom: 0;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
}

.info-row strong {
    display: block;
    font-size: 14.5px;
}

.info-row span {
    font-size: 13.5px;
    color: var(--ink-soft);
} */

/* .map-placeholder {
  height: 200px;
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(45deg, var(--border) 0 2px, transparent 2px 14px), var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-top: 20px;
  border: 1px solid var(--border);
} */
.map-placeholder {
    width: 100%;
    height: 200px;
    margin-top: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    box-sizing: border-box;
}

.map-placeholder iframe {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border: 0;
}

/* Sticky mobile CTA */
.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid var(--border);
    display: none;
    gap: 10px;
    padding: 12px 16px;
    box-shadow: 0 -8px 24px rgba(11, 18, 32, .08);
}

@media (max-width:768px) {
    .mobile-sticky {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }
}

.mobile-sticky .btn {
    flex: 1;
    padding: 13px;
}

/* Floating WhatsApp */
.fab-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    /* box-shadow: 0 10px 26px rgba(37, 211, 102, .4); */
    z-index: 59;
    transition: transform .2s;
}

.fab-whatsapp:hover {
    transform: scale(1.08);
}

@media (min-width:769px) {
    .fab-whatsapp {
        bottom: 26px;
    }
}

/* Back to top */
.back-top {
    position: fixed;
    bottom: 90px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* background: var(--ink); */
    /* color: #fff; */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 58;
    cursor: pointer;
    opacity: .85;
    border: 0.5px solid var(--secondary-color);
    color: var(--secondary-color)
}

.back-top.show {
    display: flex;
}

@media (max-width:768px) {
    .back-top {
        /* right: 80px; */
        bottom: 155px;
        /* width: 40px;
        height: 40px; */
    }
}

/* Footer */
footer {
    background: var(--light-bg);
    color: var(--grey-color);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 44px;
}

@media (max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-grid h4 {
    color: #fff;
    font-size: 14.5px;
    margin-bottom: 16px;
    font-family: var(--ff-heading);
}

.footer-grid ul li {
    margin-bottom: 10px;
    font-size: 13.5px;
}

.footer-grid ul li a:hover {
    /* color: #fff; */
    color: var(--secondary-color)
}

.footer-brand p {
    /* color: #8592AD; */
    font-size: 13.5px;
    max-width: 280px;
    color: var(--grey-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: var(--grey-color);
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-row a {
    /* width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-row a:hover {
    background: var(--primary);
}

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

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

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}

.tech-stack {
    background: color-mix(in srgb,
            var(--grey-color) 10%,
            transparent);
    /* border: 0.5px solid var(--grey-color); */
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 15px 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    text-align: center;
}

.tech-stack h3 {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--ff-bodyText);
}

.image-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.image-row img {
    /* width: 40%; */
    /* height: auto; */
    /* display: block;
    justify-items: center;
    object-fit: cover; */
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Page banner (used on About/Contact) */
.page-banner {
    background: var(--bg-muted);
    padding: 52px 0 40px;
}

.page-banner h1 {
    font-size: clamp(28px, 3.6vw, 42px);
}

/* Value/team cards */
.value-card {
    text-align: center;
    padding: 26px 20px;
}

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

.team-photo {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 14px;
}

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


.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Second-level submenu */
.dropdown-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 180px;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1001;
}

/* Show Europe submenu on hover */
.dropdown-submenu:hover>.submenu {
    display: block;
}

.submenu li {
    width: 100%;
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.submenu li a:hover {
    background-color: #f5f5f5;
}

.site-footer {
    padding-top: 40px;
}


.main-layout-grid {
    max-width: 1280px;
    margin: 30px auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.content-card {
    min-width: 0;
    max-width: 100%;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.content-card h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6rem;
    border-bottom: 2px solid #e3f2fd;
    padding-bottom: 8px;
}

.content-card p {
    margin-bottom: 15px;
    color: #444;
}

.content-card ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-card li {
    margin-bottom: 8px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.highlight-item {
    background-color: #f0f4f9;
    padding: 15px;
    border-left: 4px solid var(--primary-dark);
    border-radius: 4px;
}

.highlight-item h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.highlight-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.sidebar {
    position: relative;
}

.sticky-widget {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent-color);
}

.form-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background-color: #e66000;
}

.forum-card {
    background: #eef3fc;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid #d0e1fd;
}

.forum-card-1 {
    background: #eef3fc;
    padding: 2px;
    border-radius: var(--radius);
    border: 1px solid #d0e1fd;
}

.forum-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.forum-thread {
    font-size: 0.88rem;
    padding: 8px 0;
    border-bottom: 1px solid #d0e1fd;
}

.forum-thread:last-child {
    border-bottom: none;
}

.forum-thread a {
    font-weight: 600;
    color: #222;
}

.forum-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (max-width: 900px) {
    .main-layout-grid {
        grid-template-columns: 1fr;
    }

    .sticky-widget {
        position: static;
    }

    .nav-links {
        display: none;
    }
}

.main-content {
    min-width: 0;
}

.table-responsive {
    min-width: 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.table-responsive th,
.table-responsive td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.table-responsive th {
    font-weight: 600;
}


.stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stat {
    padding: 36px 32px;
    text-align: center;
    border-right: 1px solid var(--line);
}

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

.stat .num {
    /* font-family: 'Space Grotesk', sans-serif; */
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 34px;
    color: var(--secondary-color);
}

.stat .lbl {
    font-family: var(--ff-bodyText);
    font-size: 16px;
    color: var(--primary-color);
    /* text-transform: uppercase; */
    letter-spacing: 0.08em;
    margin-top: 6px;
}

/* ===== TECH STACK ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tech-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 22px;
    background: var(--surface);
}

.tech-card h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.tech-card .items {
    font-size: 14.5px;
    color: var(--grey-color);
    line-height: 1.6;
}

.section-pad {
    padding: 100px 0;
}

/* ===== PROCESS (signature repeated) ===== */
.process-panel {
    /* background: var(--surface); */
    background: color-mix(in srgb,
            var(--grey-color) 10%,
            transparent);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 40px 32px;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 0;
}

.process-row::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0%;
    right: 0%;
    height: 1px;
    background: var(--grey-color);
}

.proc-step {
    position: relative;
    padding-top: 34px;
    padding-right: 20px;
}

.proc-step:last-child {
    padding-right: 0;
}

.proc-dot {
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary-color);
    /* background: color-mix(in srgb,
            var(--grey-color) 100%,
            transparent); */
    border: 2px solid var(--secondary-color);
}

.proc-step .daylabel {
    /* font-family: 'JetBrains Mono', monospace; */
    font-family: var(--ff-heading);
    font-size: 11.5px;
    color: var(--secondary-color);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    display: block;
}

.proc-step h4 {
    /* font-family: 'Space Grotesk', sans-serif; */
    font-family: var(--ff-heading);
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 6px;
}

.proc-step p {
    font-size: 13px;
    color: var(--grey-color);
    line-height: 1.5;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--grey-color);
}

.check-item .c {
    width: 19px;
    height: 19px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 11px;
    color: var(--primary-color);
    background: color-mix(in srgb,
            var(--secondary-color) 30%,
            transparent);
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.proj-card {
    /* background: var(--surface); */
    background: color-mix(in srgb,
            var(--grey-color) 10%,
            transparent);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 30px 26px;
}

.proj-top {
    display: flex;
    /* justify-content: space-between; */
    gap: 15px;
    align-items: center;
    margin-bottom: 8px;
}

.image {
    width: 70px;
    height: 70px;
}

.proj-card h3 {
    font-size: 20px;
    font-weight: 500;
}

.proj-status {
    /* font-family: 'JetBrains Mono', monospace; */
    font-size: 10.5px;
    padding: 5px 10px;
    border-radius: 100px;
    white-space: nowrap;
    margin-top: 3px;
}

.status-client {
    color: var(--secondary-color);
    background: color-mix(in srgb,
            var(--secondary-color) 30%,
            transparent);

}

.status-studio {
    color: var(--secondary-color);
    background: color-mix(in srgb,
            var(--primary-color) 10%,
            transparent);
}

.proj-card p {
    font-size: 14px;
    color: var(--grey-color);
    line-height: 1.65;
    margin-bottom: 20px;
}

.proj-platforms {
    display: flex;
    gap: 8px;
    align-items: center;
    /* font-family: 'JetBrains Mono', monospace; */
    font-size: 11.5px;
    color: var(--grey-color);
    justify-content: space-between;
}

.proj-img {
    height: 50px;
    width: 50px;
    /* border: 0.5px solid var(--grey-color);
    border-radius: 100px;
    padding: 4px 10px; */
}

.plat-pill {
    border: 0.5px solid var(--grey-color);
    border-radius: 100px;
    padding: 4px 10px;
    margin-right: 5px;
    cursor: pointer;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    color: var(--grey-color);
}

.contact-info h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 380px;
}

.info-row {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.info-row .ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    padding: 8px;
    filter: brightness(0) invert(1);
    background: color-mix(in srgb,
            var(--light-bg) 10%,
            transparent);
}

.info-row span {
    font-size: 14.5px;
    color: var(--text-mute);
}

.response-badge {
    margin-top: 28px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-family: var(--ff-bodyText);
    font-size: 12.5px;
    color: var(--teal);
    border: 1px solid var(--line);
    padding: 10px 16px;
    border-radius: 100px;
    /* border-radius: 9px; */
}

.response-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
}

form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 12.5px;
    color: var(--text-dim);
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: var(--light-bg);
    border: 0.5px solid var(--grey-color);
    color: var(--text);
    padding: 13px 14px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    outline: none;
    transition: border-color .2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--brass);
}

.field {
    margin-bottom: 18px;
}

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

.submit-btn {
    width: 100%;
    background: var(--secondary-color);
    color: var(--dark-bg);
    font-weight: 500;
    font-size: 18px;
    padding: 15px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background .2s;
    font-family: var(--ff-heading);
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.sec-btn {
    /* width: 100%; */
    background: var(--secondary-color);
    color: var(--dark-bg);
    font-weight: 500;
    font-size: 18px;
    padding: 8px 15px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background .2s;
    font-family: var(--ff-heading);
}

.sec-btn:hover {
    background: var(--secondary-color);
}

/* ===== PRIVACY PAGE ===== */
.layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 760px);
    justify-content: center;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 32px 120px;
}

/* ---------- Sidebar ---------- */
.privacy-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.privacy-sidebar-label {
    font-family: var(--ff-heading);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.toc {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc li {
    margin-bottom: 2px;
}

.toc a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.87rem;
    padding: 7px 10px;
    border-radius: 7px;
    border-left: 2px solid transparent;
    transition: color .15s ease, background .15s ease, border-color .15s ease;
}

.toc a .num {
    /* font-family: var(--font-mono); */
    font-family: var(--ff-heading);
    color: var(--primary-color);
    font-size: 0.78rem;
}

.toc a:hover {
    color: var(--secondary-color);
    background: color-mix(in srgb,
            var(--secondary-color) 10%,
            transparent);
}

.toc a.active {
    color: var(--secondary-color);
    background: color-mix(in srgb,
            var(--secondary-color) 10%,
            transparent);
    border-left-color: var(--secondary-color);
    font-weight: 600;
}

.start {
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 40px;
}

.start h1 {
    font-size: clamp(32px, 4.4vw, 52px);
}

.start-sub {
    color: var(--slate-500);
    font-size: 1.05rem;
    max-width: 58ch;
    margin: 0 0 20px;
}

.updated-badge {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--navy-800);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.updated-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: inline-block;
}

.bold-strong {
    color: color-mix(in srgb,
            var(--secondary-color) 60%,
            transparent);
    /* font-weight: bold; */
}

/* ---------- Data journey strip (signature element) ---------- */
.journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 28px 0 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    /* background: var(--accent-color); */
    background: color-mix(in srgb,
            var(--secondary-color) 10%,
            transparent);
}

.journey-step {
    padding: 18px 16px;
    position: relative;
    border-right: 1px solid var(--line);
}

.journey-step:last-child {
    border-right: none;
}

.journey-step .jnum {
    /* font-family: var(--font-mono); */
    font-family: var(--ff-heading);
    font-size: 0.78rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 8px;
}

.journey-step .jtitle {
    /* font-family: var(--font-display); */
    font-size: var(--ff-bodyText);
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.journey-step .jdesc {
    font-size: 0.78rem;
    color: var(--grey-color);
    line-height: 1.4;
}

.journey-step::after {
    content: "→";
    position: absolute;
    right: -11px;
    top: 20px;
    color: var(--slate-400);
    font-size: 0.9rem;
    z-index: 2;
}

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

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 18px 0;
}

.info-card {
    /* background: var(--panel); */
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px 18px;
    background: color-mix(in srgb,
            var(--grey-color) 10%,
            transparent);
}

.info-card .tag {
    /* font-family: var(--font-mono); */
    font-family: var(--ff-bodyText);
    font-size: 0.78rem;
    /* text-transform: uppercase; */
    letter-spacing: 0.08em;
    /* color: var(--indigo-600); */
    color: var(--secondary-color);
    display: block;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--slate-500);
}

/* ---------- Sections ---------- */
.sections {
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 90px;
}

.sections:last-of-type {
    border-bottom: none;
}

.sections-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.sections-head .snum {
    font-family: var(--ff-heading);
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.sections-head .h2 {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: -0.01em;
    /* color: var(--primary-color) */
}

.sections-head .p {
    margin: 0 0 14px;
    color: var(--primary-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.88rem;
}

th,
td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

th {
    font-family: var(--ff-bodyText);
    font-size: 0.78rem;

    /* text-transform: uppercase; */
    letter-spacing: 0.06em;
    /* color: var(--slate-500); */
    font-weight: 500;
    color: color-mix(in srgb,
            var(--secondary-color) 60%,
            transparent);
}

ul.bullet-list {
    list-style-type: disc;
    padding-left: 20px;
}

.callout {
    background: color-mix(in srgb,
            var(--grey-color) 10%,
            transparent);
    color: #fff;
    border-radius: 12px;
    padding: 24px 26px;
    margin: 20px 0;
}

.callout h3 {
    color: #fff;
    margin-top: 0;
}

.callout p {
    color: var(--slate-400);
    font-size: 0.92rem;
}

.callout a {
    color: var(--secondary-color);
}

.contact-block {
    background: color-mix(in srgb,
            var(--grey-color) 10%,
            transparent);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px 28px;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row span:first-child {
    color: var(--slate-500);
    /* font-family: var(--font-mono); */
    font-family: var(--ff-heading);
    font-size: 0.99rem;
}



/* Mobile Responsive */
@media (max-width: 900px) {

    .tech-grid,

    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    .table-responsive table {
        min-width: 700px;
    }

    .table-responsive th,
    .table-responsive td {
        padding: 8px;
        font-size: 14px;
    }

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

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .process-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }

    .process-row::before {
        display: none;
    }

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

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

}


@media (max-width: 640px) {
    .wrap {
        padding: 0 20px;
    }

    .tech-grid,
    .section-pad {
        padding: 64px 0;
    }

    .process-row {
        grid-template-columns: 1fr;
    }

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


@media (max-width: 880px) {
    .layout {
        grid-template-columns: 1fr;
        padding: 24px 20px 80px;
        gap: 0;
    }

    .privacy-sidebar {
        position: static;
        max-height: none;
        display: none;
        border: 1px solid var(--line);
        background: var(--panel);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 28px;
    }

    .privacy-sidebar.open {
        display: block;
    }

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

    .journey-step:nth-child(2)::after {
        display: none;
    }

    .journey-step:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

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