/* ===================================
   RESUME SERVICE LANDING PAGE
   Version: 1.1.0
   Description: Pixel-perfect responsive design with toggle menu for mobile
   Font: Figtree (Regular 400, Medium 500, SemiBold 600, Bold 700, Extra Bold 800)
=================================== */

/* BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', sans-serif;
    overflow-x: hidden;
    background: #fff;
    width: 100%;
    max-width: 100vw;
}

/* NAVIGATION BAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 80px;
    background: #fff;
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 101;
}

.logo img {
    height: 50px;
    width: auto;
}

.company-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1;
}

.company-tagline {
    font-size: 21px;
    font-weight: 300;
    color: #000;
    margin: 0;
    line-height: 1;
}

/* Desktop Navigation Menu */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-menu li {
    padding: 10px;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu a:hover {
    color: #FA1239;
}

/* Hide menu icons on desktop */
.menu-icon {
    display: none;
}

/* Mobile Menu Toggle - Hidden by default */
.mobile-menu-toggle {
    display: none;
}

/* Hamburger Menu - Hidden on desktop */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Close Button - Hidden by default */
.close-menu {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #FA1239;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.close-menu span {
    line-height: 1;
    font-weight: 300;
}

/* CTA Button */
.cta-button {
    background: #FA1239;
    color: #fff;
    padding: 14px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(250, 18, 57, 0.4), 0 0 10px rgba(250, 18, 57, 0.6);
    background: #FF0D35;
}

/* Desktop CTA - Visible on desktop/tablet only */
.cta-desktop {
    display: inline-block;
}

/* Mobile CTA - Hidden on desktop/tablet */
.cta-mobile {
    display: none;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(270deg, #FFE7EB 0%, #FFBFCA 100%);
    padding: 50px 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 750px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    gap: 30px;
}

/* Hero Left Content */
.hero-left {
    flex: 1;
    max-width: 620px;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
    max-width: 620px;
}

.hero-left h1 .second-line {
    display: inline-block;
    white-space: nowrap;
    margin-bottom: 10px;
}

.hero-left h1 .highlight {
    color: #FA1239;
    position: relative;
    display: inline;
}

/* Curved underline strokes - Two wavy lines under "Deserves A Yes" */
.hero-left h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url('data:image/svg+xml,<svg width="365" height="21" viewBox="0 0 365 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M49 8.24991C78.6784 6.24991 150.727 2.24991 201.496 2.24991C252.265 2.24991 300.319 4.09606 318 5.01914" stroke="%23FA1239" stroke-width="3"/><path d="M1 19.2499C17.4712 17.2115 76.0707 12.0057 148.291 11.253C272.775 7.96036 353.547 13.7619 364 14.5459" stroke="%23FA1239" stroke-width="3"/></svg>');
    background-repeat: no-repeat;
}

.hero-left .hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 2.1;
    margin-bottom: 16px;
    color: #1a1a1a;
    max-width: 485px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.btn-primary {
    background: #FA1239;
    color: #fff;
    padding: 14px 22px;
    border: 2px solid #FA1239;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
    color: #FA1239;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(250, 18, 57, 0.4), 0 0 10px rgba(250, 18, 57, 0.6);
}

.btn-secondary {
    background: #fff;
    color: #FA1239;
    padding: 14px 22px;
    border: 2px solid #FA1239;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FA1239;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(250, 18, 57, 0.4), 0 0 10px rgba(250, 18, 57, 0.6);
}

/* Hero Right - Image Section */
.hero-right {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 750px;
}

/* Background Circles */
.circle-bg-outer {
    position: absolute;
    width: 633px;
    height: 633px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #FFE4E9 0%, #f9b8c4 100%);
    top: 55%;
    left: 52%;
    transform: translate(-50%, -45%);
    z-index: 1;
}

.circle-bg-inner {
    position: absolute;
    width: 476px;
    height: 476px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #FECDD5 0%, #FFE2E7 100%);
    top: 55%;
    left: 52%;
    transform: translate(-50%, -45%);
    z-index: 2;
}

.hero-image {
    position: relative;
    height: 720px;
    width: 506px;
    object-fit: contain;
    z-index: 3;
    margin-bottom: 0;
}

/* Rating Card */
.rating-card {
    position: absolute;
    background: #f3f1f1;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    top: 58%;
    left: 4%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 350px;
    min-height: 117px;
}

.rating-number {
    font-size: 64px;
    font-weight: 700;
    color: #1CB098;
    line-height: 1;
}

.rating-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-stars {
    color: #FFAB00;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 4px;
}

.rating-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

/* Stats Card */
.stats-card {
    position: absolute;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    bottom: 5%;
    right: 3%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 270px;
    min-height: 133px;
}

.stats-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.stats-number {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.stats-text {
    font-size: 17px;
    font-weight: 500;
    color: #666;
    line-height: 1.3;
}

/* FEATURES SECTION */
.features {
    padding: 50px;
    background: #fff;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-label {
    display: inline-block;
    background: #ffdde3;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.features-header h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1262px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #faf7f7;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.feature-icon {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
}

.feature-icon img {
    width: 200px;
    height: 149px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
}

.feature-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
}

/* RESPONSIVE DESIGN */

/* Large Desktop (1200px - 1440px) */
@media (max-width: 1440px) {
    .navbar {
        padding: 24px 60px;
    }

    .hero {
        padding: 60px 60px 0;
    }

    .features {
        padding: 65px 60px;
    }
}

/* Medium Desktop / Laptop (1024px - 1199px) */
@media (max-width: 1199px) {
    .navbar {
        padding: 20px 40px;
    }

    .nav-menu {
        gap: 32px;
    }

    .company-name {
        font-size: 24px;
    }

    .company-tagline {
        font-size: 16px;
    }

    .hero {
        padding: 50px 40px 0;
        min-height: 650px;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 52px;
    }

    .hero-left .hero-description {
        font-size: 15px;
        line-height: 1.9;
    }

    .hero-right {
        height: 650px;
    }

    .circle-bg-outer {
        width: 520px;
        height: 520px;
    }

    .circle-bg-inner {
        width: 400px;
        height: 400px;
    }

    .hero-image {
        height: 600px;
        width: 430px;
    }

    .rating-card {
        min-width: 300px;
        min-height: 100px;
        padding: 16px 12px;
        left: 4%;
    }

    .rating-number {
        font-size: 54px;
    }

    .rating-stars {
        font-size: 22px;
    }

    .rating-text {
        font-size: 20px;
    }

    .stats-card {
        min-width: 240px;
        min-height: 110px;
        padding: 20px 24px;
        right: 4%;
    }

    .stats-icon {
        width: 70px;
        height: 70px;
    }

    .stats-number {
        font-size: 32px;
    }

    .stats-text {
        font-size: 16px;
    }

    .features {
        padding: 60px 40px;
    }

    .features-grid {
        gap: 16px;
    }

    .feature-icon img {
        width: 180px;
        height: 130px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 16px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .navbar {
        padding: 18px 30px;
        height: 80px;
    }

    .logo img {
        height: 36px;
    }

    .company-name {
        font-size: 20px;
    }

    .company-tagline {
        font-size: 14px;
    }

    .nav-menu {
        gap: 6px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 14px;
        font-size: 14px;
    }

    .hero {
        padding: 40px 30px 0;
        min-height: 550px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-left {
        max-width: 450px;
    }

    .hero-left h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero-left h1 .second-line {
        white-space: normal;
    }

    .hero-left h1 .highlight::after {
        background-size: contain;
    }

    .hero-left .hero-description {
        font-size: 14px;
        line-height: 1.8;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 16px;
        margin-top: 24px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 16px;
    }

    .hero-right {
        height: 550px;
    }

    .circle-bg-outer {
        width: 420px;
        height: 420px;
    }

    .circle-bg-inner {
        width: 320px;
        height: 320px;
    }

    .hero-image {
        height: 500px;
        width: 360px;
    }

    .rating-card {
        min-width: 260px;
        min-height: 90px;
        padding: 14px 10px;
        gap: 12px;
        left: 2%;
        top: 55%;
    }

    .rating-number {
        font-size: 46px;
    }

    .rating-stars {
        font-size: 18px;
    }

    .rating-text {
        font-size: 17px;
    }

    .stats-card {
        min-width: 210px;
        min-height: 95px;
        padding: 16px 20px;
        gap: 16px;
        right: 2%;
        bottom: 8%;
    }

    .stats-icon {
        width: 60px;
        height: 60px;
    }

    .stats-number {
        font-size: 28px;
    }

    .stats-text {
        font-size: 14px;
    }

    .features {
        padding: 50px 30px;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-label {
        font-size: 16px;
        padding: 8px 18px;
    }

    .features-header h2 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon img {
        width: 160px;
        height: 120px;
    }

    .feature-card h3 {
        font-size: 19px;
        margin-bottom: 16px;
    }

    .feature-card p {
        font-size: 16px;
    }
}

@media (min-width: 626px) {
    .hamburger-menu {
        display: none !important;
    }
}

/* Tablet Portrait & Mobile Landscape (600px - 767px) - MOBILE MENU STARTS */
@media (max-width: 767px) {
    .navbar {
        padding: 12px 14px;
        height: 60px;
    }

    .logo {
        gap: 5px;
    }

    .logo img {
        height: 30px;
    }

    .company-name {
        font-size: 18px;
    }

    .company-tagline {
        font-size: 12px;
    }

    .nav-menu {
        gap: 0px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px;
        font-size: 12px;
    }

    .hero {
        padding: 30px 24px 0;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-left h1 .second-line {
        display: block;
    }

    .hero-left h1 .highlight::after {
        content: none;
    }

    .hero-left .hero-description {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 16px;
    }

    .hero-right {
        height: 500px;
        width: 100%;
        justify-content: center;
    }

    .circle-bg-outer {
        width: 360px;
        height: 360px;
        top: 50%;
        left: 50%;
    }

    .circle-bg-inner {
        width: 280px;
        height: 280px;
        top: 50%;
        left: 50%;
    }

    .hero-image {
        height: 450px;
        width: 320px;
    }

    .rating-card {
        min-width: 220px;
        min-height: 80px;
        padding: 12px 10px;
        gap: 10px;
        left: 5%;
        top: 50%;
    }

    .rating-number {
        font-size: 38px;
    }

    .rating-stars {
        font-size: 16px;
    }

    .rating-text {
        font-size: 15px;
    }

    .stats-card {
        min-width: 190px;
        min-height: 85px;
        padding: 14px 16px;
        gap: 12px;
        right: 5%;
        bottom: 10%;
    }

    .stats-icon {
        width: 50px;
        height: 50px;
    }

    .stats-number {
        font-size: 24px;
    }

    .stats-text {
        font-size: 13px;
    }

    .features {
        padding: 40px 24px;
    }

    .features-header {
        margin-bottom: 32px;
    }

    .features-label {
        font-size: 15px;
        padding: 8px 16px;
    }

    .features-header h2 {
        font-size: 22px;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .feature-icon img {
        width: 140px;
        height: 105px;
    }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .feature-card p {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Mobile Portrait (480px - 625px) */
@media (max-width: 625px) {
    .navbar {
        padding: 14px 20px;
        height: 70px;
    }

    .logo img {
        height: 35px;
    }

    .company-name {
        font-size: 18px;
    }

    .company-tagline {
        font-size: 12px;
    }

    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
    }

    /* Hamburger animation when menu is open */
    .mobile-menu-toggle:checked~.hamburger-menu span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle:checked~.hamburger-menu span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle:checked~.hamburger-menu span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile Navigation Wrapper */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        height: 100vh;
        background: linear-gradient(180deg, #FFE7EB 0%, #FFBFCA 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 70px 25px 25px;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    /* Show menu when checkbox is checked */
    .mobile-menu-toggle:checked~.nav-wrapper {
        right: 0;
    }

    /* Show close button when menu is open */
    .mobile-menu-toggle:checked~.close-menu {
        display: flex;
    }

    /* Mobile Menu Items */
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-bottom: 30px;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        padding: 20px 0;
        font-size: 18px;
        font-weight: 500;
        color: #000;
        justify-content: flex-start;
    }

    .nav-menu a:hover {
        color: #FA1239;
        background: rgba(250, 18, 57, 0.05);
        padding-left: 10px;
    }

    /* Show menu icons on mobile */
    .menu-icon {
        display: block;
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    /* Mobile CTA Button */
    .cta-mobile {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 50px;
        margin-top: 10px;
    }

    /* Hide desktop CTA on mobile */
    .cta-desktop {
        display: none;
    }

    /* Create full-screen overlay behind menu */
    .nav-wrapper::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 65%);
        height: 100vh;
        background: rgba(0, 0, 0, 0);
        z-index: -1;
        transition: background 0.4s ease;
        pointer-events: none;
    }

    /* Show overlay when menu is open */
    .mobile-menu-toggle:checked~.nav-wrapper::before {
        background: rgba(0, 0, 0, 0.5);
        pointer-events: auto;
    }

    .hamburger-menu {
        width: 20px;
        height: 16px;
    }

    .hamburger-menu span {
        height: 3px;
    }

    .hero {
        padding: 24px 20px 0;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left .hero-description {
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 15px;
        padding: 11px 20px;
    }

    .hero-right {
        height: 450px;
    }

    .circle-bg-outer {
        width: 320px;
        height: 320px;
    }

    .circle-bg-inner {
        width: 250px;
        height: 250px;
    }

    .hero-image {
        height: 395px;
        width: 280px;
    }

    .rating-card {
        min-width: 200px;
        min-height: 75px;
        padding: 10px 8px;
        gap: 8px;
        left: 3%;
    }

    .rating-number {
        font-size: 34px;
    }

    .rating-stars {
        font-size: 14px;
    }

    .rating-text {
        font-size: 14px;
    }

    .stats-card {
        min-width: 170px;
        min-height: 80px;
        padding: 12px 14px;
        gap: 10px;
        right: 3%;
    }

    .stats-icon {
        width: 45px;
        height: 45px;
    }

    .stats-number {
        font-size: 22px;
    }

    .stats-text {
        font-size: 12px;
    }

    .features {
        padding: 36px 20px;
    }

    .features-label {
        font-size: 14px;
        padding: 7px 14px;
    }

    .features-header h2 {
        font-size: 20px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon img {
        width: 130px;
        height: 95px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 15px;
    }
}

/* Small Mobile (max-width: 479px) */
@media (max-width: 479px) {
    .navbar {
        padding: 12px 16px;
        height: 60px;
    }

    .logo img {
        height: 34px;
    }

    .company-name {
        font-size: 20px;
        font-weight: 500;
    }

    .company-tagline {
        font-size: 14px;
    }

    .nav-wrapper {
        width: 70%;
        padding: 60px 20px 20px;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 18px 0;
    }

    .nav-wrapper .cta-button {
        padding: 14px 20px;
        font-size: 16px;
    }

    .nav-wrapper::before {
        width: calc(100% - 70%);
    }

    .hamburger-menu {
        width: 18px;
        height: 12px;
    }

    .hamburger-menu span {
        height: 2px;
    }

    .hero {
        padding: 20px 16px 0;
        background: #FFE3E8;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .hero-left .hero-description {
        font-size: 16px;
        line-height: 2.2;
    }

    .hero-buttons {
        gap: 24px;
        margin-top: 20px;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 18px;
        padding: 14px 22px;
        width: 220px;
        height: 46px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn-secondary{
        width: 167px;
    }

    .hero-right {
        height: 400px;
    }

    .circle-bg-outer {
        width: 280px;
        height: 280px;
        background: radial-gradient(circle at center, #FFE4E9 0%, #FFCBD4 100%);
    }

    .circle-bg-inner {
        width: 220px;
        height: 220px;
        background: radial-gradient(circle at center, #f7f7f7 0%, #FFE2E7 100%);
    }

    .hero-image {
        height: 365px;
        width: 250px;
    }

    .rating-card {
        min-width: 180px;
        min-height: 64px;
        padding: 8px 6px;
        gap: 6px;
        left: 2%;
        top: 48%;
    }

    .rating-number {
        font-size: 30px;
    }

    .rating-stars {
        font-size: 12px;
    }

    .rating-text {
        font-size: 13px;
    }

    .stats-card {
        min-width: 155px;
        min-height: 75px;
        padding: 10px 12px;
        gap: 8px;
        right: 2%;
        bottom: 12%;
    }

    .stats-icon {
        width: 40px;
        height: 40px;
    }

    .stats-number {
        font-size: 20px;
    }

    .stats-text {
        font-size: 11px;
        line-height: 1.2;
    }

    .features {
        padding: 40px 16px;
    }

    .features-header {
        margin-bottom: 28px;
    }

    .features-label {
        font-size: 18px;
        padding: 12px 20px;
    }

    .features-header h2 {
        font-size: 25px;
        line-height: 1.4;
        padding: 0px 4px;
    }

    .features-header h2 .highlight{
        color: #FA1239;
    }

    .features-grid {
        gap: 24px;
        width: 300px;
    }

    .feature-card {
        padding: 20px 10px;
        width: 300px;
        height: 420px;
    }

    .feature-icon {
        margin-bottom: 34px;
    }

    .feature-icon img {
        width: 180px;
        height: 129px;
    }

    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 16px;
        text-align: center;
        line-height: 1.6;
        padding: 12px;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .navbar {
        padding: 10px 12px;
        height: 60px;
    }

    .nav-wrapper {
        width: 85%;
        padding: 60px 18px 18px;
    }

    .nav-menu a {
        font-size: 15px;
        padding: 16px 0;
    }

    .menu-icon {
        width: 20px;
        height: 20px;
    }

    .nav-wrapper .cta-button {
        padding: 12px 18px;
        font-size: 15px;
    }

    .nav-wrapper::before {
        width: calc(100% - 85%);
    }

    .hero{
        background: #FFE3E8;
    }

    .hero-content{
        gap: 12px;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-right {
        height: 380px;
    }

    .circle-bg-outer {
        width: 318px;
        height: 318px;
    }

    .circle-bg-inner {
        width: 239px;
        height: 239px;
    }

    .hero-image {
        height: 375px;
        width: 254px;
    }

    .rating-card {
        min-width: 189px;
        padding: 12px 16px;
        top: 55%;
        left: -1%;
    }

    .rating-number {
        font-size: 22px;
    }

    .rating-stars {
        font-size: 22px;
        margin-top: -4px;
    }

    .rating-text {
        font-size: 14px;
    }

    .stats-card {
        min-width: 144px;
        min-height: 67px;
        padding: 12px 8px;
        gap: 16px;
        bottom: 8%;
        right: 3%;
    }

    .stats-icon {
        width: 36px;
        height: 36px;
    }

    .stats-number {
        font-size: 18px;
    }

    .stats-text {
        font-size: 11px;
    }

    .features-header h2 {
        font-size: 30px;
    }

    .features-header h2 .highlight{
        color: #FA1239;
    }

    .features-grid{
        width: 298px;
    }

    .feature-card {
        width: 298px;
        height: 450px;
    }

    .feature-icon img {
        width: 200px;
        height: 149px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 18px;
    }
}