/* ==========================================================
   BVMK CREATIVE ABOUT PAGE - LUXURY STYLE SPECIFICATION
   ========================================================== */

:root {
    --primary-light-bg: #f8fafc;
    --card-white: #ffffff;
    --navy-blue: #1a2a3a;
    --navy-light: #2c3e50;
    --gold-accent: #c5a47e;
    --gold-light: #e5c199;
    --gold-solid: #D4AF37;
    --text-primary: #1e293b;
    --text-muted: #5a6b7e;
    --border-light: #e2e8f0;
}

/* --- HTML & Body Viewport Rules --- */
html {
    scroll-behavior: auto !important;
    background-color: var(--primary-light-bg) !important;
}

body {
    background-color: var(--primary-light-bg) !important;
    color: var(--text-primary) !important;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: clip; /* Safely clips horizontal spillages */
    overflow-y: visible; /* Prevents body from trapping the vertical scroll chain */
}

/* --- ACTIVE STICKY HEADER ACTIONS (Viewport Lock) --- */
.navbar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease !important;
}

.navbar.is-sticky {
    background-color: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Responsive menu offset calibration when active sticky */
@media (max-width: 991px) {
    .nav-links.active {
        top: 75px !important;
    }
}

/* --- CREATIVE HERO SECTION (Luxury Panoramic Slider & Parallax Visuals) --- */
.about-creative-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 4% 80px 4%;
    background-color: #01040d;
    overflow: hidden;
}

.hero-slider-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 2.5s ease-in-out;
}

.hero-slide.active {
    opacity: 0.35; /* Perfect readable contrast overlay level */
    transform: scale(1);
    z-index: 2;
}

#about-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 20%, #020617 90%),
                linear-gradient(to bottom, transparent 80%, #020617 100%);
    z-index: 4;
    pointer-events: none;
}

.about-hero-wrapper {
    position: relative;
    z-index: 5;
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-left-col {
    flex: 0 0 55%;
    max-width: 720px;
    text-align: left;
}

.creative-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-accent);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.creative-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.gold-text {
    background: linear-gradient(135deg, #f3e5d8 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.creative-paragraph {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-secondary-btn {
    padding: 16px 32px;
    background: transparent;
    border: 2.5px solid var(--gold-accent);
    color: var(--gold-accent);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-secondary-btn:hover {
    background: var(--gold-accent);
    color: #020617;
    box-shadow: 0 0 15px rgba(197, 164, 126, 0.3);
    transform: translateY(-2px);
}

.hero-whatsapp-btn {
    padding: 16px 32px;
    background-color: #25D366;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.hero-right-col {
    flex: 0 0 38%;
    display: flex;
    justify-content: center;
}

.floating-vision-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: rgba(15, 23, 42, 0.45);
    border: 1.5px solid rgba(197, 164, 126, 0.25);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.1s ease-out;
}

.card-glass-glow {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(197, 164, 126, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.vision-quote-icon {
    font-size: 32px;
    color: var(--gold-accent);
    margin-bottom: 20px;
    opacity: 0.8;
}

.vision-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 25px;
}

.vision-author {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-accent);
    display: block;
}

.creative-scroll-indicator {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
    pointer-events: none;
}

.creative-scroll-indicator i {
    animation: bounce-anim 2s infinite;
}

@keyframes bounce-anim {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ========================================================== */
/* SERPENTINE HIGHWAY ROADMAP ("HOW BVMK WORKS")              */
/* ========================================================== */
.about-process-section {
    padding: 80px 24px 100px 24px; /* Optimized tight vertical spacing */
    background-color: var(--primary-light-bg);
    position: relative;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-accent);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
    text-align: center;
}

.process-main-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-align: center;
}

.process-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 30px auto; /* Reduced gap margin below desc */
    line-height: 1.7;
    text-align: center;
}

