/* 
 * Premium Blended Stylesheet - Tumbledays Tribe Landing Page
 * Merges Vercel layout (blue/green palette) with progressive steppers & dashboard styles.
 */

:root {
    --primary-color: #0057b8;        /* Tumbledays Royal Blue */
    --primary-dark: #00336e;
    --accent-color: #24b34b;         /* Gurgaon Green */
    --accent-hover: #1e8f3c;
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --error-color: #ef4444;
    --success-color: #24b34b;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ==========================================================================
   1. Live Hero Section Styles
   ========================================================================== */
.tribe-hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 10px 30px rgba(0, 87, 184, 0.15);
}

.tribe-hero-section:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.tribe-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tribe-badge-top {
    display: inline-block;
    background: rgba(36, 179, 75, 0.2);
    border: 1px solid var(--accent-color);
    color: #34d399;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.tribe-hero-content h1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tribe-hero-content p {
    font-size: 19px;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 35px;
    font-weight: 500;
}

.tribe-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(36, 179, 75, 0.4);
}

.tribe-hero-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 179, 75, 0.6);
}

/* ==========================================================================
   2. Live How it Works Section Styles
   ========================================================================== */
.how-it-works-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.tribe-container {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-centered h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-title-centered p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1150px;
    margin: 0 auto;
}

.step-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all .3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 87, 184, 0.06);
    border-color: var(--primary-color);
}

.step-num-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 87, 184, 0.3);
}

.step-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin: 15px 0 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

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

/* ==========================================================================
   3. Interactive Stepper & Dashboard Container
   ========================================================================== */
.tumbledays-tribe-section {
    font-family: var(--font-sans);
    background: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.tribe-header {
    text-align: center;
    margin-bottom: 45px;
}

.tribe-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.tribe-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.tribe-card {
    background: #ffffffd9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #d9e3ef;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .3s ease, box-shadow .3s ease;
}

.tribe-card:hover {
    box-shadow: 0 15px 35px rgba(0, 87, 184, 0.08);
}

.tracker-card {
    background: #fff;
    border: 2px solid #d9e3ef;
}

/* ==========================================================================
   4. Stepper & Discount Value Styles
   ========================================================================== */
.discount-summary-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 87, 184, 0.2);
    overflow: hidden;
}

.discount-summary-box .glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 20px;
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 1;
}

.discount-summary-box.max-discount .glow-bg {
    opacity: 1;
}

.discount-summary-content {
    position: relative;
    z-index: 2;
}

.discount-summary-box p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    opacity: .9;
    font-weight: 600;
}

.discount-value {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    display: inline-block;
    transition: transform .3s ease;
}

.discount-value.bump {
    transform: scale(1.15);
}

.discount-desc {
    font-size: 15px;
    opacity: .95;
    font-weight: 500;
}

/* Stepper Node Line */
.stepper-container {
    padding: 20px 0;
    position: relative;
}

.progress-track-bg {
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    z-index: 1;
}

.progress-track-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    z-index: 2;
    transition: width .6s cubic-bezier(.4, 0, .2, 1);
}

.stepper-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 80px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 12px;
    transition: all .4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-node.active .step-circle {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 800;
    transform: scale(1.1);
}

.step-node.completed .step-circle {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(36, 179, 75, 0.4);
}

.step-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
    transition: color .3s ease;
}

.step-node.active .step-label, .step-node.completed .step-label {
    color: #1e293b;
}

.step-discount {
    font-size: 14px;
    font-weight: 800;
    color: #94a3b8;
    transition: color .3s ease;
}

.step-node.active .step-discount {
    color: var(--primary-color);
}

.step-node.completed .step-discount {
    color: var(--accent-color);
}

/* ==========================================================================
   5. Interactive Huddle Visualizer
   ========================================================================== */
.huddle-visualization {
    margin-top: 30px;
    padding: 22px;
    background-color: #f8fafc;
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
    text-align: center;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.huddle-visualization.active {
    background-color: #ecfdf5;
    border-color: #34d399;
    box-shadow: 0 0 15px rgba(36, 179, 75, 0.15);
}

.huddle-status-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.avatar-huddle-group {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}

.huddle-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: linear-gradient(135deg, var(--primary-color), #7d8ea8);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
    position: relative;
    z-index: 5;
}

.huddle-avatar:first-child {
    margin-left: 0;
}

.huddle-avatar.active-avatar {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: 6;
}

.huddle-avatar.leader-avatar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 10px rgba(0, 87, 184, 0.25);
    z-index: 7;
}

.huddle-avatar.pending-avatar {
    background: #cbd5e1;
    color: #64748b;
    border-style: dashed;
    z-index: 4;
}

.huddle-visualization.active .huddle-avatar.active-avatar {
    border-color: #34d399;
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(36, 179, 75, 0.3);
}

/* ==========================================================================
   6. Forms & Dashboard Inputs
   ========================================================================== */
