:root {
    --primary: #B8848E;
    /* Warm dusty rose from image */
    --primary-light: #E5989B;
    /* Soft petal pink */
    --secondary: #353849;
    /* Deep navy charcoal for headers */
    --accent: #ffb4a2;
    /* Warm peach accent */
    --bg: #ffffff;
    /* Pure white background */
    --bg-alt: #fcfaf9;
    /* Extremely subtle warm bg */
    --text: #353849;
    /* High-contrast charcoal for body */
    --text-muted: #71717e;
    /* Neutral grey, no color bleed */
    --white: #ffffff;
    --border: #f0e6e6;
    /* Soft border */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Tighter, neutral shadow */
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
    /* Deep but neutral shadow */
    --transition: all 0.3s ease;
    /* Faster, snappy transitions */
    --glass: rgba(255, 255, 255, 0.95);
    /* Solid gloss */
    --radius: 20px;
    /* Sharper corners (less doll-like) */
    --footer-bg: var(--secondary);
    --btn-primary: var(--primary);
    --btn-hover: #c49ba5;
    --btn-active: #aa7d89;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    font-weight: 500;
    /* Thicker base font for sharpness */
}


h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--secondary);
}

h1 span,
h2 span,
h3 span {
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
}


/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -2px;
    position: relative;
    z-index: 1001;
}

.logo span {
    color: var(--primary-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover,
.nav-link-login:hover {
    color: var(--primary);
}

.nav-link-login {
    margin-right: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.btn {
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--btn-primary);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(184, 132, 142, 0.2);
}

.btn-primary:hover {
    background: var(--btn-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(184, 132, 142, 0.3);
}

.btn-primary:active {
    background: var(--btn-active);
    transform: translateY(-1px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.6rem;
    background: #f8f9fa;
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 800;
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    margin-bottom: 2.5rem;
    border: 1px solid #e9ecef;
    box-shadow: none;
    animation: fadeInUp 0.6s ease-out;
    text-align: left;
    /* Keep text left aligned inside the badge */
}

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

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

.pulsar {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #28C940;
    border-radius: 50%;
    position: relative;
    margin-right: 2px;
}

.pulsar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.hero-cta {
    display: flex;
    flex-direction: row;
    /* Ensure horizontal */
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    width: fit-content;
    flex-wrap: wrap;
    /* Safety wrap */
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-muted);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

.btn-outline {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    color: var(--secondary);
    font-weight: 700;
}

.btn-outline:hover {
    background-color: #f8f9fa;
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background: var(--btn-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(184, 132, 142, 0.4);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    color: var(--secondary);
    letter-spacing: -2px;
    /* Slightly more space */
    font-weight: 900;
}

.hero-title span {
    display: block;
    color: var(--primary);
    font-weight: 800;
    /* Heavier weight for more definition */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 550px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    width: 100%;
    max-width: 540px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.preview-header {
    padding: 1.2rem 2rem;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-dots {
    display: flex;
    gap: 8px;
}

.header-dots span {
    width: 8px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 50%;
}

.header-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.preview-body {
    padding: 2.5rem;
}

.preview-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.preview-welcome h4 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    font-family: inherit;
}

.preview-welcome p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.preview-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent);
    opacity: 0.4;
}

.preview-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.p-stat-card {
    flex: 1;
    padding: 1.5rem;
    border-radius: 20px;
}

.p-stat-card.dark {
    background: var(--secondary);
    color: var(--white);
}

.p-stat-card.dark span,
.p-stat-card.dark h4 {
    color: var(--white);
}

.p-stat-card.light {
    background: #fff5f5;
    color: var(--primary);
}

.p-label {
    font-size: 0.8rem;
    /* Larger for sharpness */
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.p-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--secondary);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: #fdfdfd;
    border: 1px solid #f5f5f5;
    border-radius: 18px;
}

.s-time {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    width: 50px;
}

.s-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
}

.s-service {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.s-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.s-status.online {
    background: #28C940;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 1rem 1.6rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #f0f0f0;
}

.badge-icon {
    width: 36px;
    height: 36px;
    background: #fff5f5;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.b-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
}

.b-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 5rem;
}

.stat-item .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
}

/* Features - Bento Grid */
.features {
    padding: 10rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-wrapper {
        grid-template-columns: 1fr;
    }

    .feature-large {
        grid-column: span 1;
        grid-row: auto;
        flex-direction: column-reverse;
        padding: 3rem 2rem;
    }
}

.feature-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-large {
    grid-column: span 2;
    grid-row: span 2;
    background: #fdfaf9;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4.5rem;
    gap: 4rem;
}

.feature-content {
    flex: 1;
    z-index: 2;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.icon-bubble {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-large h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-large p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: var(--text);
}

.feature-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
}

.feature-box.highlight {
    background: var(--text);
    color: var(--white);
}

.feature-box.highlight h3,
.feature-box.highlight p {
    color: var(--white);
}

.feature-box.highlight .icon-bubble {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: none;
}

/* Mini Calendar CSS Visual */
.mini-calendar {
    width: 280px;
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.feature-box:hover .mini-calendar {
    transform: rotate(0deg) scale(1.05);
}

.cal-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.cal-dot {
    width: 12px;
    height: 12px;
    background: #FF5F57;
    border-radius: 50%;
    box-shadow: 20px 0 0 #FFBD2E, 40px 0 0 #28C940;
}

.cal-month {
    margin-left: auto;
    font-weight: 700;
    color: var(--text);
    font-size: 0.9rem;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cal-day {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
}

.cal-day.active {
    background: var(--primary-light);
}

.cal-event {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--primary);
}

.cal-avatar {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.5;
}

.cal-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cal-lines .line {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    width: 100%;
}

.cal-lines .line.short {
    width: 60%;
}

/* Pricing Page specific styles */
.pricing {
    padding: 8rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.price-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-card.popular {
    background: var(--secondary);
    color: var(--white);
    border: none;
    transform: scale(1.05);
    z-index: 1;
}

.price-card.popular .price,
.price-card.popular h3 {
    color: var(--white);
}

.price-card.popular .price span {
    color: rgba(255, 255, 255, 0.6);
}

.price-card.popular .price-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.popular-badge {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-light);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
    font-family: 'Playfair Display', serif;
}

.price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin-bottom: 3rem;
    display: inline-block;
    width: 100%;
}

.price-features li {
    padding: 0.8rem 0;
    color: var(--text-muted);
    border-bottom: 1px dotted #e5e5e5;
    font-size: 0.95rem;
}

/* Contact Page specific styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-card,
.social-links-card {
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid #f0f0f0;
}

.social-links-card {
    background: var(--bg);
    padding: 2rem;
}

.contact-title,
.social-title,
.form-title {
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.contact-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-link,
.contact-text {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    padding: 0.8rem 1.5rem;
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.form-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text);
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: var(--bg);
    font-family: inherit;
    max-width: 100%;
}

.form-btn {
    width: 100%;
    margin-top: 1rem;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 8rem 0 3rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-logo {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.footer-links h4 {
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-info p {
    margin-top: 1.5rem;
    opacity: 0.6;
    max-width: 300px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    33% {
        border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
    }

    66% {
        border-radius: 70% 30% 50% 50% / 30% 70% 50% 70%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Why Us Section Styles */
.why-us-section {
    padding: 8rem 0;
    background: var(--bg-alt);
    margin: 4rem 0;
    /* Vertical margin only */
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content {
    padding-right: 2rem;
}

.why-us-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--secondary);
    letter-spacing: -1.5px;
    font-weight: 900;
}