/* Roadmap Grid Container with exact fluid aspect-ratio */
.highway-roadmap-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 1000 / 600; /* Maintains perfect proportional scaling */
    margin: 0 auto;
}

/* Serpentine Asphalt Road SVG Path Graphics */
.serpentine-highway-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Road background track */
.asphalt-base {
    fill: none;
    stroke: #334155; /* Asphalt slate grey */
    stroke-width: 48px; /* High-end fluid road width */
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Road central centerline marker dashed dashes */
.asphalt-dashes {
    fill: none;
    stroke: #f59e0b; /* Yellow warning centerline dash */
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.highway-checkpoints-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Checkpoint Pin Drop */
.checkpoint-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pin-marker {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

/* Beautiful map marker icon styles */
.pin-marker i {
    font-size: 42px;
    color: var(--navy-blue);
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Unique checkpoint color injection */
.checkpoint-pin[data-color="#00b4d8"] .pin-marker i { color: #00b4d8; }
.checkpoint-pin[data-color="#2ec4b6"] .pin-marker i { color: #2ec4b6; }
.checkpoint-pin[data-color="#3a86c8"] .pin-marker i { color: #3a86c8; }
.checkpoint-pin[data-color="#ff007f"] .pin-marker i { color: #ff007f; }
.checkpoint-pin[data-color="#f77f00"] .pin-marker i { color: #f77f00; }
.checkpoint-pin[data-color="#8338ec"] .pin-marker i { color: #8338ec; }
.checkpoint-pin[data-color="#e63946"] .pin-marker i { color: #e63946; }
.checkpoint-pin[data-color="#ffb703"] .pin-marker i { color: #ffb703; }
.checkpoint-pin[data-color="#3f37c9"] .pin-marker i { color: #3f37c9; }

.pin-badge {
    position: absolute;
    top: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    z-index: 3;
    pointer-events: none;
}

.pin-label {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy-blue);
    background-color: var(--card-white);
    border: 1px solid var(--border-light);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* BUBBLE INFO PANELS - ENTIRELY HIDDEN BY DEFAULT */
.checkpoint-message-bubble {
    position: absolute;
    width: 320px;
    background: var(--card-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(26, 42, 58, 0.18);
    z-index: 999;
    text-align: left;
    
    /* Hide initial state variables */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.92);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s;
}

/* Adjust layout orientations for the popup bubbles */
.checkpoint-message-bubble.align-right {
    left: calc(100% + 15px);
    top: -40px;
    border-left: 3px solid var(--gold-accent);
}
.checkpoint-message-bubble.align-right .bubble-arrow {
    left: -14px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    color: var(--gold-accent);
}

.checkpoint-message-bubble.align-left {
    right: calc(100% + 15px);
    top: -40px;
    border-right: 3px solid var(--gold-accent);
}
.checkpoint-message-bubble.align-left .bubble-arrow {
    right: -14px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    color: var(--gold-accent);
}

.checkpoint-message-bubble.align-top {
    left: 50%;
    transform: translateX(-50%) scale(0.92);
    bottom: calc(100% + 20px);
    border-bottom: 3px solid var(--gold-accent);
}
.checkpoint-message-bubble.align-top .bubble-arrow {
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    color: var(--gold-accent);
}

.bubble-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}

.checkpoint-message-bubble h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy-blue);
    margin-bottom: 16px;
    font-weight: 700;
}

.checkpoint-message-bubble p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.bubble-arrow {
    position: absolute;
    font-size: 20px;
}

/* HOVER INTERACTIVE ACTIONS - SHOW ONLY ON HOVER STATES */
.checkpoint-pin:hover {
    z-index: 1000;
    transform: translate(-50%, -55%) scale(1.08); /* Lift effect */
}

.checkpoint-pin:hover .pin-label {
    border-color: var(--gold-accent);
    color: var(--gold-solid);
}

.checkpoint-pin:hover .checkpoint-message-bubble,
.checkpoint-pin.active-pin .checkpoint-message-bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Retain centered position for top-aligned hover overlays */
.checkpoint-pin:hover .checkpoint-message-bubble.align-top,
.checkpoint-pin.active-pin .checkpoint-message-bubble.align-top {
    transform: translateX(-50%) scale(1);
}

/* ========================================================== */
/* WHY CHOOSE BVMK SECTION (LIGHT THEME)                      */
/* ========================================================== */
.about-why-choose-section {
    padding: 100px 24px;
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-accent);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
    text-align: center;
}

.why-main-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-align: center;
}

.why-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
    text-align: center;
}

.why-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    width: 100%;
    margin-bottom: 60px;
}

.why-feature-card {
    background: var(--primary-light-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 35px rgba(197, 164, 126, 0.12);
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(197, 164, 126, 0.1);
    border: 1.5px solid var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--gold-accent);
    font-size: 22px;
}

.why-feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.why-feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Trust Banner */
.trust-highlights-banner {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #101c28 100%);
    border: 1.5px solid rgba(197, 164, 126, 0.25);
    border-radius: 16px;
    padding: 45px 40px;
    margin-bottom: 60px;
}

.trust-heading-group {
    text-align: center;
    margin-bottom: 35px;
}

.trust-heading-group h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.trust-heading-group p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.trust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.metric-item {
    text-align: center;
}

.metric-item i {
    font-size: 32px;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

.metric-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.metric-item p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Scope sections */
.scope-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    background: var(--primary-light-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
}

.scope-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.scope-column p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.scope-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scope-tag {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.scope-tag i {
    color: var(--gold-accent);
    font-size: 0.8rem;
}

.scope-tag:hover {
    border-color: var(--gold-accent);
    background: rgba(197, 164, 126, 0.05);
    transform: translateY(-2px);
}

.scope-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-checklist li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scope-checklist li i {
    color: #2ecc71;
    font-size: 1.1rem;
}

/* Light Call to Action */
.about-cta-footer {
    text-align: center;
    background: radial-gradient(circle at center, rgba(197, 164, 126, 0.08) 0%, #ffffff 100%);
    border: 1.5px solid var(--gold-accent);
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.about-cta-footer h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.about-cta-footer p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

.about-whatsapp-cta {
    padding: 16px 36px;
    background-color: #25D366;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.about-whatsapp-cta:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
    .about-creative-hero {
        padding: 140px 5% 80px 5%;
    }

    .about-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left-col {
        flex: 1 1 auto;
        width: 100%;
    }

    .about-hero-actions {
        justify-content: center;
    }

    .hero-right-col {
        flex: 1 1 auto;
        width: 100%;
    }

    /* Convert Steps nodes to vertical layout for Tablets & Mobile Screens */
    .serpentine-highway-svg {
        display: none !important;
    }

    .highway-roadmap-container {
        height: auto;
        padding: 20px 0;
        aspect-ratio: auto; /* Remove aspect-ratio on mobile vertical flow */
    }

    .highway-checkpoints-track {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-left: 20px;
        border-left: 4px solid var(--gold-accent);
        height: auto;
    }

    .checkpoint-pin {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        align-items: flex-start;
        width: 100%;
    }

    .pin-marker {
        margin-left: -41px;
        margin-bottom: 8px;
    }

    .pin-label {
        margin-top: 0;
        margin-bottom: 12px;
    }

    /* Mobile Message bubble positions directly below the checkpoint label */
    .checkpoint-message-bubble {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: none !important;
        display: none; /* Controlled dynamically by about.js on Tap */
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        border: none !important;
        border-left: 3px solid var(--gold-accent) !important;
    }

    .bubble-arrow {
        display: none !important;
    }

    .checkpoint-pin.active-pin .checkpoint-message-bubble {
        display: block !important;
        animation: slideDownIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
}

@keyframes slideDownIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .scope-grid-section {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .trust-highlights-banner {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .creative-heading {
        font-size: 2.2rem;
    }
}