/**
 * MoEngage Landing Page Stylesheet
 * Cherry InfoTech + MoEngage Partnership
 *
 * Section Order (per asset-map.txt):
 * 1. Hero (01_hero_full.png)
 * 2. Partner Logos (02_partner_logos_strip.png)
 * 3. Recognition (03_industry_bodies_strip.png)
 * 4. Why Choose (04_why_choose_top.png + 05_why_choose_cards.png)
 * 5. Key Industries (06_key_industries.png)
 * 6. Platform Capabilities (07_platform_top.png + 08_platform_cards.png)
 * 7. CTA Form (09_cta_form.png)
 */

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    /* Primary Colors */
    --moe-blue-dark: #003366;
    --moe-blue-primary: #0052A5;
    --moe-blue-light: #1976D2;
    --moe-blue-accent: #00A3E0;

    /* Secondary Colors */
    --moe-red: #D32F2F;
    --moe-red-dark: #B71C1C;

    /* Neutral Colors */
    --moe-white: #FFFFFF;
    --moe-gray-100: #F8F9FA;
    --moe-gray-200: #F0F2F5;
    --moe-gray-300: #E0E4E8;
    --moe-gray-400: #9CA3AF;
    --moe-gray-500: #6B7280;
    --moe-gray-600: #4B5563;
    --moe-gray-700: #374151;
    --moe-gray-900: #1F2937;

    /* CTA Colors */
    --moe-cta-bg: #FEF9E7;
    --moe-cta-button: #F4C430;
    --moe-cta-button-hover: #E6B800;

    /* Typography */
    --moe-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --moe-container-width: 1600px;
    --moe-section-padding: 120px;
    --moe-section-padding-mobile: 70px;

    /* Border Radius */
    --moe-radius-sm: 8px;
    --moe-radius-md: 12px;
    --moe-radius-lg: 20px;
    --moe-radius-xl: 30px;

    /* Shadows */
    --moe-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --moe-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --moe-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESET & BASE STYLES
