/* parentalflow_web/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0A090F;
    --bg-card: rgba(20, 18, 30, 0.7);
    --primary: #9D00FF;
    --secondary: #00F0FF;
    --text-main: #FFFFFF;
    --text-muted: #A0A5C0;
    --border-color: rgba(157, 0, 255, 0.25);
    --accent-red: #FF0055;
    --font-outfit: 'Outfit', sans-serif;
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-jakarta);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(157, 0, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.05) 0%, transparent 40%);
}

/* Header */
header {
    width: 100%;
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    width: 32px;
    height: 32px;
}

.logo-text h1 {
    font-family: var(--font-outfit);
    font-size: 24px;
    fontWeight: 900;
}

.logo-text h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(157, 0, 255, 0.08);
    border: 1px solid var(--border-color);
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

h2.main-title {
    font-family: var(--font-outfit);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

h2.main-title span {
    background: linear-gradient(135deg, #A855F7, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 800;
    font-family: var(--font-outfit);
    color: #000;
    background: linear-gradient(135deg, var(--secondary), #00D2FF);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.35);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.55);
}

.cta-button-purple {
    background: linear-gradient(135deg, var(--primary), #B33DFF);
    color: #fff;
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.35);
}

.cta-button-purple:hover {
    box-shadow: 0 0 40px rgba(157, 0, 255, 0.55);
}

/* Features Grid */
.features {
    max-width: 1100px;
    margin: 40px auto 80px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.05);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 20px;
    width: 54px;
    height: 54px;
    background: rgba(157, 0, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Glass Form Container */
.form-container {
    max-width: 500px;
    width: 90%;
    margin: 80px auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
}

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

.form-header h2 {
    font-family: var(--font-outfit);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 13px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    background: #0F0F12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 14px 18px;
    color: #fff;
    font-family: var(--font-jakarta);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.15);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin: 24px 0;
}

.checkbox-group input {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Onboarding Portal Card */
.pairing-code-box {
    background: #09080E;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pairing-code {
    font-size: 32px;
    font-family: var(--font-outfit);
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: 2px;
}

.pairing-steps {
    text-align: left;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.step-number {
    width: 32px;
    height: 32px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.secondary-action:hover {
    background: rgba(255, 255, 255, 0.08);
}

.whatsapp-action {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.whatsapp-action:hover {
    background: rgba(37, 211, 102, 0.2);
}

/* Footer Global */
footer.global-footer {
    width: 100%;
    padding: 40px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    margin-top: auto;
}
