:root {
    --primary-maroon: #821729;
    --primary-maroon-dark: #380310;
    --secondary-gold: #EEAD2B;
    --success-green: #1FAD53;
    --success-green-dark: #168a3d;
    --bg-light: #FBF8F4;
    --bg-tan: #EDE7DE;
    --text-dark: #32221B;
    --white: #ffffff;
    --container-width: 640px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo-text, .section-title {
    font-family: 'Playfair Display', serif;
}

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

/* Typography Helpers */
.highlight-gold { color: var(--secondary-gold); }
.highlight-maroon { color: var(--primary-maroon); }
.highlight-gold-text { color: var(--secondary-gold); font-weight: bold; }

.section-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-sub {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 32px;
}

/* Header */
.header {
    height: 80px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    font-style: italic;
}

.logo-dot {
    color: var(--secondary-gold);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    text-decoration: none;
}

.btn-whatsapp-header {
    background-color: var(--success-green);
    color: var(--white);
    font-size: 14px;
    padding: 10px 20px;
}

.btn-whatsapp-lg {
    background-color: var(--success-green);
    color: var(--white);
    width: 100%;
    height: 56px;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(31, 173, 83, 0.2);
}

.btn-whatsapp-lg.dark-green {
    background-color: var(--success-green);
}

.btn-whatsapp-sm {
    background-color: var(--success-green);
    color: var(--white);
    font-size: 14px;
    width: 140px;
}

.btn-outline-sm {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 14px;
    width: 140px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-badge {
    background-color: rgba(238, 173, 43, 0.1);
    color: var(--secondary-gold);
    border: 1px solid rgba(238, 173, 43, 0.3);
}

.parent-badge { background-color: #fcece4; color: #821729; }
.you-badge { background-color: #fdf4e3; color: #eead2b; }
.white-badge { background-color: var(--white); color: var(--text-dark); }

/* Hero Section */
.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: var(--primary-maroon);
    color: var(--white);
    text-align: left;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: linear-gradient(180deg, var(--primary-maroon-dark) 0%, var(--primary-maroon) 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-trusted {
    margin-top: 48px;
}

.trusted-label {
    font-size: 12px;
    opacity: 0.6;
    display: block;
    margin-bottom: 12px;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* General Sections */
section { padding: 80px 0; }
.white-bg { background-color: var(--white); }
.tan-bg { background-color: var(--bg-tan); }
.maroon-bg { background-color: var(--primary-maroon); color: var(--white); }

/* What is Sagaai */
.what-is-text p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.what-is-cards {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.mini-card {
    flex: 1;
    padding: 20px 10px;
    border-radius: 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.pink-bg { background-color: #fdf2f2; }
.yellow-bg { background-color: #fdf8e7; }
.orange-bg { background-color: #fff4ed; }

.mini-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Steps */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-num-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    opacity: 0.7;
}

/* Parent Section */
.parent-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.parent-card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.p-icon-box {
    font-size: 24px;
    background-color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p-content h3 { font-size: 18px; margin-bottom: 4px; }
.p-content p { font-size: 14px; opacity: 0.7; }

.parents-trust-text {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

/* Grid Cards (For You Section) */
.grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.white-card {
    background-color: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-icon-round {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.gold-bg { background-color: var(--secondary-gold); }

.white-card h3 { font-size: 20px; margin-bottom: 12px; }
.white-card p { font-size: 14px; opacity: 0.7; }

/* Tech Section */
.tech-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
}

.t-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.gold-bg-low { background-color: rgba(238, 173, 43, 0.2); }

.tech-card h3 { font-size: 20px; margin-bottom: 12px; }
.tech-card p { font-size: 14px; opacity: 0.8; }

/* Everywhere Section */
.everywhere { text-align: center; }
.globe-icon { font-size: 48px; margin-bottom: 24px; }

.city-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.city-pill {
    background-color: var(--bg-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.final-quote {
    margin-top: 60px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

/* Ready Section */
.ready {
    background: linear-gradient(135deg, #EEAD2B 0%, #F47B25 100%);
    text-align: center;
    color: var(--white);
    padding: 100px 0;
}

.ready .section-title { color: var(--white); }
.ready-sub { font-size: 18px; margin-bottom: 40px; }
.ready-footer-text { font-size: 14px; margin-top: 24px; opacity: 0.9; font-style: italic; }

/* About Section */
.about { text-align: center; }
.about-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.a-icon { font-size: 32px; }
.a-plus { font-size: 24px; color: #ccc; }

.about-content p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 10px;
}

.footer-sub { font-size: 14px; opacity: 0.8; margin-bottom: 32px; }

.footer-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.footer-credits { font-size: 14px; opacity: 0.7; }
.footer-credits .parth { font-weight: 800; font-size: 16px; opacity: 1; margin-bottom: 8px; }
.footer-credits .copyright { margin-top: 16px; font-size: 12px; }

/* Desktop Adjustment */
@media (min-width: 1024px) {
    .grid-cards { grid-template-columns: 1fr 1fr; }
    .tech-cards { display: grid; grid-template-columns: 1fr 1fr; }
}