============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--moe-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--moe-gray-700);
    background-color: var(--moe-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   CONTAINER
============================================ */
.moe-container {
    width: 100%;
    max-width: var(--moe-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SECTION 1: HERO (v3 - Dark Blue)
   Matches: slices_hero_v3/hero_00_full.png
   Two-part layout:
   - Part A: Top visual (dark blue, centered logos, left/right visuals)
   - Part B: Bottom copy band (rounded, 2 columns)
============================================ */
.moe-hero {
    position: relative;
    overflow: hidden;
}

/* Part A: Top Visual Region */
.moe-hero__top {
    position: relative;
    background: linear-gradient(180deg, #002855 0%, #003d7a 50%, #004d99 100%);
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 180px;
    overflow: hidden;
}

/* Decorative circles */
.moe-hero__circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.moe-hero__circle--1 {
    width: 800px;
    height: 800px;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    border: 100px solid rgba(0, 163, 224, 0.12);
}

.moe-hero__circle--2 {
    width: 650px;
    height: 650px;
    right: -150px;
    top: 20%;
    border: 80px solid rgba(0, 163, 224, 0.08);
}

.moe-hero__circle--3 {
    width: 500px;
    height: 500px;
    right: 5%;
    bottom: -100px;
    border: 60px solid rgba(255, 255, 255, 0.05);
}

/* Center Brand Lockup */
.moe-hero__brand-lockup {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.moe-hero__logo--cherry {
    height: 110px;
    /* Original red logo - no filter needed */
}

.moe-hero__logo--moengage {
    height: 70px;
}

.moe-hero__plus {
    font-size: 52px;
    font-weight: 300;
    color: var(--moe-white);
}

/* Left Visual Cluster (Man on Sofa) */
.moe-hero__visual-left {
    position: absolute;
    left: 2%;
    bottom: 120px;
    z-index: 5;
}

.moe-hero__person {
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.moe-hero__float-card {
    position: absolute;
    z-index: 3;
    animation: heroFloat 3s ease-in-out infinite;
}

.moe-hero__float-card--left {
    width: 260px;
    top: -40px;
    right: -120px;
    animation-delay: 0.3s;
}

/* Right Visual Cluster (Phones) */
.moe-hero__visual-right {
    position: absolute;
    right: 2%;
    bottom: 100px;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    gap: -30px;
}

.moe-hero__phone {
    animation: heroFloat 3s ease-in-out infinite;
}

.moe-hero__phone--back {
    width: 260px;
    z-index: 1;
    animation-delay: 0.5s;
}

.moe-hero__phone--front {
    width: 300px;
    z-index: 2;
    margin-left: -60px;
    margin-bottom: 40px;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Part B: Bottom Copy Band */
.moe-hero__bottom {
    background: linear-gradient(180deg, #003366 0%, #002855 100%);
    padding: 80px 0 90px;
    position: relative;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    z-index: 15;
}

.moe-hero__bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.moe-hero__bottom-left {
    /* Headline column */
}

.moe-hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--moe-white);
    margin: 0;
}

.moe-hero__bottom-right {
    /* Paragraph column */
}

.moe-hero__description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ============================================
   SECTION 2: PARTNER LOGOS
   Matches: 02_partner_logos_strip.png
============================================ */
.moe-partners {
    padding: 40px 0;
    background: var(--moe-white);
    border-bottom: 1px solid var(--moe-gray-200);
}

.moe-partners__title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--moe-blue-dark);
    margin-bottom: 30px;
}

.moe-partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.moe-partners__logo-item {
    padding: 15px 25px;
    background: var(--moe-gray-100);
    border-radius: var(--moe-radius-lg);
    transition: all 0.3s ease;
}

.moe-partners__logo-item:hover {
    background: var(--moe-white);
    box-shadow: var(--moe-shadow-md);
}

.moe-partners__logo-item img {
    height: 35px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.moe-partners__logo-item:hover img {
    filter: grayscale(0%);
}

/* ============================================
   SECTION 3: RECOGNITION
   Matches: 03_industry_bodies_strip.png
============================================ */
.moe-recognition {
    padding: 50px 0;
    background: var(--moe-white);
}

.moe-recognition__title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--moe-gray-500);
    margin-bottom: 30px;
}

.moe-recognition__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.moe-recognition__badge {
    padding: 25px 45px;
    background: var(--moe-white);
    border: 2px solid var(--moe-gray-200);
    border-radius: var(--moe-radius-md);
    transition: all 0.3s ease;
}

.moe-recognition__badge:hover {
    border-color: var(--moe-blue-light);
    box-shadow: var(--moe-shadow-md);
    transform: translateY(-3px);
}

.moe-recognition__badge img {
    height: 45px;
}

/* ============================================
   SECTION 4: WHY CHOOSE
   Matches: 04_why_choose_top.png + 05_why_choose_cards.png
============================================ */
.moe-why-choose {
    padding: var(--moe-section-padding) 0;
    background: var(--moe-white);
}

/* Top Section */
.moe-why-choose__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.moe-why-choose__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--moe-red);
    margin-bottom: 35px;
}

.moe-why-choose__description {
    font-size: 19px;
    line-height: 1.8;
    color: var(--moe-gray-600);
}

.moe-why-choose__description strong {
    color: var(--moe-blue-dark);
}

.moe-why-choose__image {
    display: flex;
    justify-content: center;
}

.moe-why-choose__person {
    max-width: 500px;
}

/* Cards Section */
.moe-why-choose__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.moe-why-choose__card {
    background: linear-gradient(145deg, var(--moe-blue-dark) 0%, var(--moe-blue-primary) 100%);
    border-radius: var(--moe-radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moe-why-choose__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--moe-shadow-lg);
}

.moe-why-choose__card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moe-why-choose__card-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.moe-why-choose__card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--moe-white);
    margin-bottom: 12px;
}

.moe-why-choose__card-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   SECTION 5: KEY INDUSTRIES
   Matches: 06_key_industries.png
