:root {
    --primary-gradient: linear-gradient(135deg, #be185d 0%, #db2777 100%);
    --secondary-gradient: linear-gradient(135deg, #f472b6 0%, #fbcfe8 100%);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #fff1f2;
    --card-bg: #ffffff;
    --border-color: #fce7f3;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }
.mt-15 { margin-top: 15px; }

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(190, 24, 93, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(190, 24, 93, 0.4);
}
.btn-primary.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}
.btn-primary.full-width {
    width: 100%;
    text-align: center;
}
.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #be185d;
    color: #be185d;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: #be185d;
    color: white;
}

/* Typography */
.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #831843;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 2rem;
}
.section-desc.centered { margin: 0 auto 2rem auto; }

/* Grid Utilities */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.align-center { align-items: center; }

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-links a:not(.btn-outline) {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-links a:not(.btn-outline):hover {
    color: #be185d;
}
.hamburger { display: none; }

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: radial-gradient(circle at top right, #fce7f3, transparent 60%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #831843;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
}
.hero-form-wrapper {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}
.lead-form h3 {
    margin-bottom: 1.5rem;
    color: #831843;
    font-size: 1.5rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus {
    outline: none;
    border-color: #be185d;
}

/* Trust Banner */
.trust-banner {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.trust-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #be185d;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.trust-title {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}
.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}
.logo-marquee::before, .logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}
.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}
.logo-track {
    display: inline-block;
    animation: scrollLogos 30s linear infinite;
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-logo {
    display: inline-block;
    margin: 0 40px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #94a3b8;
}

/* What We Do */
.what-we-do {
    padding: 6rem 0;
}
.check-list {
    list-style: none;
    margin-top: 2rem;
}
.check-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #be185d;
    font-weight: 800;
}
.illustration-placeholder {
    background: var(--secondary-gradient);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    color: #831843;
    font-weight: 700;
    box-shadow: 0 20px 30px rgba(244, 114, 182, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
}
.illustration-placeholder .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.illustration-placeholder.square {
    aspect-ratio: 1/1;
}
.illustration-placeholder.gradient-2 {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #312e81;
    box-shadow: 0 20px 30px rgba(199, 210, 254, 0.4);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.pricing-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.pricing-card.highlighted {
    border-color: #f472b6;
    box-shadow: 0 10px 30px rgba(190, 24, 93, 0.1);
    position: relative;
}
.pricing-card.highlighted::before {
    content: "Popular";
    position: absolute;
    top: -12px;
    right: 20px;
    background: #be185d;
    color: white;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}
.card-header h3 {
    font-size: 1.25rem;
    color: #831843;
    min-height: 60px;
    margin-bottom: 1rem;
}
.card-header .dots {
    color: #cbd5e1;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.card-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.delivery-time {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.delivery-time .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.delivery-time .value {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}
.price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #be185d;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.img-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748b;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s;
}
.gallery-item:nth-child(even) .img-placeholder {
    background: #f8fafc;
}
.gallery-item:hover .img-placeholder {
    transform: scale(1.05);
    background: #fce7f3;
    color: #be185d;
}

/* Downloads Section */
.download-section {
    padding: 6rem 0;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.feature-item {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-item .tick {
    color: #10b981;
    font-weight: 800;
}

/* Testimonials */
.testimonial-section {
    padding: 6rem 0;
}
.main-testimonial {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
}
.quote-mark {
    font-size: 8rem;
    color: #fbcfe8;
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: serif;
    line-height: 1;
}
.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}
.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.author-avatar {
    width: 60px;
    height: 60px;
    background: #be185d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.author-details h4 {
    color: #831843;
    margin-bottom: 0.2rem;
}
.author-details span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-question:hover {
    background: #fdf2f8;
}
.faq-question .arrow {
    font-size: 1.5rem;
    color: #be185d;
    transition: transform 0.3s;
}
.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}
.faq-item.active .arrow {
    transform: rotate(45deg);
}

/* Bottom CTA */
.bottom-cta {
    padding: 6rem 0;
    background: radial-gradient(circle at center, #fce7f3, white 70%);
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}
.tagline {
    margin-bottom: 1.5rem;
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.icon-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: background 0.3s;
}
.icon-link:hover {
    background: #be185d;
}
.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.footer-divider {
    border: none;
    border-top: 1px dashed rgba(255,255,255,0.2);
    margin: 1.5rem 0;
}
.links-col ul {
    list-style: none;
}
.links-col li {
    margin-bottom: 0.8rem;
}
.links-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}
.links-col a:hover {
    color: white;
}
.footer-bottom {
    background: #020617;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}
.flex-between {
    display: flex;
    justify-content: space-between;
}
.scroll-top-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
}
.scroll-top-btn:hover {
    color: #f472b6;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2-col, .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .reverse-mobile .content-side {
        order: 2;
    }
    .reverse-mobile .image-side {
        order: 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-main);
        transition: 0.3s;
    }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-heading { font-size: 2rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .main-testimonial { padding: 2rem; }
    .quote-mark { left: 10px; font-size: 6rem; }
    .mobile-col {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
