:root {
    --primary: #CE1252; /* Monginis Official Pink */
    --primary-light: #FDF2F5;
    --primary-dark: #A00E40;
    --secondary: #1F2933; /* Deep Slate */
    --accent: #FFD700; /* Gold */
    --white: #ffffff;
    --text-main: #2D3A4A;
    --text-muted: #627D98;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 60px rgba(206, 18, 82, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
}

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

html, body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fcfcfc;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(206, 18, 82, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(206, 18, 82, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.main-header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.partner-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-top: -4px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.desktop-nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at 10% 20%, rgba(253, 242, 245, 1) 0%, rgba(255, 255, 255, 1) 90%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-form-container {
    flex: 0 0 400px;
}

.hero-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.hero-form-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-form-card .form-group {
    margin-bottom: 12px;
}

.hero-form-card input, .hero-form-card select {
    padding: 12px 16px;
    font-size: 0.9rem;
}

.franchise-tagline {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: var(--primary-light);
    border-radius: 4px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight-pink {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-image-container {
    flex: 1;
}

.hero-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(206, 18, 82, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
}

/* Benefits Grid */
.benefits {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-muted);
}

/* Product Section */
.products-preview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-item {
    background: var(--white);
    padding: 15px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.product-item:hover {
    transform: scale(1.03);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 20px;
}

.product-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

/* Investment Section */
.investment {
    padding: 100px 0;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.investment-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.investment-card:hover {
    border-color: var(--primary);
}

.card-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.price-range {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

/* Support Section */
.support-section {
    padding: 100px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.support-item {
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--primary);
}

.support-item h4 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

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

.testimonial-card {
    background: var(--primary-light);
    padding: 45px 40px;
    border-radius: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-card h5 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Launch Steps */
.launch-steps {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-card {
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(206, 18, 82, 0.3);
}

.step-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.accordion {
    max-width: 850px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
    padding: 0 30px 24px;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

/* Footer */
.main-footer {
    background-color: #111;
    color: #999;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about .brand-name {
    margin-bottom: 25px;
    display: inline-block;
}

.footer-about p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.main-footer h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.3rem;
}

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

.footer-links li, .footer-legal li {
    margin-bottom: 15px;
}

.footer-links a, .footer-legal a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 40px;
    text-align: center;
    font-size: 0.95rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 50px;
    border-radius: 32px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: modalScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-btn {
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 2.5rem;
    cursor: pointer;
    color: #ccc;
    line-height: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--primary-light);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px 24px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.2rem; }
    .footer-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hero { padding: 30px 0 40px; }
    .hero-container { flex-direction: column-reverse; text-align: center; gap: 20px; }
    .hero-form-container { flex: none; margin-bottom: 0; width: 100%; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { margin: 0 auto 30px; }
    .hero-ctas { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .sticky-cta { display: flex; }
    .section-header h2 { font-size: 2.2rem; }
    .modal-content { padding: 30px; }
    .main-footer { padding-bottom: 80px; }
}
