/* ========== CSS VARIABLES ========== */
:root {
    --coral: #FF8E9E;
    --coral-light: #FFE8EC;
    --coral-dark: #FFAA85;
    --text-dark: #03101A;
    --text-muted: #666;
    --bg-cream: #FFF9F5;
    --bg-pink: #FFF5F8;
}

/* ========== BASE STYLES ========== */
body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFFFF 50%, var(--bg-pink) 100%);
    color: var(--text-dark);
    overflow-x: hidden;
}

.poppins {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== ANIMATIONS ========== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== UTILITY CLASSES ========== */
.gradient-text {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 50%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-coral {
    color: var(--coral) !important;
}

.bg-coral {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%) !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* ========== FLOATING DECORATIVE ELEMENTS ========== */
.floating-element {
    position: fixed;
    pointer-events: none;
    opacity: 0.6;
    font-size: 2.5rem;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: relative;
    z-index: 100;
}

.nav-logo {
    width: 44px;
    height: 44px;
    /* background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); */
    /* border-radius: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    /* box-shadow: 0 8px 24px rgba(255, 142, 158, 0.3); */
}

.navbar .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--coral);
}

.btn-cta {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(255, 142, 158, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 142, 158, 0.5);
    color: white;
}

.btn-outline-coral {
    border: 2px solid var(--coral);
    color: var(--coral);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-coral:hover {
    background: var(--coral);
    color: white;
    transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    background: rgba(255, 142, 158, 0.1) !important;
    color: var(--coral) !important;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid rgba(255, 142, 158, 0.2);
    border-radius: 50px;
}

.hero-title {
    line-height: 1.15;
}

/* ========== STORE BUTTONS ========== */
.store-button {
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-button.apple {
    background: linear-gradient(180deg, #2D2D2D 0%, #1a1a1a 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-button.google {
    background: white;
    color: var(--text-dark);
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.store-button:hover {
    transform: translateY(-3px);
    color: inherit;
}

.store-button.apple:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: white;
}

.store-button.light.apple:hover {
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25); */
    color: var(--text-dark);
}

.store-button.google:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    color: var(--text-dark);
}

.store-button.light {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.store-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-text-small {
    font-size: 0.7rem;
    opacity: 0.85;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.store-text-large {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* ========== PHONE MOCKUP ========== */
.phone-mockup-container {
    padding: 20px 0;
    min-height: 500px;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
}

.stat-top-left {
    top: 20px;
    left: 10%;
    animation: floatSlow 5s ease-in-out infinite;
}

.stat-top-right {
    top: 60px;
    right: 10%;
    animation: float 6s ease-in-out infinite 0.5s;
}

.stat-bottom-left {
    bottom: 80px;
    left: 5%;
    animation: float 7s ease-in-out infinite 1s;
}

.stat-bottom-right {
    bottom: 120px;
    right: 12%;
    animation: floatSlow 8s ease-in-out infinite 0.3s;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    z-index: 20;
}

.badge-free {
    top: 140px;
    left: 18%;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    animation: floatSlow 6s ease-in-out infinite 0.8s;
}

.badge-watermark {
    bottom: 200px;
    right: 15%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    box-shadow: 0 8px 20px rgba(255, 142, 158, 0.3);
    animation: float 5s ease-in-out infinite 1.2s;
}

/* Phone Left */
.phone-left {
    width: 200px;
    height: 420px;
    background: linear-gradient(180deg, var(--bg-pink) 0%, var(--coral-light) 100%);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(255, 142, 158, 0.25), 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: rotate(-6deg) translateY(30px);
    animation: floatSlow 6s ease-in-out infinite;
}

.phone-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    padding: 20px;
}

.phone-emoji {
    font-size: 3.5rem;
    margin-bottom: 16px;

    img {
        width: 110px;
        border-radius: 10px;
    }
}

.milestone-badge {
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--bg-pink) 100%);
    padding: 6px 18px;
    border-radius: 10px;
    border: 2px dashed #FFCCD5;
}

.milestone-badge span {
    font-size: 1rem;
    color: var(--coral);
}

/* Phone Center */
.phone-center {
    width: 280px;
    height: 560px;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25), 0 20px 50px rgba(255, 142, 158, 0.15);
    animation: float 5s ease-in-out infinite;
    z-index: 10;
    flex-shrink: 0;
}

.phone-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 50px 50px 0 0;
    pointer-events: none;
}

.phone-center-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFFFF 100%);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 66px;
    height: 17px;
    background: #000;
    border-radius: 20px;
}

.phone-content {
    padding: 0px;
    padding-top: 5px;
    background: #f9fcfb;
}

.phone-photo-area {
    width: 190px;
    height: 190px;
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--bg-pink) 100%);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(255, 142, 158, 0.2);
    border: 4px solid white;
}

.phone-photo-area span {
    font-size: 5.5rem;
}