.why-us-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-box {
    position: relative;
}

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    max-width: 150px;
    line-height: 1.4;
}

.stat-box.border-left {
    padding-left: 3rem;
}

.stat-box.border-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #e0e0e0;
}

/* Testimonials Styles */
.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.testimonial-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f5f5;
    transition: var(--transition);
    flex: 1;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.card-top {
    margin-top: -2rem;
}

.card-bottom {
    margin-top: 3rem;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
    color: #ffb703;
    /* Golden stars */
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-text::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.author-info {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.author-name {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Pricing Preview Styles */
.pricing-preview {
    padding: 8rem 0;
}

.pricing-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-preview .price-card {
    width: 100%;
    max-width: 380px;
}

.price-features {
    text-align: left;
    list-style: none;
    margin: 2rem 0;
}

/* Final CTA Section Styles */
.final-cta {
    padding: 10rem 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.final-cta .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    width: 100%;
}

.cta-title {
    color: var(--white) !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.cta-title span {
    color: var(--accent) !important;
    font-style: italic;
    font-weight: 400;
}

.cta-text {
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

@media (max-width: 992px) {
    .final-cta {
        padding: 6rem 1.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .cta-btns .btn {
        width: 100%;
    }
}

.btn-white {
    background: white;
    color: var(--secondary);
    padding: 1.2rem 3rem;
    min-width: 220px;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 3rem;
    min-width: 220px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.2rem;
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    color: var(--secondary);
    white-space: nowrap;
}

.card-1 {
    top: 15%;
    left: 5%;
    transform: rotate(-10deg);
}

.card-2 {
    bottom: 15%;
    right: 5%;
    transform: rotate(8deg);
    animation-delay: 3s;
}

@keyframes float {

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

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

@keyframes float2 {

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

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

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .why-us-content {
        padding-right: 0;
    }

    /* Fix testimonials overflow */
    .testimonials-grid {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }

    .testimonial-card {
        width: 100%;
    }


    .stats-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .card-bottom {
        margin-top: 0;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        width: 100%;
        /* Reduced gap on tablet */
    }

    .hero-cta {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}


@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .why-us-section {
        margin: 4rem 0;
        border-radius: 40px;
        padding: 4rem 1.5rem;
    }

    .why-us-grid {
        gap: 3rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
        padding: 2rem;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-btns {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-blob {
        width: 350px;
        height: 350px;
    }

    .app-preview {
        width: 95%;
        max-width: 100%;
    }

    /* Bento Grid Responsiveness */
    .features-wrapper {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .feature-large {
        grid-column: span 1;
        grid-row: span 1;
        flex-direction: column-reverse;
        padding: 2.5rem;
        gap: 2rem;
    }

    .feature-box {
        padding: 2rem;
    }

    .pricing-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: none;
        box-shadow: var(--shadow);
    }

    .price-card.popular:hover {
        transform: translateY(-5px);
    }

    .feature-card,
    .price-card,
    .contact-form-card {
        padding: 2.5rem 1.5rem;
    }

    /* Contact form specific fix for overflow */
    .contact-form-card {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .contact-card,
    .social-links-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px;
    }

    /* Reduce global large paddings on mobile */
    .about-hero,
    .beauty-niches,
    .pricing-preview,
    .why-us-section,
    .pricing,
    .final-cta,
    footer {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .about-sections {
        padding-top: 4rem !important;
    }

    h1,
    h2,
    .display-title,
    .section-title {
        font-size: 2.2rem !important;
        letter-spacing: -1px !important;
    }

    /* Make buttons full width on small screens */
    .hero-btns,
    .hero-cta,
    .cta-actions {
        display: flex;
        flex-direction: column !important;
        width: 100%;
        gap: 1rem;
        align-items: center;
    }

    .hero-btns .btn,
    .hero-cta .btn,
    .cta-actions .btn {
        width: 100%;
        text-align: center;
        min-width: unset;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links h4 {
        margin-bottom: 1.5rem;
    }

    footer {
        padding: 4rem 0 2rem;
    }

    .social-buttons {
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        width: auto;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px !important;
        line-height: 1.2 !important;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero-stats {
        width: 100%;
        justify-content: center !important;
        gap: 2rem !important;
        padding-top: 1.5rem;
        border-top: 1px solid #f0f0f0;
    }

    .stat-value {
        font-size: 2rem !important;
    }

    .hero-blob {
        width: 280px;
        height: 280px;
    }

    .app-preview {
        width: 100%;
        max-width: 420px;
        margin: 2rem auto;
        display: block;
    }

    .preview-body {
        padding: 1.5rem;
    }

    .preview-welcome {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .preview-welcome h4 {
        font-size: 1.1rem;
    }

    .preview-stats {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
    }

    .p-stat-card {
        padding: 1rem;
        flex: 1;
    }

    .p-val {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .stats-row {
        gap: 1.5rem !important;
        flex-direction: column;
        align-items: center;
    }

    .stat-box.border-left {
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .stat-box.border-left::before {
        width: 100%;
        height: 1px;
        left: 0;
        top: 0;
    }
}



/* Beauty Niches Section */
.beauty-niches {
    padding: 8rem 0;
    background-color: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.niches-header {
    text-align: center;
    margin-bottom: 5rem;
}

.niches-header h2 {
    font-size: 3rem;
    color: var(--secondary);
    letter-spacing: -1.5px;
}

.niches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .niches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .niches-grid {
        grid-template-columns: 1fr;
    }

    .why-us-title {
        font-size: 2.2rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-box.border-left {
        padding-left: 0;
        border-left: none;
        padding-top: 1.5rem;
        border-top: 1px solid #e0e0e0;
    }

    .stat-box.border-left::before {
        display: none;
    }
}

.niche-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.niche-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-light);
}

.niche-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #fffafa;
    border-radius: 20px;
    transition: var(--transition);
}

.niche-card:hover .niche-icon {
    background: var(--primary-light);
    transform: scale(1.1) rotate(5deg);
}

.niche-card h4 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.niche-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.niches-footer {
    text-align: center;
    margin-top: 6rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.niches-footer p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ------------------------------------------------------------------ */
/* COMPREHENSIVE MOBILE SAFETY BLOCK (Best Practices) */
/* ------------------------------------------------------------------ */
@media (max-width: 480px) {

    /* 1. Global Overflow Protection */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
        max-width: 100vw !important;
    }

    /* 2. Container Constraints */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    /* 3. prevent rigid widths */
    img,
    video,
    iframe,
    .hero-blob,
    .app-preview {
        max-width: 100% !important;
        height: auto !important;
    }

    /* 4. Text Handling */
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    span,
    li,
    a {
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }

    /* 5. Hide problematic decorative elements that cause drift */
    .floating-badge {
        display: none !important;
    }

    /* 6. Ensure App Preview Fits perfectly */
    .app-preview {
        margin: 2rem 0 !important;
        width: 100% !important;
        display: block !important;
        transform: none !important;
    }

    .preview-body {
        padding: 1.25rem !important;
    }

    /* 7. Ensure Stat cards don't break flex */
    .p-stat-card {
        min-width: 0 !important;
    }
}

.niches-footer strong {
    color: var(--secondary);
}