/* ============================================================
   LOCALGUIDE 2 - Figma 1:1 implementation
   ============================================================ */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

:target,
section[id],
form[id] {
    /* sticky nav is 80px tall — keep heading clear of it */
    scroll-margin-top: 104px;
}

/* ============================================================
   Scroll animations — reveal + parallax base
   JS sets --parallax-y; per-element rules below compose it with
   any existing transform so we never overwrite centering, etc.
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 1.05s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 1.05s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    [data-parallax] {
        --parallax-y: 0px !important;
    }
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: #101828;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================================
   BLOCK 1 - HERO HEADER SECTION
   ============================================================ */
.lg2-hero {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

/* ---------- Background grid pattern ---------- */
.lg2-hero__pattern {
    position: absolute;
    /* nav moved outside hero — shift pattern up 80px so visible position stays the same */
    top: -80px;
    left: 50%;
    transform: translateX(-50%) translateY(var(--parallax-y, 0px));
    width: 1920px;
    height: 1440px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(ellipse 720px 720px at center 360px, #000 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 720px 720px at center 360px, #000 60%, transparent 100%);
}

.lg2-hero__pattern-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.lg2-hero__pattern-vertical,
.lg2-hero__pattern-horizontal {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ---------- NAVBAR (sticky, lives outside hero) ---------- */
.lg2-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.lg2-nav__container {
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lg2-nav__logo {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.lg2-nav__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.lg2-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lg2-nav__links a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    white-space: nowrap;
    transition: color 0.2s;
}

.lg2-nav__links a:hover {
    color: #1dadc0;
}

.lg2-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lg2-nav__menu {
    display: contents;
}

.lg2-nav__hamburger {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.lg2-nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #101828;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

/* ---------- BUTTONS ---------- */
.lg2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    white-space: nowrap;
}

.lg2-btn--sm {
    padding: 10px 16px;
    font-size: 16px;
    line-height: 24px;
    gap: 6px;
}

.lg2-btn--teal {
    background: #1dadc0;
    border-color: #33d0e3;
    color: #ffffff;
    padding: 16px 22px;
    font-size: 18px;
    line-height: 28px;
}

.lg2-btn--teal.lg2-btn--sm {
    border-color: #1dadc0;
}

.lg2-btn--teal:hover {
    background: #189aab;
}

.lg2-btn--outline {
    background: #ffffff;
    border-color: #d0d5dd;
    color: #344054;
    padding: 16px 22px;
    font-size: 18px;
    line-height: 28px;
}

.lg2-btn--outline:hover {
    background: #f9fafb;
}

.lg2-btn--outline img {
    width: 24px;
    height: 24px;
}

/* ---------- HERO BODY ---------- */
.lg2-hero__body {
    position: relative;
    z-index: 2;
    padding: 64px 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

/* Decorative line behind content */
.lg2-hero__line {
    position: absolute;
    top: 156px;
    left: 50%;
    transform: translateX(-50%) translateY(var(--parallax-y, 0px));
    width: 2000px;
    max-width: none;
    height: 673px;
    pointer-events: none;
    z-index: 1;
}

.lg2-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.lg2-hero__content {
    width: 100%;
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.lg2-hero__heading-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

/* Badge group */
.lg2-badge-group {
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    padding: 4px 10px 4px 4px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    filter: drop-shadow(0px 1px 1px rgba(16, 24, 40, 0.05));
}

.lg2-badge {
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 2px 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    filter: drop-shadow(0px 1px 1px rgba(16, 24, 40, 0.05));
}

.lg2-badge__dot {
    width: 8px;
    height: 8px;
    background: #17b26a;
    border-radius: 50%;
    flex-shrink: 0;
}

.lg2-badge__text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    white-space: nowrap;
}

.lg2-badge-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lg2-badge-date__icon {
    width: 16px;
    height: 16px;
}

.lg2-badge-date span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    white-space: nowrap;
}

/* Hero title */
.lg2-hero__title {
    margin: 0;
    text-align: center;
    color: #101828;
    font-weight: 600;
    letter-spacing: -1.2px;
    line-height: 72px;
}

.lg2-hero__title-script {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    color: #ef476f;
    font-size: 60px;
    line-height: 72px;
}

.lg2-hero__title-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #101828;
    font-size: 60px;
    line-height: 72px;
    margin-left: 16px;
}

/* Sub heading row */
.lg2-hero__sub {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

.lg2-hero__sub-voi {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
}

.lg2-ello-word {
    display: inline-flex;
    align-items: flex-end;
    gap: 1px;
    font-family: 'Pacifico', cursive;
    font-size: 40px;
    line-height: 40px;
}

.lg2-ello-E { color: #ef476f; }
.lg2-ello-l1 { color: #ffd166; }
.lg2-ello-l2 { color: #06d6a0; }
.lg2-ello-o { color: #9752da; }

.lg2-hero__sub-danang {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #073b4c;
}

.lg2-hero__sub-bullet {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
    margin: 0 4px;
}

.lg2-hero__sub-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
}

/* Hero action buttons */
.lg2-hero__actions {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* ---------- HERO MEDIA ---------- */
.lg2-hero__media-wrap {
    position: relative;
    width: 100%;
    max-width: 1280px;
    padding: 32px 32px 0;
    z-index: 2;
}

.lg2-hero__media {
    position: relative;
    width: 100%;
    height: 480px;
    background: #eaecf0;
    border-radius: 24px;
    overflow: hidden;
}

.lg2-hero__media-photo {
    position: absolute;
    bottom: -52px;
    left: calc(50% + 9px);
    transform: translateX(-50%) translateY(var(--parallax-y, 0px));
    width: 1234px;
    height: 645px;
    pointer-events: none;
}

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

.lg2-hero__media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.lg2-hero__phone {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 315px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE - MOBILE (block 1)
   ============================================================ */
@media (max-width: 900px) {
    .lg2-nav__hamburger {
        display: inline-flex;
    }

    .lg2-nav__container {
        padding: 0 20px;
    }

    .lg2-nav__logo {
        width: 48px;
        height: 48px;
    }

    /* Mobile drawer */
    .lg2-nav__menu {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: absolute;
        top: calc(100% + 4px);
        left: 16px;
        right: 16px;
        background: #ffffff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12), 0 0 0 1px rgba(16, 24, 40, 0.04);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 100;
    }

    .lg2-nav.is-open .lg2-nav__menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .lg2-nav__links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .lg2-nav__links a {
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 16px;
        line-height: 24px;
        color: #101828;
    }

    .lg2-nav__links a:hover {
        background: #f2f4f7;
        color: #101828;
    }

    .lg2-nav__actions {
        display: flex;
        flex-direction: column;
        padding-top: 12px;
        border-top: 1px solid #eaecf0;
    }

    .lg2-nav__actions .lg2-btn {
        width: 100%;
        justify-content: center;
    }

    /* Hamburger → X icon when open */
    .lg2-nav.is-open .lg2-nav__hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .lg2-nav.is-open .lg2-nav__hamburger span:nth-child(2) {
        opacity: 0;
    }
    .lg2-nav.is-open .lg2-nav__hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .lg2-hero__body {
        padding: 24px 0 140px;
        gap: 32px;
    }

    .lg2-hero__inner {
        padding: 0 20px;
        gap: 24px;
        align-items: stretch;
    }

    .lg2-hero__content {
        align-items: flex-start;
        gap: 16px;
        max-width: 100%;
    }

    .lg2-hero__heading-wrap {
        align-items: flex-start;
        gap: 12px;
    }

    .lg2-badge-group {
        align-self: flex-start;
    }

    .lg2-hero__title {
        text-align: left;
        line-height: 1.1;
    }

    .lg2-hero__title-script {
        display: block;
        font-size: 44px;
        line-height: 56px;
    }

    .lg2-hero__title-bold {
        display: block;
        font-size: 36px;
        line-height: 44px;
        margin-left: 0;
        letter-spacing: -1px;
    }

    .lg2-hero__sub {
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        row-gap: 4px;
    }

    .lg2-hero__sub-voi {
        font-size: 18px;
        line-height: 28px;
    }

    .lg2-ello-word {
        font-size: 36px;
        line-height: 36px;
    }

    .lg2-hero__sub-danang {
        font-size: 22px;
        line-height: 28px;
    }

    .lg2-hero__sub-bullet {
        display: none;
    }

    .lg2-hero__sub-desc {
        display: block;
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        margin-top: 4px;
    }

    .lg2-hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .lg2-btn--teal,
    .lg2-btn--outline {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        line-height: 24px;
    }

    /* Teal button comes first on mobile */
    .lg2-hero__actions {
        flex-direction: column-reverse;
    }

    .lg2-hero__line {
        top: 360px;
        width: 700px;
        height: 280px;
    }

    .lg2-hero__media-wrap {
        padding: 8px 20px 0;
    }

    .lg2-hero__media {
        height: 320px;
        border-radius: 16px;
    }

    .lg2-hero__media-photo {
        width: 720px;
        height: 380px;
        bottom: -32px;
    }

    .lg2-hero__phone {
        width: 220px;
        top: 8px;
    }
}

@media (max-width: 480px) {
    .lg2-hero__title-script {
        font-size: 36px;
        line-height: 44px;
    }

    .lg2-hero__title-bold {
        font-size: 30px;
        line-height: 38px;
    }

    .lg2-ello-word {
        font-size: 30px;
        line-height: 30px;
    }

    .lg2-hero__sub-danang {
        font-size: 20px;
    }

    .lg2-hero__media {
        height: 260px;
    }

    .lg2-hero__media-photo {
        width: 560px;
        height: 320px;
        bottom: -20px;
    }

    .lg2-hero__phone {
        width: 180px;
        top: 12px;
    }
}

/* ============================================================
   BLOCK 2 - FEATURES SECTION (Linh hoạt)
   ============================================================ */
.lg2-features {
    position: relative;
    background: #f2f4f7;
    padding: 64px 80px;
    overflow: hidden;
}

.lg2-features__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + var(--parallax-y, 0px)));
    width: 1438.76px;
    height: 905.888px;
    max-width: none;
    pointer-events: none;
    z-index: 0;
}

.lg2-features__container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.lg2-features__heading {
    width: 100%;
    max-width: 768px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.lg2-features__title {
    margin: 0;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -0.72px;
    color: #ef476f;
    width: 100%;
}

.lg2-features__sub {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
    width: 100%;
}

/* ---------- Grid: cards | phone | description ---------- */
.lg2-features__grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    position: relative;
}

/* Left: 3 cards, right-aligned, increasing width */
.lg2-features__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
    justify-content: center;
    width: 519px;
    flex-shrink: 0;
}

.lg2-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    filter: drop-shadow(0 1px 2px rgba(12, 12, 13, 0.1)) drop-shadow(0 1px 2px rgba(12, 12, 13, 0.05));
}

.lg2-feature-card--w1 { width: 303px; }
.lg2-feature-card--w2 { width: 410px; }
.lg2-feature-card--w3 { width: 100%; }

.lg2-feature-card__icon {
    background: #fecad5;
    border: 8px solid #fffafb;
    border-radius: 28px;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
    margin: -8px;
}

.lg2-feature-card__icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.lg2-feature-card__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.lg2-feature-card__text h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #101828;
}

.lg2-feature-card__text p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
}

/* Center: phone */
.lg2-features__phone {
    position: relative;
    width: 302px;
    height: 470px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg2-features__phone img {
    position: absolute;
    top: 50%;
    left: calc(50% + 0.5px);
    transform: translate(-50%, -50%);
    width: 271px;
    height: 560px;
    object-fit: contain;
    pointer-events: none;
}

/* Right: description */
.lg2-features__desc {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #101828;
}

.lg2-features__desc p {
    margin: 0;
    width: 302px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.lg2-features__desc-body em {
    font-style: italic;
    font-weight: 500;
    color: #ef476f;
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 1100px) {
    .lg2-features {
        padding: 48px 40px;
    }

    .lg2-features__grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .lg2-features__cards {
        width: 100%;
        max-width: 520px;
        align-items: stretch;
    }

    .lg2-feature-card--w1,
    .lg2-feature-card--w2,
    .lg2-feature-card--w3 {
        width: 100%;
    }

    .lg2-features__phone {
        height: 560px;
    }

    .lg2-features__phone img {
        position: static;
        transform: none;
        display: block;
        margin: 0 auto;
    }

    .lg2-features__desc {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .lg2-features__desc p {
        width: 100%;
        max-width: 520px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .lg2-features {
        padding: 40px 20px;
    }

    .lg2-features__container {
        gap: 32px;
    }

    .lg2-features__heading {
        gap: 12px;
    }

    .lg2-features__title {
        font-size: 30px;
        line-height: 36px;
    }

    .lg2-features__sub {
        font-size: 16px;
        line-height: 24px;
    }

    .lg2-features__grid {
        gap: 24px;
    }

    .lg2-features__cards {
        gap: 16px;
    }

    .lg2-feature-card {
        padding: 14px;
        gap: 14px;
    }

    .lg2-feature-card__text h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .lg2-feature-card__text p {
        font-size: 15px;
        line-height: 22px;
    }

    .lg2-features__phone {
        width: 260px;
        height: 500px;
    }

    .lg2-features__phone img {
        width: 240px;
        height: 500px;
    }

    .lg2-features__desc p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ============================================================
   BLOCK 3 - PERSONALIZATION SECTION (Tạo tour theo cách của riêng bạn)
   ============================================================ */
.lg2-perso {
    background: #ffffff;
    padding: 64px 80px;
}

.lg2-perso__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.lg2-perso__heading {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.lg2-perso__eyebrow {
    display: none;
    margin: 0;
}

.lg2-perso__title {
    margin: 0;
    text-align: center;
    width: 100%;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -0.72px;
}

.lg2-perso__title-1 {
    font-family: 'Pacifico', cursive;
    color: #fab010;
}

.lg2-perso__title-2 {
    font-family: 'Pacifico', cursive;
    background: linear-gradient(2.68deg, #ff7a00 0%, #ffd439 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lg2-perso__sub {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
    text-align: center;
    width: 100%;
}

/* Cards grid */
.lg2-perso__grid {
    width: 100%;
    height: 560px;
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.lg2-perso-card {
    background: #f2f4f7;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(12, 12, 13, 0.1), 0 1px 4px rgba(12, 12, 13, 0.05);
    overflow: hidden;
    position: relative;
}

.lg2-perso-card h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: #101828;
}

.lg2-perso-card p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #475467;
}

/* ---- Left big card: Không nhàm chán + phone hand ---- */
.lg2-perso-card--big {
    width: 411px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 16px 0;
    gap: 16px;
}

.lg2-perso-card--big .lg2-perso-card__text {
    text-align: center;
    width: 100%;
}

.lg2-perso-card--big .lg2-perso-card__text h3 {
    text-align: center;
}

.lg2-perso-card--big .lg2-perso-card__text p {
    text-align: center;
}

.lg2-perso-card__phone {
    width: 307px;
    height: 401px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.lg2-perso-card__phone img {
    position: absolute;
    top: -0.25%;
    left: 0;
    width: 121.5%;
    height: 131.77%;
    max-width: none;
}

/* ---- Middle column ---- */
.lg2-perso__middle {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
}

/* Top middle: Không giới hạn */
.lg2-perso-card--limit {
    flex: 1 0 0;
    min-height: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    overflow: hidden;
}

.lg2-perso-card__lightbulb {
    width: 90px;
    height: 100.732px;
    flex-shrink: 0;
}

.lg2-perso-card__lightbulb img {
    width: 100%;
    height: 100%;
    display: block;
}

.lg2-perso-card__text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.lg2-perso-card__char {
    position: absolute;
    top: 5px;
    left: 314px;
    width: 162px;
    height: 171px;
    pointer-events: none;
}

.lg2-perso__middle-row {
    display: flex;
    flex: 1 0 0;
    min-height: 0;
    gap: 32px;
}

/* Cá nhân hoá */
.lg2-perso-card--moto {
    flex: 1 0 0;
    min-width: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lg2-perso-card__moto {
    width: 150px;
    height: 190px;
    display: block;
}

.lg2-perso-card--moto h3 {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

/* 100% */
.lg2-perso-card--percent {
    flex: 1 0 0;
    min-width: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.lg2-perso-card--percent .lg2-perso-card__big-num {
    margin: 0;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 56px;
    line-height: 68px;
    letter-spacing: -1.12px;
    background-image: url('../images/lg2/block3-text-100-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lg2-perso-card--percent .lg2-perso-card__small {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: #475467;
}

/* ---- Right card: Không công nghiệp ---- */
.lg2-perso-card--right {
    flex-shrink: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.lg2-perso-card__compass {
    width: 380px;
    height: 345px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.lg2-perso-card__compass img {
    position: absolute;
    top: -92.5%;
    left: 0;
    width: 100%;
    height: 238.12%;
    max-width: none;
}

.lg2-perso-card--right .lg2-perso-card__text {
    width: 379px;
    text-align: center;
}

.lg2-perso-card--right .lg2-perso-card__text h3 {
    text-align: center;
    width: 100%;
}

.lg2-perso-card--right .lg2-perso-card__text p {
    text-align: center;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
}

/* ---- Responsive: Tablet & Mobile ---- */
@media (max-width: 1100px) {
    .lg2-perso {
        padding: 48px 40px;
    }

    .lg2-perso__container {
        gap: 40px;
    }

    .lg2-perso__grid {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .lg2-perso-card--big,
    .lg2-perso-card--right {
        width: 100%;
    }

    .lg2-perso__middle {
        width: 100%;
        height: auto;
    }

    .lg2-perso-card__char {
        display: none;
    }

    .lg2-perso-card--limit {
        flex-direction: row;
        align-items: center;
        flex: 0 0 auto;
    }

    .lg2-perso__middle-row {
        flex: 0 0 auto;
    }
}

@media (max-width: 600px) {
    .lg2-perso {
        padding: 32px 16px;
    }

    .lg2-perso__container {
        gap: 24px;
    }

    .lg2-perso__heading {
        gap: 16px;
        max-width: 100%;
    }

    .lg2-perso__title {
        font-family: 'Pacifico', cursive;
        font-weight: 400;
        font-size: 30px;
        line-height: 38px;
        letter-spacing: 0;
        text-align: center;
        color: #fab010;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .lg2-perso__title-1,
    .lg2-perso__title-2 {
        font-family: 'Pacifico', cursive;
        font-weight: 400;
        font-size: 30px;
        line-height: 38px;
        color: #fab010;
        background: none;
        -webkit-background-clip: initial;
        background-clip: initial;
        -webkit-text-fill-color: #fab010;
    }

    .lg2-perso__sub {
        font-size: 18px;
        line-height: 28px;
    }

    /* All cards full width */
    .lg2-perso-card--big {
        padding: 16px 16px 0;
        gap: 16px;
    }

    .lg2-perso-card--big h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .lg2-perso-card--big p {
        font-size: 16px;
        line-height: 24px;
    }

    .lg2-perso-card__phone {
        width: 244px;
        height: 318.71px;
    }

    /* Không giới hạn - horizontal on mobile */
    .lg2-perso-card--limit {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 16px;
    }

    .lg2-perso-card--limit .lg2-perso-card__text-block {
        flex: 1 0 0;
        min-width: 0;
        gap: 8px;
    }

    .lg2-perso-card--limit h3 {
        font-size: 20px;
        line-height: 30px;
        white-space: nowrap;
    }

    .lg2-perso-card--limit p {
        font-size: 16px;
        line-height: 24px;
    }

    /* Cá nhân hoá */
    .lg2-perso-card--moto {
        padding: 16px;
        flex: 0 0 auto;
    }

    .lg2-perso-card__moto {
        width: 142px;
        height: 180px;
    }

    /* 100% card */
    .lg2-perso-card--percent {
        height: 124px;
        padding: 16px;
        flex: 0 0 auto;
    }

    .lg2-perso-card--percent .lg2-perso-card__small {
        font-size: 16px;
        line-height: 24px;
    }

    .lg2-perso-card--percent .lg2-perso-card__big-num {
        background-image: url('../images/lg2/block3-text-100-bg-mobile.png');
    }

    /* Không công nghiệp */
    .lg2-perso-card--right {
        padding: 16px;
        gap: 16px;
    }

    .lg2-perso-card__compass {
        width: 100%;
        height: auto;
        aspect-ratio: 704 / 640;
    }

    .lg2-perso-card--right .lg2-perso-card__text {
        width: 100%;
    }

    .lg2-perso-card--right h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .lg2-perso-card--right .lg2-perso-card__text p {
        font-size: 16px;
        line-height: 24px;
    }

    .lg2-perso__middle-row {
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================================
   BLOCK 4 - LOVE / INTERESTS (Bạn "yêu" điều gì nhất?)
   ============================================================ */
.lg2-love {
    background: #f2f4f7;
    padding: 64px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.lg2-love__bg {
    position: absolute;
    top: -35px;
    left: calc(66.67% + 55px);
    width: 475px;
    height: 511px;
    background-image: url('../images/lg2/block4-bg-char.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    pointer-events: none;
    z-index: 0;
    transform: translateY(var(--parallax-y, 0px));
}

.lg2-love__heading-wrap {
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.lg2-love__heading {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.lg2-love__title {
    margin: 0;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: #03a374;
    text-align: center;
    width: 100%;
}

.lg2-love__sub {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.lg2-love__sub p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
    text-align: center;
    width: 100%;
}

.lg2-love__sub-em {
    font-style: italic;
    font-weight: 500;
    color: #03a374;
}

/* Cards row */
.lg2-love__cards {
    width: 100%;
    display: flex;
    gap: 24px;
    height: 560px;
    position: relative;
    z-index: 1;
}

.lg2-love-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(12, 12, 13, 0.1), 0 1px 4px rgba(12, 12, 13, 0.05);
    background: #f2f4f7;
    height: 100%;
}

.lg2-love-card--main {
    width: 411px;
    flex-shrink: 0;
    z-index: 5;
}

.lg2-love-card--narrow {
    flex: 1 0 0;
    min-width: 0;
}

.lg2-love-card--c2 { z-index: 4; }
.lg2-love-card--c3 { z-index: 3; }
.lg2-love-card--c4 { z-index: 2; }
.lg2-love-card--c5 { z-index: 1; }

.lg2-love-card__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lg2-love-card__img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: cover;
}

.lg2-love-card__img-wrap--dim::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
}

/* Per-card object-position - matches Figma framing at any viewport */
.lg2-love-card--main .lg2-love-card__img-wrap img { object-position: 57% 50%; }
.lg2-love-card--c2 .lg2-love-card__img-wrap img { object-position: 67% 50%; }
.lg2-love-card--c3 .lg2-love-card__img-wrap img { object-position: 57% 50%; }
.lg2-love-card--c4 .lg2-love-card__img-wrap img { object-position: 50% 50%; }
.lg2-love-card--c5 .lg2-love-card__img-wrap img { object-position: 15% 50%; }

/* Header overlay */
.lg2-love-card__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
    display: flex;
}

.lg2-love-card__header--right {
    justify-content: flex-end;
}

.lg2-love-card__glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
}

.lg2-love-card__glass--full {
    width: 100%;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.lg2-love-card__glass--full h3 {
    margin: 0;
    flex: 1 0 0;
    min-width: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: #ffffff;
}

.lg2-love-card__arrow-sm {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.lg2-love-card__glass--icon {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lg2-love-card__glass--icon img {
    width: 20px;
    height: 20px;
    display: block;
}

/* ---------- Responsive: Tablet & Mobile ---------- */
@media (max-width: 1100px) {
    .lg2-love {
        padding: 48px 40px;
        gap: 32px;
    }

    .lg2-love__cards {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .lg2-love-card--main {
        width: 100%;
        height: 343px;
    }

    .lg2-love-card--narrow {
        flex: 0 0 84px;
        width: 100%;
        height: 84px;
    }

    /* Mobile object-position - cards 2-5 are short banners with lots of vertical crop */
    .lg2-love-card--main .lg2-love-card__img-wrap img { object-position: 55% 50%; }
    .lg2-love-card--c2 .lg2-love-card__img-wrap img { object-position: 50% 19%; }
    .lg2-love-card--c3 .lg2-love-card__img-wrap img { object-position: 50% 63%; }
    .lg2-love-card--c4 .lg2-love-card__img-wrap img { object-position: 50% 50%; }
    .lg2-love-card--c5 .lg2-love-card__img-wrap img { object-position: 50% 22%; }

    /* Glass card stretches full card width (minus header padding) on mobile/tablet */
    .lg2-love-card--main .lg2-love-card__glass--full {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .lg2-love {
        padding: 32px 16px;
        gap: 24px;
    }

    .lg2-love__heading-wrap {
        padding: 0 16px;
    }

    .lg2-love__heading {
        gap: 16px;
        text-align: center;
    }

    .lg2-love__title {
        font-size: 30px;
        line-height: 38px;
        text-align: center;
    }

    .lg2-love__sub p {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }

    /* Mobile bg vector position + image swap */
    .lg2-love__bg {
        background-image: url('../images/lg2/block4-bg-char-mobile.png');
        top: 8.29px;
        left: 142px;
        width: 268px;
        height: 288px;
    }
}

/* ============================================================
   BLOCK 5 - BRAND BUILDING (Xây dựng thương hiệu cá nhân)
   ============================================================ */
.lg2-brand {
    background: #ffffff;
    padding: 64px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.lg2-brand__airplane-bg {
    position: absolute;
    top: 209px;
    left: 45px;
    width: 1354px;
    height: 525px;
    background-image: url('../images/lg2/block5-airplane-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: translateY(var(--parallax-y, 0px));
}

.lg2-brand__heading {
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lg2-brand__title {
    margin: 0;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: #7740bf;
    white-space: nowrap;
}

.lg2-brand__sub {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
    max-width: 720px;
}

/* Visual area */
.lg2-brand__visual {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 640px;
    z-index: 1;
}

.lg2-brand__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 627px;
    height: 640px;
}

.lg2-brand__ellipse {
    position: absolute;
    inset: 0;
    background: #f1ebfa;
    border-radius: 320px 320px 24px 24px;
}

.lg2-brand__phone {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 316px;
    height: 560px;
    overflow: hidden;
}

.lg2-brand__phone img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 309px;
    height: 640px;
    max-width: none;
    object-fit: cover;
}

/* Review cards stack */
.lg2-brand__reviews {
    position: absolute;
    left: -109.5px;
    top: 244px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.lg2-brand__review {
    width: 320px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ffffff;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lg2-brand__review--faded { opacity: 0.75; }
.lg2-brand__review--fadest { opacity: 0.5; }

.lg2-brand__review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.lg2-brand__review-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lg2-brand__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.lg2-brand__review-name {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0c111d;
    white-space: nowrap;
}

.lg2-brand__review-stars {
    display: flex;
    align-items: center;
    gap: 0;
}

.lg2-brand__review-stars svg {
    width: 20px;
    height: 20px;
    display: block;
}

.lg2-brand__review-date {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    white-space: nowrap;
}

.lg2-brand__review-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #182230;
}

/* Circle avatars around the visual */
.lg2-brand__circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid #eaecf0;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    z-index: 2;
}

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

/* Circle positions (from container left-edge), web design viewport 1280 grid */
.lg2-brand__circle--1 { left: 46px; top: 124px; }
.lg2-brand__circle--2 { left: 343px; top: 20px; }
.lg2-brand__circle--3 { right: 30px; top: 150px; left: auto; }
.lg2-brand__circle--4 { left: 52px; top: 403px; }
.lg2-brand__circle--5 { right: -72px; top: 436px; left: auto; }

/* Tabs */
.lg2-brand__tabs {
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    display: flex;
    align-items: flex-start;
    z-index: 2;
    position: relative;
}

.lg2-brand__tab {
    flex: 1 0 0;
    min-width: 0;
    border-top: 4px solid #f2f4f7;
    padding: 24px 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.lg2-brand__tab--active {
    border-top-color: #7740bf;
}

.lg2-brand__tab h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #101828;
}

.lg2-brand__tab p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
}

/* ---------- Responsive: Tablet & Mobile ---------- */
@media (max-width: 1200px) {
    .lg2-brand__title {
        white-space: normal;
    }

    /* Hide some circles on smaller viewports */
    .lg2-brand__circle--3,
    .lg2-brand__circle--5 {
        display: none;
    }

    .lg2-brand__reviews {
        left: -60px;
    }
}

@media (max-width: 1100px) {
    .lg2-brand {
        padding: 48px 40px;
        gap: 24px;
    }

    /* Hide ALL surrounding circles on tablet/mobile */
    .lg2-brand__circle {
        display: none;
    }

    /* Hide review cards on tablet/mobile */
    .lg2-brand__reviews {
        display: none;
    }

    /* Visual area shrinks */
    .lg2-brand__visual {
        height: 416px;
        max-width: none;
    }

    .lg2-brand__center {
        width: 100%;
        max-width: none;
        height: 416px;
        left: 0;
        transform: none;
    }

    .lg2-brand__ellipse {
        position: absolute;
        top: 80px;
        left: -53px;
        right: -52px;
        height: 376px;
        background: #f1ebfa;
        border-radius: 320px 320px 0 0;
        inset: auto;
    }

    .lg2-brand__phone {
        position: absolute;
        top: -11px;
        left: 50%;
        transform: translateX(-50%);
        width: 296px;
        height: 427px;
        overflow: hidden;
    }

    .lg2-brand__phone img {
        top: 17px;
        width: 260px;
        height: 538px;
    }

    /* Stack tabs vertically */
    .lg2-brand__tabs {
        flex-direction: column;
        padding: 0 16px;
        gap: 16px;
    }

    .lg2-brand__tab {
        width: 100%;
        padding: 24px 0 0;
        gap: 16px;
    }

    /* Mobile airplane swap */
    .lg2-brand__airplane-bg {
        top: 143.29px;
        left: 0;
        width: 371px;
        height: 145px;
        background-image: url('../images/lg2/block5-airplane-bg-mobile.svg');
    }
}

@media (max-width: 600px) {
    .lg2-brand {
        padding: 32px 16px;
        gap: 24px;
    }

    .lg2-brand__heading {
        padding: 0 16px;
        gap: 16px;
    }

    .lg2-brand__title {
        font-size: 30px;
        line-height: 38px;
    }

    .lg2-brand__sub {
        font-size: 18px;
        line-height: 28px;
    }

    .lg2-brand__tab h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .lg2-brand__tab p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ============================================================
   BLOCK 6 - GROWTH / DEVELOP TOUR (Phát triển tour của riêng bạn)
   ============================================================ */
.lg2-grow {
    background: #ffffff;
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lg2-grow__container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background-image: url('../images/lg2/block6-container-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lg2-grow__content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

/* ---- Left column ---- */
.lg2-grow__left {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.lg2-grow__heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 768px;
}

.lg2-grow__title {
    margin: 0;
    letter-spacing: -0.72px;
    font-weight: 400;
}

.lg2-grow__title-1 {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    color: #101828;
}

.lg2-grow__title-2 {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    color: #1dadc0;
}

.lg2-grow__sub {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
}

.lg2-grow__checks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lg2-grow__check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.lg2-grow__check-icon {
    width: 32px;
    height: 32px;
    background: #1dadc0;
    border-radius: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg2-grow__check-icon img {
    width: 14px;
    height: 10px;
    display: block;
}

.lg2-grow__check-text {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.lg2-grow__check-text h4 {
    margin: 0;
    padding-top: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
}

.lg2-grow__check-text p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #475467;
}

/* ---- Right column: image mosaic ---- */
.lg2-grow__right {
    flex: 1 0 0;
    min-width: 480px;
    height: 496px;
    position: relative;
}

.lg2-grow__cell {
    position: absolute;
    transform: translateX(-50%);
    overflow: hidden;
    border-radius: 16px;
}

.lg2-grow__cell img {
    position: absolute;
    max-width: none;
    display: block;
    object-fit: cover;
}

/* Cell 1: top-right (Gemini AI) */
.lg2-grow__cell--1 {
    left: calc(50% + 88px);
    top: 0;
    width: 160px;
    height: 240px;
    background: #c3ffed;
}
.lg2-grow__cell--1 img {
    width: 170px;
    height: 368px;
    left: -3px;
    top: -112px;
}

/* Cell 2: bottom-right (Tour group) */
.lg2-grow__cell--2 {
    left: calc(50% + 192px);
    top: 256px;
    width: 192px;
    height: 176px;
    background: #e0e0e0;
}
.lg2-grow__cell--2 img {
    width: 268px;
    height: 179px;
    left: -25px;
    top: 0;
}

/* Cell 3: bottom-left (Friends) */
.lg2-grow__cell--3 {
    left: calc(50% - 192px);
    top: 256px;
    width: 192px;
    height: 192px;
    background: #e0e0e0;
}
.lg2-grow__cell--3 img {
    width: 283px;
    height: 212px;
    left: -46px;
    top: -20px;
}

/* Cell 4: bottom-center (iPhone Air on rock) */
.lg2-grow__cell--4 {
    left: 50%;
    top: 256px;
    width: 160px;
    height: 240px;
}
.lg2-grow__cell--4 .lg2-grow__cell-bg {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}
.lg2-grow__cell--4 .lg2-grow__cell-fg {
    width: 414px;
    height: 276px;
    left: -127px;
    top: -9px;
}

/* Cell 5: top-left (Walking with iPhone) */
.lg2-grow__cell--5 {
    left: calc(50% - 88px);
    top: 80px;
    width: 160px;
    height: 160px;
    background: #e0e0e0;
}
.lg2-grow__cell--5 img {
    width: 396px;
    height: 264px;
    left: -46px;
    top: -43px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .lg2-grow {
        padding: 0;
    }

    .lg2-grow__container {
        border-radius: 0;
        background-image: url('../images/lg2/block6-container-bg-mobile.png');
    }

    .lg2-grow__content {
        flex-direction: column;
        align-items: stretch;
        padding: 32px 16px;
        gap: 24px;
    }

    .lg2-grow__left {
        flex: 0 0 auto;
        width: 100%;
    }

    .lg2-grow__title-1,
    .lg2-grow__title-2 {
        font-size: 30px;
        line-height: 38px;
    }

    .lg2-grow__title-1 {
        display: inline;
    }

    .lg2-grow__title-2 {
        display: block;
    }

    .lg2-grow__sub {
        font-size: 18px;
        line-height: 28px;
    }

    .lg2-grow__check-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .lg2-grow__right {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
        height: 488px;
    }

    /* Mobile cell position adjustments */
    .lg2-grow__cell--1 {
        left: calc(50% + 83px);
    }
    .lg2-grow__cell--1 img {
        width: 160px;
        height: 347px;
        left: 0.5px;
        top: -88.42px;
    }
    .lg2-grow__cell--2 {
        left: calc(50% + 183px);
        top: 248px;
    }
    .lg2-grow__cell--2 img {
        left: -25.5px;
    }
    .lg2-grow__cell--3 {
        left: calc(50% - 185px);
        top: 248px;
    }
    .lg2-grow__cell--3 img {
        left: -32.5px;
        top: -14.71px;
    }
    .lg2-grow__cell--4 {
        left: calc(50% - 1px);
        top: 248px;
    }
    .lg2-grow__cell--4 .lg2-grow__cell-fg {
        width: 386px;
        height: 269px;
        left: -108.5px;
        top: 0;
    }
    .lg2-grow__cell--5 {
        left: calc(50% - 85px);
    }
    .lg2-grow__cell--5 img {
        left: -46.5px;
        top: -42.71px;
    }
}

@media (max-width: 600px) {
    .lg2-grow__content {
        padding: 32px 16px;
    }
}

/* ============================================================
   BLOCK 7 - VIDEO (Xem cách dùng app chỉ trong 2 phút!)
   ============================================================ */
.lg2-video {
    background: #f2f4f7;
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.lg2-video__bg-poster {
    position: absolute;
    inset: -15% 0;
    background-image: url('../images/lg2/block7-bg-poster.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    transform: translateY(var(--parallax-y, 0px));
}

.lg2-video__heading {
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.lg2-video__title {
    margin: 0;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: #1dadc0;
    white-space: nowrap;
}

.lg2-video__sub {
    margin: 20px 0 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
}

.lg2-video__player-wrap {
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.lg2-video__short {
    flex: 1;
    max-width: 300px;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px -12px rgba(16, 24, 40, 0.24);
    background: #000;
}

.lg2-video__short iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .lg2-video {
        padding: 48px 0;
        gap: 32px;
    }

    .lg2-video__title {
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .lg2-video {
        padding: 32px 0;
        gap: 24px;
    }

    .lg2-video__bg-poster {
        background-position: center 20%;
    }

    .lg2-video__heading {
        padding: 0 16px;
    }

    .lg2-video__title {
        font-size: 30px;
        line-height: 38px;
    }

    .lg2-video__sub {
        font-size: 18px;
        line-height: 28px;
        margin-top: 16px;
    }

    .lg2-video__player-wrap {
        padding: 0 16px;
        gap: 12px;
    }

    .lg2-video__short {
        border-radius: 10px;
    }
}

/* ============================================================
   BLOCK 8 - STEPS (Cùng khách khám phá Đà Nẵng đích thực)
   ============================================================ */
.lg2-steps {
    background: #f2f4f7;
    width: 100%;
}

/* ---------- Hero (image + glass attribution card) ---------- */
.lg2-steps__hero {
    position: relative;
    background: #1dadc0;
    overflow: hidden;
    padding: 64px 0 160px;
    margin-bottom: -160px;
}

.lg2-steps__hero-bg {
    position: absolute;
    inset: -15% 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/lg2/block8-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    transform: translateY(var(--parallax-y, 0px));
}

.lg2-steps__hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: center;
}

.lg2-steps__attribution {
    width: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lg2-steps__heading {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lg2-steps__title-1 {
    margin: 0;
    width: 100%;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -0.48px;
    color: #fff;
}

.lg2-steps__title-2 {
    margin: 0;
    width: 100%;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: #fff;
}

.lg2-steps__sub {
    margin: 20px 0 0;
    width: 100%;
    max-width: 768px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #f9fafb;
}

/* ---------- Cards section ---------- */
.lg2-steps__cards-section {
    position: relative;
    z-index: 2;
    width: 100%;
}

.lg2-steps__cards {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 96px;
    display: flex;
    gap: 32px;
    align-items: stretch;
    justify-content: center;
}

.lg2-step-card {
    flex: 1 1 0;
    min-width: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lg2-step-card__num {
    margin: 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: -1.2px;
    color: #1dadc0;
    text-align: center;
}

.lg2-step-card__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lg2-step-card__title {
    margin: 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
    text-align: center;
}

.lg2-step-card__desc {
    margin: 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .lg2-steps__cards {
        padding: 48px 32px;
        gap: 24px;
    }

    .lg2-step-card {
        padding: 20px;
    }

    .lg2-step-card__num {
        font-size: 52px;
        line-height: 64px;
    }
}

@media (max-width: 700px) {
    .lg2-steps__hero {
        padding: 32px 0 64px;
        margin-bottom: -64px;
    }

    .lg2-steps__hero-inner {
        padding: 0 16px;
    }

    .lg2-steps__title-1 {
        font-size: 22px;
    }

    .lg2-steps__title-2 {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.64px;
    }

    .lg2-steps__sub {
        margin-top: 16px;
        font-size: 18px;
        line-height: 28px;
    }

    .lg2-steps__cards {
        padding: 32px 16px;
        flex-direction: column;
        gap: 32px;
    }

    .lg2-step-card {
        width: 100%;
        padding: 32px 24px;
        border-radius: 14px;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .lg2-step-card__num {
        font-size: 48px;
        line-height: 60px;
        letter-spacing: -0.96px;
    }

    .lg2-step-card__desc {
        text-align: center;
    }
}

/* ============================================================
   BLOCK 9 - CONTACT (Sẵn sàng kiếm tiền khi rảnh)
   ============================================================ */
.lg2-contact {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.lg2-contact__buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1440 / 430;
    background-image: url('../images/lg2/block9-buildings.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.lg2-contact__heading-wrap,
.lg2-contact__main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    margin: 0 auto;
    box-sizing: border-box;
}

.lg2-contact__heading {
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lg2-contact__title {
    margin: 0;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: #1dadc0;
}

.lg2-contact__sub {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #475467;
}

/* ---------- Main 2-column ---------- */
.lg2-contact__main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

/* ---------- QR / App download ---------- */
.lg2-contact__qr {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px;
}

.lg2-contact__qr-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lg2-contact__qr-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: #101828;
    text-align: center;
}

.lg2-contact__qr-sub {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #475467;
    text-align: center;
    white-space: nowrap;
}

.lg2-contact__brand {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1px;
    white-space: nowrap;
    line-height: 1;
}

.lg2-contact__brand-ello {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
}

.lg2-contact__brand-e  { color: #ef476f; }
.lg2-contact__brand-l1 { color: #ffd166; }
.lg2-contact__brand-l2 { color: #06d6a0; }
.lg2-contact__brand-o  { color: #9752da; }

.lg2-contact__brand-suffix {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #073b4c;
}

.lg2-contact__qr-box {
    width: 234px;
    height: 234px;
    background: #fff;
    border: 1.048px solid #f3f4f6;
    border-radius: 14px;
    padding: 17px 17px 1.048px;
    box-sizing: border-box;
    box-shadow:
        0 1px 1.5px rgba(0, 0, 0, 0.1),
        0 1px 1px rgba(0, 0, 0, 0.1);
}

.lg2-contact__qr-img {
    position: relative;
    width: 100%;
    height: 200px;
}

.lg2-contact__qr-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* ---------- Store badges ---------- */
.lg2-contact__stores {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.lg2-contact__store {
    position: relative;
    display: block;
    height: 44px;
    flex-shrink: 0;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.lg2-contact__store:hover {
    transform: translateY(-1px);
}

.lg2-contact__store--apple {
    width: 132px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 7px;
}

.lg2-contact__store--gplay {
    width: 148.5px;
    background: #000;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
}

.lg2-contact__store img {
    position: absolute;
    display: block;
    max-width: none;
}

/* App Store badge — natural sizes from SVG viewBoxes, positioned per Figma */
.lg2-contact__store--apple .lg2-contact__store-icon {
    width: 19.49px;
    height: 23.95px;
    top: 9.59px;
    left: 10.97px;
}

.lg2-contact__store--apple .lg2-contact__store-line1 {
    width: 76.07px;
    height: 7.01px;
    top: 9.26px;
    left: 39.22px;
}

.lg2-contact__store--apple .lg2-contact__store-line2 {
    width: 82.58px;
    height: 17.30px;
    top: 19.55px;
    left: 37.90px;
}

/* Google Play badge — natural sizes from SVG viewBoxes, positioned per Figma */
.lg2-contact__store--gplay .lg2-contact__store-icon {
    width: 25.40px;
    height: 28.29px;
    top: 7.85px;
    left: 10.97px;
}

.lg2-contact__store--gplay .lg2-contact__store-line1 {
    width: 42.74px;
    height: 6.90px;
    top: 7.55px;
    left: 45.49px;
}

.lg2-contact__store--gplay .lg2-contact__store-line2 {
    width: 93.26px;
    height: 18.73px;
    top: 18.75px;
    left: 45.14px;
}

/* ---------- Form ---------- */
.lg2-contact__form {
    background: #f2f4f7;
    padding: 40px 32px;
    border-radius: 16px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-sizing: border-box;
}

.lg2-contact__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lg2-contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.lg2-contact__label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.lg2-contact__input {
    width: 100%;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lg2-contact__input::placeholder {
    color: #667085;
}

.lg2-contact__input:focus {
    border-color: #1dadc0;
    box-shadow: 0 0 0 4px rgba(29, 173, 192, 0.2);
}

.lg2-contact__textarea {
    height: 134px;
    padding: 12px 14px;
    resize: vertical;
    font-family: inherit;
}

.lg2-contact__submit {
    width: 100%;
    background: #1dadc0;
    border: 1px solid #1dadc0;
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.lg2-contact__submit:hover {
    background: #1796a7;
    border-color: #1796a7;
}

.lg2-contact__submit-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .lg2-contact__main {
        gap: 32px;
    }

    .lg2-contact__qr {
        padding: 16px;
    }
}

@media (max-width: 900px) {
    .lg2-contact {
        padding: 32px 0;
    }

    .lg2-contact__heading-wrap,
    .lg2-contact__main {
        padding: 0 16px;
    }

    .lg2-contact__heading {
        gap: 16px;
    }

    .lg2-contact__title {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: -0.6px;
    }

    .lg2-contact__main {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .lg2-contact__qr {
        align-self: center;
        max-width: 100%;
        padding: 32px 0;
    }

    .lg2-contact__qr-sub {
        white-space: normal;
    }

    .lg2-contact__form {
        background: transparent;
        padding: 0;
        border-radius: 0;
        max-width: none;
    }
}

/* ============================================================
   BLOCK 10 - FOOTER
   ============================================================ */
.lg2-footer {
    background: #fff;
    width: 100%;
    padding: 32px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.lg2-footer__top,
.lg2-footer__bottom {
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    margin: 0 auto;
    box-sizing: border-box;
}

.lg2-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 32px;
    align-items: flex-start;
    justify-content: space-between;
}

.lg2-footer__brand-col {
    flex: 1 0 0;
    min-width: 320px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lg2-footer__logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.lg2-footer__tagline {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
}

.lg2-footer__cols {
    flex: 1 0 0;
    min-width: 640px;
    max-width: 712px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.lg2-footer__col {
    flex: 1 1 0;
    min-width: 96px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lg2-footer__col-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

.lg2-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lg2-footer__link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1dadc0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.lg2-footer__link:hover {
    opacity: 0.75;
}

.lg2-footer__contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lg2-footer__contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lg2-footer__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg2-footer__icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.lg2-footer__contact-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lg2-footer__contact-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.lg2-footer__contact-value {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.lg2-footer__bottom {
    border-top: 1px solid #eaecf0;
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lg2-footer__copy,
.lg2-footer__made {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.lg2-footer__copy-br {
    display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .lg2-footer {
        padding: 32px 0;
        gap: 24px;
    }

    .lg2-footer__top,
    .lg2-footer__bottom {
        padding: 0 16px;
    }

    .lg2-footer__top {
        flex-direction: column;
        gap: 24px;
    }

    .lg2-footer__brand-col {
        max-width: none;
        min-width: 0;
        width: 100%;
        gap: 24px;
    }

    .lg2-footer__cols {
        min-width: 0;
        max-width: none;
        width: 100%;
        flex-direction: column;
        gap: 32px;
    }

    .lg2-footer__bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }

    .lg2-footer__copy-br {
        display: inline;
    }
}