.phone-name {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.phone-age {
    color: var(--coral);
    font-size: 0.95rem;
}

.phone-toolbar {
    background: rgba(255, 142, 158, 0.08);
    padding: 10px 16px;
    border-radius: 20px;
}

.phone-toolbar-btn {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-size: 1.3rem;
}

/* Phone Right */
.phone-right {
    width: 200px;
    height: 420px;
    background: linear-gradient(180deg, #E8F4E5 0%, #D4ECD0 100%);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.2), 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: rotate(6deg) translateY(30px);
    animation: float 7s ease-in-out infinite 0.5s;
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sticker-item {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #F8F8F8 0%, #EFEFEF 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ========== SECTION STYLES ========== */
.section-label {
    color: var(--coral);
}

.section-title {
    color: var(--text-dark);
}

.features-section {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-cream) 100%);
}

.milestone-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFFFF 100%);
}

.showcase-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFFFF 50%, var(--bg-pink) 100%);
}

.showcase-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.showcase-decor-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 142, 158, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.showcase-decor-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 170, 133, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.how-it-works-section {
    background: linear-gradient(180deg, var(--bg-pink) 0%, #FFFFFF 100%);
}

.faq-section {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-cream) 100%);
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 200, 200, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 142, 158, 0.2);
    border-color: rgba(255, 142, 158, 0.4);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--bg-pink) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-description {
    color: #777;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========== MILESTONE CARDS ========== */
.milestone-card {
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.milestone-card:hover::before {
    opacity: 1;
}

.milestone-card:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.milestone-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.milestone-circle span {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.milestone-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.milestone-count {
    color: #888;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* ========== GALLERY ========== */
.gallery-filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 142, 158, 0.3);
    background: white;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 142, 158, 0.2);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(255, 142, 158, 0.3);
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    padding: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    min-height: 200px;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 142, 158, 0.25) !important;
}

.gallery-item-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-size: 1.8rem;
}

/* ========== STEP CARDS ========== */
.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(255, 142, 158, 0.2);
}

.step-emoji {
    font-size: 2rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -8px;
    right: -8px;
}

/* ========== TESTIMONIAL CARDS ========== */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 200, 200, 0.2);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 142, 158, 0.15);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--bg-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ========== FAQ ACCORDION ========== */
.support-link {
    padding: 14px 28px;
    background: white;
    color: #FF8E9E;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(255, 142, 158, 0.15);
    transition: all 0.3s ease;
}

.support-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 142, 158, 0.25);
    color: #FF8E9E;
    background: white;
}

.accordion-item {
    background: white;
    border: 1px solid rgba(255, 200, 200, 0.2) !important;
    border-radius: 20px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(255, 142, 158, 0.12);
    border-color: rgba(255, 142, 158, 0.3) !important;
}

.accordion-button {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    background: transparent;
    padding: 24px 28px;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;

    h3 {
        font-family: 'Nunito', sans-serif;
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--text-dark);
    }
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--text-dark);
}

.accordion-button::after {
    display: none;
}

.accordion-button .faq-icon {
    background-image: none;
    content: '';
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--bg-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    svg {
        width: 16px;
        height: 16px;
        stroke: #FF8E9E;
    }
}

.accordion-button:not(.collapsed) .faq-icon {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);

    svg {
        stroke: white;
        transform: rotate(180deg);
    }
}

.accordion-body {
    padding: 0 28px 24px;
    color: var(--text-muted);
    line-height: 1.8;
}

.support-card {
    background: linear-gradient(135deg, var(--bg-pink) 0%, var(--bg-cream) 100%);
    border-radius: 24px;
}

.support-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(255, 142, 158, 0.15);
}

/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}

.cta-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.1);
}

.cta-decor-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.cta-decor-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

/* ========== FOOTER ========== */
.main-footer {
    background: linear-gradient(180deg, #041726 0%, #03101A 100%);
    position: relative;
    overflow: hidden;
}

.footer-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 142, 158, 0.08) 0%, transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px 0 0 14px !important;
    color: white;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 142, 158, 0.5);
    color: white;
    box-shadow: none;
}

.newsletter-input::placeholder {
    color: #777;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    /* background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); */
    /* border-radius: 14px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* box-shadow: 0 8px 24px rgba(255, 142, 158, 0.3); */
}

.footer-badge {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--coral);
    transform: translateX(5px);
    display: inline-block;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.pinterest {
    background: #E60023;
}

.social-btn.tiktok {
    background: #000;
    border: 1px solid #333;
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 991.98px) {
    .phone-center {
        width: 240px;
        height: 480px;
    }

    .phone-photo-area {
        width: 160px;
        height: 160px;
    }

    .phone-photo-area span {
        font-size: 4.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem !important;
    }

    .phone-center {
        width: 220px;
        height: 440px;
        border-radius: 40px;
    }

    .phone-center-inner {
        border-radius: 34px;
    }

    .phone-photo-area {
        width: 140px;
        height: 140px;
    }

    .phone-photo-area span {
        font-size: 4rem;
    }

    .phone-toolbar-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .store-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .accordion-button {
        padding: 18px 16px;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 0 16px 20px;
        font-size: 0.9rem;
    }
}