.create-tribe-view {
    display: block;
}

.create-tribe-view h3, .dashboard-view h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.create-tribe-view p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tribe-benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.tribe-benefits-list li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.tribe-benefits-list li i {
    color: var(--accent-color);
    font-size: 16px;
}

.tribe-finance-note {
    display: flex;
    gap: 12px;
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 22px;
    line-height: 1.5;
    text-align: left;
}

.tribe-finance-note i {
    color: #d97706;
    font-size: 16px;
    margin-top: 2px;
}

/* General form fields */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: #1e293b;
    transition: border-color .3s ease, box-shadow .3s ease;
    background-color: #f8fafc;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: "▼";
    font-size: 10px;
    color: #64748b;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: #1e293b;
    background-color: #f8fafc;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1);
}

.phone-container {
    display: flex;
    gap: 10px;
}

.dial-code-badge {
    background-color: #f1f5f9;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: #475569;
    min-width: 75px;
}

/* Validation Highlights */
.error-tip {
    color: var(--error-color);
    font-size: 12px;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.form-group.has-error .form-input {
    border-color: var(--error-color);
    background-color: #fff5f5;
}

.form-group.has-error .error-tip {
    display: block;
}

.alert-box {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: none;
}

.alert-box-success {
    display: block;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-box-error {
    display: block;
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Submit Actions */
.tribe-btn {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 87, 184, 0.15);
}

.tribe-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 87, 184, 0.3);
}

.tribe-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   7. Live Dashboard View
   ========================================================================== */
.dashboard-view {
    display: block;
    text-align: left;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.dashboard-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.btn-reset {
    background: none;
    border: none;
    color: #ef4444;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    transition: background-color .3s ease;
}

.btn-reset:hover {
    background-color: #fee2e2;
}

.dashboard-section {
    margin-bottom: 25px;
}

.dashboard-section h4 {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
    text-align: left;
}

.members-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 5px;
    margin-bottom: 15px;
}

.member-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all .3s ease;
}

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

.member-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.member-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.member-name .badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 6px;
}

.badge-leader {
    background-color: #e0f2fe;
    color: #0369a1;
}

.badge-active {
    background-color: #dcfce7;
    color: #15803d;
}

.btn-action-small {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease;
    font-family: inherit;
}

.btn-remove-member {
    background: none;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-remove-member:hover {
    background-color: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
}

.btn-invite-send {
    padding: 12px 18px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-invite-send:hover:not(:disabled) {
    background-color: var(--primary-dark);
}

.btn-invite-send:disabled {
    background-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

.share-link-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f1f5f9;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.share-link-text {
    flex: 1;
    font-size: 13px;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: all;
    font-family: monospace;
}

.btn-copy-link {
    background-color: #fff;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.btn-copy-link:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.btn-copy-link.copied {
    background-color: #dcfce7;
    color: #15803d;
    border-color: #86efac;
}

/* ==========================================================================
   8. Live FAQ Accordion Section
   ========================================================================== */
.faq-section {
    padding: 80px 20px;
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all .3s ease;
}

.faq-question {
    background-color: #f8fafc;
    padding: 20px 25px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s ease;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question i {
    transition: transform .3s ease;
    color: var(--text-muted);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    transition: all .3s cubic-bezier(0,1,0,1);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.05);
}

.faq-item.active .faq-question {
    background-color: #eff6ff;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 1000px;
    border-top: 1px solid #dbeafe;
}

/* ==========================================================================
   9. Stepper Guideline Pointers
   ========================================================================== */
.dashboard-guide-wrapper {
    position: relative;
    margin-top: 30px;
    border-top: 2px dashed #cbd5e1;
    padding-top: 40px;
}

.guide-heading {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.guide-heading i {
    color: var(--primary-color);
}

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

.pointer-item {
    background-color: #f1f5f9;
    border-left: 4px solid var(--primary-color);
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    text-align: left;
}

.pointer-item.green {
    border-left-color: var(--accent-color);
}

.pointer-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.pointer-item p {
    font-size: 12.5px;
    color: #475569;
    line-height: 1.5;
}

/* ==========================================================================
   10. Responsive Media Queries
   ========================================================================== */
@media (max-width: 991px) {
    .tribe-grid {
        grid-template-columns: 1fr;
    }
    .tribe-hero-content h1 {
        font-size: 38px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pointers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tumbledays-tribe-section {
        padding: 40px 15px;
    }
    .tribe-card {
        padding: 24px;
    }
    .step-node {
        width: 50px;
    }
    .progress-track-bg {
        top: 37px;
        left: 25px;
        right: 25px;
    }
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 11px;
        margin-bottom: 8px;
    }
    .step-label {
        font-size: 9px;
    }
    .step-discount {
        font-size: 12px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .tribe-hero-content p {
        font-size: 17px;
    }
}
