/* ==========================================================================
   TOPIK4U Landing Page Custom Stylesheet
   Design Language: Modern Pastel Mint & Coral Red (Premium Edutech Theme)
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
    --primary-mint: #2ebb77;
    --primary-mint-dark: #1b9058;
    --primary-mint-light: #eefbf4;
    --accent-coral: #ff5252;
    --accent-coral-dark: #e03d3d;
    --accent-coral-gradient: linear-gradient(135deg, #ff7b54 0%, #ff5252 100%);
    --bg-light: #f5fbf7;
    --bg-white: #ffffff;
    --text-main: #2b3a4a;
    --text-muted: #6b7c90;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Typography */
    --font-sans: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Be Vietnam Pro', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(46, 187, 119, 0.1), 0 4px 6px -2px rgba(46, 187, 119, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-accent: 0 10px 20px -3px rgba(255, 82, 82, 0.3);
    
    /* Animation Curve */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Reusable Components (Buttons, Badges) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-coral-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -3px rgba(255, 82, 82, 0.45);
}

.btn-secondary {
    background-color: var(--primary-mint);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--primary-mint-dark);
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #e53935;
    color: var(--text-white);
}

.btn-danger:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(25deg);
    transition: none;
}

.btn-glow:hover::after {
    left: 120%;
    transition: all 0.8s ease-in-out;
}

