/* ===== SCHOOL MANAGEMENT SYSTEM LANDING PAGE STYLES ===== */

:root {
    --sms-teal: #0f766e;
    --sms-teal-light: #14b8a6;
    --sms-teal-bg: #f0fdfa;
    --sms-gold: #d97706;
    --sms-gold-light: #fef3c7;
    --sms-text: #1e293b;
    --sms-text-muted: #64748b;
    --sms-bg-light: #f8fafc;
    
    /* Pastel Card Backgrounds */
    --pastel-mint: #ecfdf5;
    --pastel-amber: #fffbeb;
    --pastel-indigo: #eef2ff;
    --pastel-pink: #fdf2f8;
    --pastel-cyan: #ecfeff;
    --pastel-purple: #f5f3ff;
    
    --shadow-premium: 0 20px 40px -15px rgba(13, 148, 136, 0.12), 0 15px 30px -20px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   1. PENCIL BANNER
   ========================================================================== */
.pencil-banner {
    background-color: var(--sms-gold-light);
    color: #92400e;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
    text-align: center;
    border-bottom: 1px solid rgba(217, 119, 6, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pencil-banner.hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.pencil-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.pencil-banner-btn {
    background: #92400e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background-color 0.2s ease;
    margin-left: 8px;
}

.pencil-banner-btn:hover {
    background: #78350f;
}

.pencil-banner-close {
    background: none;
    border: none;
    color: #92400e;
    font-size: 1.1rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: opacity 0.2s ease;
    padding: 5px;
}

.pencil-banner-close:hover {
    opacity: 1;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.sms-hero {
    background: radial-gradient(109.41% 109.41% at 50% 50%, #F0FDF9 28.02%, #E6F4F2 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sms-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.sms-hero .container {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.sms-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--sms-teal);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.sms-hero p.tagline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--sms-text-muted);
    max-width: 800px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.sms-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-sms-primary {
    background-color: var(--sms-teal);
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-sms-primary:hover {
    background-color: var(--sms-teal-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}

.btn-sms-secondary {
    background-color: #fff;
    color: var(--sms-teal);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(13, 148, 136, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-sms-secondary:hover {
    background-color: var(--sms-teal-bg);
    border-color: var(--sms-teal);
    transform: translateY(-2px);
}

/* BROWSER FRAME MOCKUP */
.browser-frame {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 60px -15px rgba(0,0,0,0.12), 0 0 1px 1px rgba(0,0,0,0.05);
    border: 1px solid rgba(13, 148, 136, 0.1);
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
}

.browser-header {
    background: #f1f5f9;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(13, 148, 136, 0.08);
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 20px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.browser-dot.red { background-color: #ef4444; }
.browser-dot.yellow { background-color: #eab308; }
.browser-dot.green { background-color: #22c55e; }

.browser-address {
    background: #fff;
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 0.75rem;
    color: var(--sms-text-muted);
    flex-grow: 1;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-address i {
    color: #10b981;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. INDUSTRY ALIGNMENT STRIP
   ========================================================================== */
.industry-strip {
    background-color: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 24px 0;
}

.industry-strip-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px 48px;
    flex-wrap: wrap;
}

.industry-item {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sms-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.industry-item:hover {
    color: var(--sms-teal);
}

.industry-item i {
    color: var(--sms-teal-light);
    font-size: 1.1rem;
}

/* ==========================================================================
   4. SUITE SECTION (THRIVE)
   ========================================================================== */
.suite-section {
    padding: 100px 0;
    background-color: #fff;
}

.suite-header-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: end;
}

.suite-header-layout h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--sms-teal);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.suite-header-layout p {
    font-size: 1.1rem;
    color: var(--sms-text-muted);
    line-height: 1.7;
}

.suite-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.suite-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.suite-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 148, 136, 0.2);
    box-shadow: var(--shadow-premium);
}

.suite-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suite-card:hover .suite-image img {
    transform: scale(1.05);
}

.suite-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.suite-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sms-teal);
    margin-bottom: 12px;
}

.suite-card p {
    font-size: 0.9rem;
    color: var(--sms-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.suite-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sms-teal-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.suite-card:hover .suite-link {
    gap: 10px;
}

/* ==========================================================================
   5. EASY SECTION (GRID OF 6 COLORFUL CARDS WITH CSS MOCKUPS)
   ========================================================================== */
.easy-section {
    padding: 100px 0;
    background-color: var(--sms-bg-light);
}

.section-title-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-title-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sms-teal);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title-center p {
    font-size: 1.1rem;
    color: var(--sms-text-muted);
}

.easy-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.easy-tab-pill {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--sms-teal);
    padding: 10px 20px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.easy-tab-pill:hover,
.easy-tab-pill.active {
    background-color: var(--sms-teal);
    border-color: var(--sms-teal);
    color: #fff;
}

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

.easy-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(13, 148, 136, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.easy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.easy-card-body {
    padding: 36px 36px 12px;
    flex-grow: 1;
}

.easy-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--sms-teal);
    margin-bottom: 12px;
}

.easy-card p {
    font-size: 0.95rem;
    color: var(--sms-text);
    opacity: 0.85;
    line-height: 1.6;
}

/* Specific Card Colors */
.easy-card.mint { background-color: var(--pastel-mint); }
.easy-card.amber { background-color: var(--pastel-amber); }
.easy-card.indigo { background-color: var(--pastel-indigo); }
.easy-card.pink { background-color: var(--pastel-pink); }
.easy-card.cyan { background-color: var(--pastel-cyan); }
.easy-card.purple { background-color: var(--pastel-purple); }

/* Mockup containers */
.mockup-container {
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* 1. Admission Form Mockup */
.mockup-admission-frame {
    width: 220px;
    height: 175px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    border-bottom: none;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admission-title {
    width: 90px;
    height: 10px;
    background: var(--sms-teal);
    border-radius: 2px;
}

.admission-input {
    border: 1px solid #cbd5e1;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.admission-input-fill {
    width: 60px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 2px;
}

.admission-btn {
    background: var(--sms-teal-light);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    text-align: center;
    padding: 6px 0;
    border-radius: 4px;
    margin-top: 4px;
}

/* 2. Fee Billing Mockup */
.mockup-fee-frame {
    width: 230px;
    height: 175px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    border-bottom: none;
    padding: 12px;
    overflow: hidden;
}

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

.fee-title {
    width: 70px;
    height: 8px;
    background: var(--sms-teal);
    border-radius: 2px;
}

.fee-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 4px;
}

.fee-item-name {
    width: 50px;
    height: 6px;
    background: #475569;
    border-radius: 1px;
}

.fee-amount {
    width: 30px;
    height: 6px;
    background: #94a3b8;
    border-radius: 1px;
}

.fee-status {
    width: 25px;
    height: 10px;
    border-radius: 3px;
}

.fee-status.paid { background: #d1fae5; }
.fee-status.pending { background: #fef3c7; }

/* 3. Gradebook Mockup */
.mockup-grade-frame {
    width: 200px;
    height: 175px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    border-bottom: none;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.grade-gpa-box {
    background: var(--sms-teal-bg);
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-radius: 6px;
    padding: 6px;
    text-align: center;
}

.gpa-title {
    font-size: 0.45rem;
    color: var(--sms-text-muted);
    text-transform: uppercase;
}

.gpa-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sms-teal);
}

.grade-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.grade-sub {
    width: 45px;
    height: 5px;
    background: #94a3b8;
    border-radius: 1px;
}

.grade-letter {
    font-size: 0.55rem;
    font-weight: 800;
    color: #0d9488;
}

/* 4. Timetable Mockup */
.mockup-timetable-frame {
    width: 220px;
    height: 175px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    border-bottom: none;
    padding: 10px;
}

.timetable-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.timetable-day-label {
    width: 25px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 1px;
}

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

.timetable-cell {
    height: 38px;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timetable-cell.math { background: #e0f2fe; border: 1px solid #bae6fd; }
.timetable-cell.science { background: #f3e8ff; border: 1px solid #e9d5ff; }
.timetable-cell.history { background: #fef3c7; border: 1px solid #fde68a; }

.cell-code {
    width: 20px;
    height: 4px;
    background: rgba(0,0,0,0.3);
    border-radius: 1px;
}

.cell-room {
    width: 12px;
    height: 3px;
    background: rgba(0,0,0,0.15);
    border-radius: 1px;
}

/* 5. Parent Portal Mockup */
.mockup-phone-frame {
    width: 140px;
    height: 185px;
    background: #111827;
    border-radius: 16px 16px 0 0;
    padding: 6px 6px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 2px solid #374151;
    border-bottom: none;
    position: relative;
}

.phone-screen {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    padding: 10px;
}

.phone-header {
    height: 6px;
    width: 40px;
    background: #000;
    border-radius: 3px;
    margin: 0 auto 10px;
}

.portal-widget {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.portal-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--sms-teal);
    text-align: center;
}

.portal-stat {
    background: #f1f5f9;
    padding: 6px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.portal-stat-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--sms-teal-light);
}

.portal-stat-lbl {
    font-size: 0.45rem;
    color: var(--sms-text-muted);
}

.portal-alert {
    background: var(--sms-gold-light);
    border: 1px solid rgba(217, 119, 6, 0.15);
    padding: 4px;
    border-radius: 4px;
    font-size: 0.48rem;
    color: #92400e;
    line-height: 1.2;
}

/* 6. GPS Tracking Mockup */
.mockup-gps-frame {
    width: 220px;
    height: 175px;
    background: #e2e8f0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #cbd5e1;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.gps-route {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 60%, rgba(0,0,0,0.03) 100%);
}

.gps-road {
    position: absolute;
    background: #fff;
    border-radius: 10px;
}

.gps-road.h {
    height: 12px;
    width: 180px;
    top: 50px;
    left: 20px;
}

.gps-road.v {
    width: 12px;
    height: 120px;
    left: 100px;
    top: 20px;
}

.gps-bus {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--sms-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    top: 48px;
    left: 98px;
    box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.2);
    animation: pulseGps 2s infinite;
}

@keyframes pulseGps {
    0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(217, 119, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

.gps-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 118, 110, 0.95);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.55rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

/* ==========================================================================
   6. CUSTOMIZABLE SIZE SECTION (INTERACTIVE TABS)
   ========================================================================== */
.scale-section {
    padding: 100px 0;
    background-color: #fff;
}

.scale-layout {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 60px;
    align-items: center;
}

.scale-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sms-teal);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.scale-info p.intro {
    font-size: 1.1rem;
    color: var(--sms-text-muted);
    margin-bottom: 40px;
}

.scale-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scale-tab-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-tab-item:hover {
    border-color: rgba(13, 148, 136, 0.3);
    background-color: var(--sms-bg-light);
}

.scale-tab-item.active {
    border-color: var(--sms-teal);
    background-color: var(--sms-teal-bg);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.04);
}

.scale-tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--sms-bg-light);
    color: var(--sms-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scale-tab-item.active .scale-tab-icon {
    background: var(--sms-teal);
    color: #fff;
}

.scale-tab-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sms-teal);
    margin-bottom: 6px;
}

.scale-tab-text p {
    font-size: 0.9rem;
    color: var(--sms-text-muted);
    line-height: 1.4;
}

.scale-showcase {
    position: relative;
}

.scale-pane {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.scale-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CUSTOM INTERACTIVE DASHBOARD PREVIEWS */
.scale-dashboard-mockup {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.db-mockup-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-mockup-title {
    font-weight: 700;
    color: var(--sms-teal);
    font-size: 0.95rem;
}

.db-mockup-badge {
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sms-text-muted);
}

.db-mockup-body {
    padding: 24px;
    background: #fff;
}

/* 1. Preschool / Academy */
.db-layout-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.db-small-card {
    background: var(--sms-bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-small-card h4 {
    font-size: 0.8rem;
    color: var(--sms-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.db-small-card .db-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--sms-teal);
}

.db-small-chart-line {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.db-small-chart-fill {
    height: 100%;
    background: var(--sms-teal-light);
}

/* 2. K-12 District Multi-Campus */
.db-layout-large {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.db-large-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}

.db-large-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sms-text-muted);
}

.db-large-select {
    border: 1px solid #cbd5e1;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sms-teal);
    background: #fff;
}

.db-large-campuses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.db-campus-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    background: #f8fafc;
}

.db-campus-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sms-text);
    margin-bottom: 4px;
}

.db-campus-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sms-teal-light);
}

.db-campus-sub {
    font-size: 0.6rem;
    color: var(--sms-text-muted);
}

/* 3. University / College Scale */
.db-layout-network {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
}

.db-network-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-network-item {
    padding: 8px;
    border-radius: 6px;
    background: var(--sms-bg-light);
    border: 1px solid #e2e8f0;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--sms-teal);
    display: flex;
    justify-content: space-between;
}

.db-network-item span {
    font-weight: 800;
    color: var(--sms-teal-light);
}

.db-network-map {
    height: 120px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    position: relative;
    background-color: #f1f5f9;
    overflow: hidden;
}

.map-dot {
    width: 8px;
    height: 8px;
    background: var(--sms-teal-light);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
}
.map-dot.dot-1 { top: 35%; left: 30%; }
.map-dot.dot-2 { top: 60%; left: 65%; }
.map-dot.dot-3 { top: 75%; left: 40%; }

/* ==========================================================================
   7. PARALLAX/IMAGE CTA BANNER (LONG HAUL)
   ========================================================================== */
.longhaul-banner {
    position: relative;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.longhaul-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.9) 0%, rgba(11, 66, 62, 0.95) 100%);
    z-index: 1;
}

.longhaul-banner .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.longhaul-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.longhaul-banner p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    opacity: 0.9;
    line-height: 1.7;
}

.btn-sms-gold {
    background-color: var(--sms-gold);
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-sms-gold:hover {
    background-color: #fff;
    color: var(--sms-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   8. TESTIMONIALS SECTION (POWERING THE SCHOOL)
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.testimonial-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(13, 148, 136, 0.1);
}

.testimonial-stars {
    color: var(--sms-gold);
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--sms-text);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #e2e8f0;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sms-teal);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--sms-text-muted);
}

/* ==========================================================================
   9. FAQ SECTION (COLLAPSIBLE ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--sms-bg-light);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sms-teal);
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(13, 148, 136, 0.15);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--sms-teal);
    user-select: none;
}

.faq-question span {
    font-size: 1.05rem;
    padding-right: 15px;
}

.faq-icon-arrow {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    font-size: 0.95rem;
    color: var(--sms-text-muted);
    line-height: 1.6;
}

/* Active State for FAQ item */
.faq-item.active {
    border-color: var(--sms-teal);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.03);
}

.faq-item.active .faq-question {
    color: var(--sms-teal-light);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

.faq-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.faq-image-container img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   10. PRE-FOOTER CTA SECTION
   ========================================================================== */
.sms-prefooter {
    background: linear-gradient(135deg, var(--sms-teal) 0%, #064e3b 100%);
    padding: 100px 0 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sms-prefooter-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sms-prefooter-info h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sms-prefooter-info p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    opacity: 0.9;
    line-height: 1.6;
}

.sms-prefooter-showcase {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.sms-prefooter-showcase img {
    max-width: 110%;
    height: auto;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -15px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.sms-prefooter:hover .sms-prefooter-showcase img {
    transform: translateY(0);
}

/* Swoosh Separator */
.swoosh-separator {
    position: relative;
    height: 40px;
    background-color: var(--sms-teal);
    overflow: hidden;
}

.swoosh-separator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    border-radius: 100% 100% 0 0 / 80% 80% 0 0;
}

/* ==========================================================================
   11. RESPONSIVENESS (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
    .suite-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .easy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .scale-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-image-container img {
        height: 320px;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sms-prefooter-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .sms-prefooter-showcase {
        justify-content: center;
    }
    
    .sms-prefooter-showcase img {
        max-width: 90%;
        transform: translateY(10px);
    }
}

@media (max-width: 768px) {
    .pencil-banner {
        font-size: 0.8rem;
        padding: 8px 30px;
    }
    
    .pencil-banner-content {
        gap: 6px;
    }
    
    .pencil-banner-btn {
        margin-left: 2px;
        padding: 2px 8px;
    }
    
    .sms-hero {
        padding: 100px 0 60px;
    }
    
    .suite-header-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .suite-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .easy-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .easy-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 20px 20px;
        margin-left: -20px;
        margin-right: -20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .easy-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .easy-tab-pill {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .suite-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-strip-content {
        gap: 16px 24px;
    }
    
    .industry-item {
        font-size: 0.85rem;
    }
    
    .sms-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-sms-primary, .btn-sms-secondary {
        justify-content: center;
    }
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.sms-pricing {
    padding: var(--section-padding);
    background-color: var(--sms-bg-light);
    position: relative;
    border-top: 1px solid rgba(13, 148, 136, 0.08);
}

.sms-pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sms-price-badge {
    background-color: var(--sms-teal-bg);
    color: var(--sms-teal);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.sms-pricing-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--sms-teal);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.sms-pricing-header p {
    color: var(--sms-text-muted);
    font-size: 1.05rem;
}

.sms-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.sms-price-card {
    background: #ffffff;
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.sms-price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--sms-teal-light);
}

.sms-price-card-featured {
    border-color: var(--sms-teal);
    background: radial-gradient(120% 120% at 50% 0%, #ffffff 60%, var(--sms-teal-bg) 100%);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.08);
}

.sms-popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sms-teal);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 99px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sms-price-tier {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sms-text);
    margin-bottom: 12px;
}

.sms-price-cost {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.sms-setup-fee {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sms-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sms-monthly-fee {
    font-size: 1.2rem;
    color: var(--sms-text-muted);
    margin-top: 4px;
}

.sms-monthly-fee strong {
    font-size: 2.5rem;
    color: var(--sms-text);
    font-weight: 800;
}

.sms-price-desc {
    font-size: 0.92rem;
    color: var(--sms-text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 44px;
}

.sms-price-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    flex-grow: 1;
    list-style: none;
    padding: 0;
}

.sms-price-features li {
    font-size: 0.92rem;
    color: var(--sms-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sms-price-features li i {
    color: var(--sms-teal-light);
    font-size: 0.85rem;
}

.sms-price-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    background-color: #ffffff;
    color: var(--sms-teal);
    border: 1px solid var(--sms-teal);
    transition: all 0.2s ease;
    cursor: pointer;
}

.sms-price-cta:hover {
    background-color: var(--sms-teal);
    color: #ffffff;
}

.sms-price-cta-featured {
    background-color: var(--sms-teal);
    color: #ffffff;
}

.sms-price-cta-featured:hover {
    background-color: var(--sms-teal-light);
    border-color: var(--sms-teal-light);
}

@media (max-width: 991px) {
    .sms-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}
