/* ===================================
   BOMBA - Global Styles
   =================================== */
:root {
    --primary: #e8003d;
    --primary-dark: #b0002e;
    --primary-light: #ff4d7a;
    --accent: #ff7a00;
    --accent2: #ffd700;
    --dark: #0d0d1a;
    --dark2: #1a1a2e;
    --dark3: #16213e;
    --white: #ffffff;
    --gray-light: #f5f5f8;
    --gray: #888;
    --text: #1a1a2e;
    --gradient-primary: linear-gradient(135deg, #e8003d 0%, #ff4d7a 50%, #ff7a00 100%);
    --gradient-dark: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-hero: linear-gradient(135deg, #0d0d1a 0%, #16213e 40%, #e8003d22 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 40px rgba(232, 0, 61, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

/* Prevent scroll when mobile menu is open */
body:has(.nav-links.open) {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(13, 13, 26, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 0, 61, 0.2);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    padding: 0.5rem 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(232, 0, 61, 0.15);
    color: var(--primary-light);
}

/* ===== LANGUAGE SELECT ===== */
.lang-select-wrap {
    display: flex;
    align-items: center;
}

.lang-select-wrap select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.lang-select-wrap select option {
    background: #1a1a2e;
    color: white;
}

.lang-select-wrap select:hover {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.12);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    position: relative;
    width: 44px;
    height: 44px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-origin: center;
}

@media (max-width: 768px) {
    header {
        position: sticky;
        top: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hamburger transformation when menu is open */
    .nav-links.open+.hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-links.open+.hamburger span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .nav-links.open+.hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: radial-gradient(circle at center, rgba(26, 26, 46, 0.98), rgba(13, 13, 26, 1));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 990;
        padding: 2rem;
        margin: 0;
        list-style: none;
    }

    .nav-links.open {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(1.05);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.35rem;
        font-weight: 700;
        border-radius: var(--radius);
        letter-spacing: 0.05em;
    }

    .lang-select-wrap {
        justify-content: center;
    }

    .lang-select-wrap select {
        font-size: 1.1rem;
        padding: 0.75rem 2.5rem 0.75rem 1.25rem;
    }

    .header-inner {
        height: 64px;
    }

    .logo-img {
        height: 38px;
    }
}

/* ===== MOBILE FIXED BOTTOM ===== */
.mobile-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        background: rgba(13, 13, 26, 0.97);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(232, 0, 61, 0.3);
        height: 64px;
    }

    .mobile-cta-bar a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        font-size: 0.65rem;
        font-weight: 600;
        color: white;
        transition: var(--transition);
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        text-align: center;
    }

    .mobile-cta-bar a:last-child {
        border-right: none;
    }

    .mobile-cta-bar a:hover {
        background: rgba(232, 0, 61, 0.2);
    }

    .mobile-cta-bar .icon {
        font-size: 1.3rem;
        line-height: 1;
    }

    .mobile-cta-bar a.line-btn {
        background: linear-gradient(135deg, #06c755, #00a846);
    }

    .mobile-cta-bar a.mail-btn {
        background: linear-gradient(135deg, #e8003d, #ff4d7a);
    }

    .mobile-cta-bar a.lang-btn {
        background: rgba(255, 255, 255, 0.04);
    }

    .mobile-cta-bar a.lang-btn:active {
        background: rgba(232, 0, 61, 0.2);
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://bombajp.com/img/top.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 13, 26, 0.95) 20%, rgba(13, 13, 26, 0.7) 50%, rgba(13, 13, 26, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    color: white;
    margin-bottom: 1rem;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.badge:hover {
    background: rgba(232, 0, 61, 0.2);
    border-color: var(--primary);
}

.badge.hot {
    background: rgba(232, 0, 61, 0.2);
    border-color: var(--primary);
    color: #ff8aaa;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(232, 0, 61, 0.35);
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(232, 0, 61, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary-light);
    background: rgba(232, 0, 61, 0.1);
    transform: translateY(-2px);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-image-side {
    position: absolute;
    inset: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.65;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .hero-bg {
        opacity: 0.35;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(13, 13, 26, 0.85) 0%, rgba(13, 13, 26, 0.6) 50%, rgba(13, 13, 26, 0.9) 100%);
    }

    .hero-image-side {
        display: block;
        opacity: 0.5;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-dark {
    background: var(--gradient-dark);
    color: white;
}

.section-gray {
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(232, 0, 61, 0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(232, 0, 61, 0.2);
}

.section-dark .section-tag {
    background: rgba(232, 0, 61, 0.2);
    color: #ff8aaa;
    border-color: rgba(232, 0, 61, 0.3);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.section-dark .section-title {
    color: white;
}

.accent-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

/* ===== CARDS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2rem;
    color: white;
    transition: var(--transition);
}

.card-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 0, 61, 0.3);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.card-dark h3 {
    color: white;
}

.card p {
    color: var(--gray);
    line-height: 1.75;
    font-size: 0.95rem;
}

.card-dark p {
    color: rgba(255, 255, 255, 0.65);
}

/* ===== IMAGE SECTIONS ===== */
.img-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.img-content-block.reverse {
    direction: rtl;
}

.img-content-block.reverse>* {
    direction: ltr;
}

.img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-wrap:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {

    .img-content-block,
    .img-content-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: var(--transition);
}

.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.2;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.25rem;
}

.section-dark .testimonial-text {
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-company {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--gray);
}

.section-dark .testimonial-company {
    color: white;
}

.section-dark .testimonial-role {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.section-dark .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-q {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    user-select: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.section-dark .faq-q {
    color: white;
}

.faq-q:hover {
    color: var(--primary);
}

.faq-q .faq-icon {
    font-size: 1.2rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--primary);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.85;
}

.section-dark .faq-a {
    color: rgba(255, 255, 255, 0.65);
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 1.5rem 1.25rem;
}

/* ===== STATS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix Safari/Chrome bug where transform breaks background-clip: text */
.stats-row.scroll-reveal {
    transform: none !important;
    opacity: 1 !important;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.stat-box .num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-box .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ===== CEO SECTION ===== */
.ceo-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: center;
}

.ceo-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    aspect-ratio: 3/4;
}

.ceo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.25rem;
}

.ceo-title {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ceo-text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .ceo-section {
        grid-template-columns: 1fr;
    }

    .ceo-img-wrap {
        max-width: 280px;
        margin: 0 auto;
        aspect-ratio: 1/1;
    }
}

/* ===== CAST SECTION ===== */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.cast-item {
    aspect-ratio: 3/4;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.cast-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cast-item:hover img {
    transform: scale(1.08);
}

.cast-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 26, 0.7), transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.cast-item:hover::after {
    opacity: 1;
}

/* ===== FLOW SECTION ===== */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
}

.flow-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2.5rem;
}

.flow-step:last-child {
    padding-bottom: 0;
}

.flow-step-num {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(232, 0, 61, 0.4);
}

.flow-step-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, rgba(232, 0, 61, 0.5), rgba(232, 0, 61, 0.1));
    margin-top: 0.5rem;
}

.flow-step:last-child .flow-step-line {
    display: none;
}

.flow-step-content {
    padding-top: 0.75rem;
}

.flow-step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}