============================================ */
.moe-industries {
    padding: var(--moe-section-padding) 0;
    background: var(--moe-gray-100);
}

.moe-industries__card {
    background: linear-gradient(145deg, var(--moe-blue-dark) 0%, #004080 50%, var(--moe-blue-primary) 100%);
    border-radius: var(--moe-radius-xl);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.moe-industries__header {
    text-align: center;
    margin-bottom: 35px;
}

.moe-industries__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--moe-white);
    margin-bottom: 18px;
}

.moe-industries__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Tabs */
.moe-industries__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.moe-industries__tab {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--moe-white);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.moe-industries__tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.moe-industries__tab--active {
    background: var(--moe-white);
    color: var(--moe-blue-dark);
    border-color: var(--moe-white);
}

/* Tab Content */
.moe-industries__content {
    max-width: 800px;
    margin: 0 auto;
}

.moe-industries__panel {
    display: none;
}

.moe-industries__panel--active {
    display: block;
}

.moe-industries__tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-align: center;
}

.moe-industries__list {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--moe-radius-md);
    padding: 30px 35px;
}

.moe-industries__list li {
    color: var(--moe-white);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
}

.moe-industries__list li:last-child {
    margin-bottom: 0;
}

.moe-industries__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--moe-blue-accent);
    border-radius: 50%;
}

.moe-industries__list li strong {
    color: var(--moe-white);
}

/* Dots */
.moe-industries__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.moe-industries__dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.moe-industries__dot--active {
    background: var(--moe-white);
    width: 30px;
    border-radius: 5px;
}

/* Network mesh decoration */
.moe-industries__mesh {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url('../images/moengage/network-mesh.png') no-repeat center bottom;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
}

/* ============================================
   SECTION 6: PLATFORM CAPABILITIES
   Matches: 07_platform_top.png + 08_platform_cards.png
============================================ */
.moe-platform {
    padding: var(--moe-section-padding) 0;
    background: var(--moe-white);
    position: relative;
    overflow: hidden;
}

.moe-platform__ellipse {
    position: absolute;
    width: 400px;
    height: 400px;
    left: -150px;
    bottom: -100px;
    border: 50px solid rgba(0, 82, 165, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

/* Header */
.moe-platform__header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.moe-platform__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--moe-blue-dark);
    margin-bottom: 25px;
}

.moe-platform__subtitle {
    font-size: 14px;
    color: var(--moe-gray-500);
    line-height: 1.6;
}

.moe-platform__header-image img {
    max-width: 100%;
}

/* Cards */
.moe-platform__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.moe-platform__card {
    background: var(--moe-white);
    border: 1px solid var(--moe-gray-200);
    border-radius: var(--moe-radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.moe-platform__card:hover {
    border-color: var(--moe-blue-light);
    box-shadow: var(--moe-shadow-md);
    transform: translateY(-5px);
}

.moe-platform__card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moe-platform__card-icon img {
    width: 45px;
    height: 45px;
}

.moe-platform__card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--moe-blue-dark);
    margin-bottom: 10px;
}

.moe-platform__card-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--moe-gray-500);
}

/* ============================================
   SECTION 7: CTA FORM
   Matches: 09_cta_form.png
============================================ */
.moe-cta {
    padding: 70px 0;
    background: var(--moe-cta-bg);
}

.moe-cta__wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.moe-cta__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--moe-blue-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.moe-cta__subtitle {
    font-size: 14px;
    color: var(--moe-gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.moe-cta__subtitle strong {
    color: var(--moe-blue-dark);
}

/* Form */
.moe-cta__form {
    background: var(--moe-white);
    border-radius: var(--moe-radius-lg);
    padding: 40px;
    box-shadow: var(--moe-shadow-md);
}

.moe-cta__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.moe-cta__field {
    position: relative;
}

.moe-cta__field input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--moe-gray-300);
    border-radius: var(--moe-radius-sm);
    font-size: 14px;
    font-family: var(--moe-font);
    color: var(--moe-gray-700);
    transition: all 0.3s ease;
    background: var(--moe-white);
}