.arrow {
    margin-left: 8px;
    transition: var(--transition-smooth);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* --- Section Styling --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-coral-gradient);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Header Section --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46, 187, 119, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.brand-logo {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-area:hover .brand-logo {
    transform: scale(1.1) rotate(5deg);
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    background: var(--accent-coral-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

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

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

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

/* --- Hero Section --- */
.hero-section {
    padding: 160px 0 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fffbf8 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.pink-glow {
    width: 400px;
    height: 400px;
    background: rgba(255, 82, 82, 0.1);
    top: -100px;
    right: -100px;
}

.mint-glow {
    width: 450px;
    height: 450px;
    background: rgba(46, 187, 119, 0.1);
    bottom: -150px;
    left: -150px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.badge-promotion {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 82, 82, 0.08);
    border: 1px solid rgba(255, 82, 82, 0.15);
    color: var(--accent-coral-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.gradient-text {
    background: var(--accent-coral-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-family: var(--font-heading);
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    background: #ff5252;
    padding: 6px 20px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    transform: rotate(-1deg);
    box-shadow: 0 5px 15px rgba(255, 82, 82, 0.25);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.target-student-card {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(46, 187, 119, 0.15);
    padding: 20px;
    border-radius: 16px;
    max-width: 540px;
    box-shadow: var(--shadow-sm);
}

.target-student-card .card-icon {
    font-size: 2rem;
    line-height: 1;
}

.target-student-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.target-student-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Form Wrapper styling --- */
.hero-form-content {
    display: flex;
    justify-content: flex-end;
}

.form-wrapper {
    width: 100%;
    max-width: 440px;
    padding: 36px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-main);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--accent-coral);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    font-size: 1rem;
    color: var(--text-muted);
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid rgba(46, 187, 119, 0.2);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-mint);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(46, 187, 119, 0.1);
}

.error-msg {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-coral);
    margin-top: 6px;
    font-weight: 500;
    min-height: 18px;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
}

/* --- Features Section --- */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.feature-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(46, 187, 119, 0.1);
    padding: 36px 28px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-coral-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-color: rgba(46, 187, 119, 0.25);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.check-icon {
    background-color: rgba(46, 187, 119, 0.1);
    color: var(--primary-mint);
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Materials Section (Combo) --- */
.materials-section {
    padding: 100px 0;
    background-color: var(--primary-mint-light);
    position: relative;
    overflow: hidden;
}

.materials-bg-decor {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(46, 187, 119, 0.05);
    z-index: 1;
}

.bubble-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.bubble-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.material-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.material-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* Custom Soft Gradients for Cards */
.card-gradient-1 { background: linear-gradient(180deg, #ffffff 0%, #fff5f2 100%); }
.card-gradient-2 { background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%); }
.card-gradient-3 { background: linear-gradient(180deg, #ffffff 0%, #eefbf4 100%); }
.card-gradient-4 { background: linear-gradient(180deg, #ffffff 0%, #fbf3ff 100%); }

.material-icon {
    font-size: 2.25rem;
    margin-bottom: 20px;
    display: inline-block;
}

.material-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.material-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Instructions Section (3 Steps) --- */
.instructions-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.step-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 40px 24px 30px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

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

.step-num-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Individual bottom border colors and step badge colors */
.step-card:nth-child(1) { border-bottom: 5px solid #1e3a8a; }
.step-card:nth-child(1) .step-num-badge { background-color: #1e3a8a; }

.step-card:nth-child(2) { border-bottom: 5px solid #ffa000; }
.step-card:nth-child(2) .step-num-badge { background-color: #ffa000; }

.step-card:nth-child(3) { border-bottom: 5px solid #ef5350; }
.step-card:nth-child(3) .step-num-badge { background-color: #ef5350; }

.step-icon-wrapper {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-light);
}

.step-emoji {
    font-size: 2.25rem;
}

.step-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

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

/* Screenshots Showcase Grid */
.screenshots-showcase-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin: 60px 0 30px 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.screenshot-item {
    text-align: center;
}

.screenshot-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--bg-white);
    margin-bottom: 12px;
    cursor: pointer;
}

.screenshot-img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.screenshot-img-wrapper:hover .screenshot-img {
    transform: scale(1.04);
}

.screenshot-caption {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

/* --- Outcomes Section --- */
.outcomes-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.outcomes-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.outcome-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 20px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--primary-mint);
    transition: var(--transition-smooth);
}

.outcome-item:hover {
    transform: translateX(8px);
    background-color: var(--primary-mint-light);
    box-shadow: var(--shadow-sm);
}

.outcome-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-mint);
    opacity: 0.5;
    line-height: 1;
}

.outcome-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

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

/* --- Banner Showcase Section --- */
.banner-showcase-section {
    padding: 80px 0 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.banner-image-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    border: 6px solid var(--bg-white);
    position: relative;
    cursor: pointer;
}

.banner-image {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.banner-image-container:hover .banner-image {
    transform: scale(1.02);
}

.banner-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 40px 20px 20px 20px;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
}

/* --- Footer --- */
.main-footer {
    background-color: #172533;
    color: #a0aec0;
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-logo {
    height: 40px;
    width: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-white);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-mint);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #e2e8f0;
}

.footer-contact a:hover {
    color: var(--primary-mint);
}

.footer-bottom {
    background-color: #0f1a24;
    padding: 24px 0;
    font-size: 0.8rem;
    text-align: center;
}

.footer-bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Modals Styling --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 26, 36, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content-wrapper {
    position: relative;
    z-index: 2001;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content-wrapper {
    transform: scale(1);
}

/* Success Checkmark */
.success-checkmark {
    margin-bottom: 24px;
}

.checkmark-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(46, 187, 119, 0.1);
    border: 3px solid var(--primary-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scale-up 0.5s ease;
}

.checkmark-draw {
    font-size: 2.25rem;
    color: var(--primary-mint);
    font-weight: bold;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.gift-box {
    background-color: rgba(255, 82, 82, 0.05);
    border: 1px dashed rgba(255, 82, 82, 0.3);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 20px;
}

.gift-box p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--accent-coral-dark);
}

.gift-box ul {
    list-style-type: none;
}

.gift-box li {
    font-size: 0.875rem;
    margin-bottom: 6px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gift-box li::before {
    content: '✦';
    color: var(--accent-coral);
}

.modal-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
}

/* Lead Dashboard Modal Specifics */
.dashboard-content {
    max-width: 850px;
    text-align: left;
    padding: 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.dashboard-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.btn-close-x {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-close-x:hover {
    color: var(--accent-coral);
    transform: rotate(90deg);
}

.dashboard-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.dashboard-stats {
    margin-bottom: 24px;
}

.stat-card {
    background-color: var(--primary-mint-light);
    border: 1px solid rgba(46, 187, 119, 0.2);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 32px;
    border-radius: 12px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-mint-dark);
    line-height: 1;
    margin-bottom: 4px;
}

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

.table-container {
    width: 100%;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid rgba(46, 187, 119, 0.15);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

#leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

#leads-table th {
    background-color: rgba(46, 187, 119, 0.1);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 10;
}

#leads-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(46, 187, 119, 0.05);
    color: var(--text-main);
}

#leads-table tr:hover td {
    background-color: rgba(46, 187, 119, 0.04);
}

.no-data {
    text-align: center;
    color: var(--text-muted);
    padding: 40px !important;
}

.dashboard-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

/* --- Animations --- */
@keyframes scale-up {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-form-content {
        justify-content: center;
    }
    
    .form-wrapper {
        max-width: 500px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide header nav links on mobile for simplicity */
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .outcome-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .dashboard-actions {
        flex-direction: column;
    }
    
    .steps-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-card {
        padding: 40px 16px 24px 16px;
    }
    
    .screenshots-showcase-title {
        margin: 40px 0 20px 0;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .form-wrapper {
        padding: 24px 16px;
    }
    
    .modal-content-wrapper {
        padding: 30px 16px;
    }
}