.flow-step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--gradient-primary);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band-content {
    position: relative;
}

.cta-band h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: white;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 1rem 2.25rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: #07070f;
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand .logo-img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 0, 61, 0.4);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(232, 0, 61, 0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content>* {
    animation: fadeInUp 0.7s ease backwards;
}

.hero-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-content>*:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-content>*:nth-child(5) {
    animation-delay: 0.5s;
}

.hero-content>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* ===== MISC ===== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 1rem auto 0;
}

.tag-primary {
    display: inline-block;
    background: rgba(232, 0, 61, 0.1);
    color: var(--primary);
    border: 1px solid rgba(232, 0, 61, 0.25);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(232, 0, 61, 0.08), rgba(255, 122, 0, 0.08));
    border: 1px solid rgba(232, 0, 61, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}

.img-responsive {
    width: 100%;
    border-radius: var(--radius);
}

.img-rounded {
    border-radius: var(--radius);
}

/* Pulse animation for LINE button */
.pulse {
    animation: pulse 2s infinite;
}

/* LINE green */
.btn-line {
    background: linear-gradient(135deg, #06c755, #00a846);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(6, 199, 85, 0.35);
}

.btn-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 199, 85, 0.45);
}

/* Lang modal */
.lang-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 800;
    justify-content: center;
    align-items: flex-end;
}

.lang-modal-overlay.open {
    display: flex;
}

.lang-modal {
    background: #1a1a2e;
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-modal h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.lang-modal-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.lang-option {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    padding: 0.9rem;
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.lang-option:hover {
    background: rgba(232, 0, 61, 0.2);
    border-color: var(--primary);
}

.lang-option .flag {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.lang-modal-close {
    margin-top: 1rem;
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
}

/* Special: photo gallery strip */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .photo-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-strip-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.photo-strip-item:hover img {
    transform: scale(1.08);
}

/* USP bars */
.usp-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.usp-item:hover {
    background: rgba(232, 0, 61, 0.08);
    border-color: rgba(232, 0, 61, 0.2);
}

.usp-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.usp-text h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.usp-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Global JS-based observer integration */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}