.moe-cta__field input::placeholder {
    color: var(--moe-gray-400);
}

.moe-cta__field input:focus {
    outline: none;
    border-color: var(--moe-blue-light);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.moe-cta__field label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: var(--moe-white);
    padding: 0 6px;
    font-size: 11px;
    color: var(--moe-gray-500);
    display: none;
}

.moe-cta__field input:focus + label,
.moe-cta__field input:not(:placeholder-shown) + label {
    display: block;
}

/* Submit Button */
.moe-cta__button {
    width: 100%;
    padding: 18px 40px;
    background: var(--moe-cta-button);
    color: var(--moe-blue-dark);
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.moe-cta__button:hover {
    background: var(--moe-cta-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

.moe-cta__button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading state */
.moe-cta__button--loading {
    color: transparent !important;
    position: relative;
}

.moe-cta__button--loading::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--moe-blue-dark);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ============================================
   FOOTER
============================================ */
.moe-footer {
    padding: 25px 0;
    background: var(--moe-blue-dark);
    text-align: center;
}

.moe-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.moe-footer a {
    color: var(--moe-white);
}

.moe-footer a:hover {
    color: var(--moe-blue-accent);
}

/* ============================================
   RESPONSIVE STYLES
============================================ */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    :root {
        --moe-section-padding: 60px;
    }

    /* Hero v3 Tablet */
    .moe-hero__top {
        min-height: 580px;
        padding: 70px 20px 130px;
    }

    .moe-hero__visual-left {
        left: 1%;
        bottom: 100px;
    }

    .moe-hero__person {
        max-width: 380px;
    }

    .moe-hero__float-card--left {
        width: 190px;
        top: -20px;
        right: -80px;
    }

    .moe-hero__visual-right {
        right: 1%;
        bottom: 80px;
    }

    .moe-hero__phone--back {
        width: 190px;
    }

    .moe-hero__phone--front {
        width: 220px;
    }

    .moe-hero__logo--cherry {
        height: 80px;
    }

    .moe-hero__logo--moengage {
        height: 52px;
    }

    .moe-hero__plus {
        font-size: 38px;
    }

    .moe-hero__bottom {
        padding: 60px 0 70px;
        border-radius: 50px 50px 0 0;
        margin-top: -50px;
    }

    .moe-hero__bottom-grid {
        gap: 40px;
    }

    .moe-hero__title {
        font-size: 38px;
    }

    .moe-hero__description {
        font-size: 18px;
    }

    .moe-hero__circle--1 {
        width: 550px;
        height: 350px;
        left: -120px;
        border-width: 40px;
    }

    .moe-hero__circle--2 {
        width: 280px;
        height: 280px;
        right: -80px;
        border-width: 35px;
    }

    .moe-why-choose__top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .moe-why-choose__image {
        order: -1;
        margin-bottom: 30px;
    }

    .moe-why-choose__cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .moe-platform__header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .moe-platform__header-image {
        order: -1;
        margin-bottom: 30px;
    }

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

    .moe-industries__tabs {
        gap: 8px;
    }

    .moe-industries__tab {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --moe-section-padding: 50px;
        --moe-container-width: 100%;
    }

    html, body {
        overflow-x: hidden;
    }

    .moe-container {
        padding: 0 15px;
    }

    /* Hero v3 Mobile */
    .moe-hero__top {
        min-height: 480px;
        padding: 50px 15px 100px;
    }

    .moe-hero__visual-left {
        left: 2%;
        bottom: 80px;
    }

    .moe-hero__person {
        max-width: 180px;
    }

    .moe-hero__float-card--left {
        width: 110px;
        top: -10px;
        right: -40px;
    }

    .moe-hero__visual-right {
        right: 2%;
        bottom: 60px;
    }

    .moe-hero__phone--back {
        width: 110px;
    }

    .moe-hero__phone--front {
        width: 130px;
        margin-left: -30px;
        margin-bottom: 15px;
    }

    .moe-hero__logo--cherry {
        height: 55px;
    }

    .moe-hero__logo--moengage {
        height: 38px;
    }

    .moe-hero__plus {
        font-size: 28px;
    }

    .moe-hero__brand-lockup {
        gap: 12px;
        top: 40%;
    }

    .moe-hero__bottom {
        padding: 40px 0 45px;
        border-radius: 30px 30px 0 0;
        margin-top: -30px;
    }

    .moe-hero__bottom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .moe-hero__title {
        font-size: 26px;
        line-height: 1.35;
    }

    .moe-hero__description {
        font-size: 15px;
        line-height: 1.7;
    }

    .moe-hero__circle--1 {
        width: 300px;
        height: 300px;
        left: -120px;
        border-width: 35px;
    }

    .moe-hero__circle--2 {
        width: 250px;
        height: 250px;
        border-width: 25px;
    }

    .moe-hero__circle--3 {
        display: none;
    }

    .moe-partners__logos {
        gap: 20px;
    }

    .moe-partners__logo-item {
        padding: 12px 18px;
    }

    .moe-partners__logo-item img {
        height: 28px;
    }

    .moe-recognition__badges {
        flex-direction: column;
        gap: 20px;
    }

    .moe-recognition__badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .moe-why-choose__title {
        font-size: 28px;
    }

    .moe-industries__card {
        padding: 35px 25px;
    }

    .moe-industries__title {
        font-size: 24px;
    }

    .moe-industries__tabs {
        flex-direction: column;
        align-items: center;
    }

    .moe-industries__tab {
        width: 100%;
        max-width: 280px;
    }

    .moe-industries__list {
        padding: 20px 25px;
    }

    .moe-platform__title {
        font-size: 28px;
    }

    .moe-platform__cards {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .moe-cta__title {
        font-size: 24px;
    }

    .moe-cta__form {
        padding: 30px 25px;
    }

    .moe-cta__form-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    /* Hero v3 Small Mobile */
    .moe-hero__top {
        min-height: 420px;
        padding: 40px 10px 90px;
    }

    .moe-hero__visual-left {
        left: 0;
        bottom: 70px;
    }

    .moe-hero__person {
        max-width: 140px;
    }

    .moe-hero__float-card--left {
        width: 85px;
        top: -5px;
        right: -25px;
    }

    .moe-hero__visual-right {
        right: 0;
        bottom: 50px;
    }

    .moe-hero__phone--back {
        width: 85px;
    }

    .moe-hero__phone--front {
        width: 100px;
        margin-left: -20px;
        margin-bottom: 10px;
    }

    .moe-hero__logo--cherry {
        height: 45px;
    }

    .moe-hero__logo--moengage {
        height: 30px;
    }

    .moe-hero__plus {
        font-size: 22px;
    }

    .moe-hero__brand-lockup {
        gap: 10px;
        top: 38%;
    }

    .moe-hero__bottom {
        padding: 35px 15px 40px;
        border-radius: 25px 25px 0 0;
        margin-top: -25px;
    }

    .moe-hero__title {
        font-size: 22px;
        line-height: 1.35;
    }

    .moe-hero__description {
        font-size: 13px;
        line-height: 1.7;
    }

    .moe-hero__circle--1,
    .moe-hero__circle--2 {
        display: none;
    }

    .moe-partners__title,
    .moe-recognition__title {
        font-size: 13px;
    }

    .moe-why-choose__title {
        font-size: 24px;
    }

    .moe-why-choose__description {
        font-size: 14px;
    }

    .moe-why-choose__person {
        max-width: 280px;
    }

    .moe-industries__title {
        font-size: 22px;
    }

    .moe-industries__card {
        padding: 30px 20px;
    }

    .moe-platform__title {
        font-size: 24px;
    }

    .moe-cta__title {
        font-size: 22px;
    }

    .moe-cta__form {
        padding: 25px 20px;
    }

    .moe-cta__button {
        font-size: 14px;
        padding: 16px 30px;
    }
}
