/* =====================================================
   🍕 Pizzario Algeria — Main Stylesheet
   Arabic RTL Premium Design
   Fonts: Tajawal + Cairo (Google Fonts)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ----- CSS Variables ----- */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff6b6b;
    --accent: #f4a261;
    --accent-dark: #e76f51;
    --dark: #0d0d0d;
    --dark-2: #1a1a2e;
    --dark-3: #16213e;
    --dark-card: #1e1e2e;
    --light: #ffffff;
    --light-2: #f8f9fa;
    --light-3: #f1f3f5;
    --text: #212529;
    --text-muted: #6c757d;
    --text-light: #adb5bd;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: #dee2e6;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.24);
    --shadow-primary: 0 8px 32px rgba(230, 57, 70, 0.35);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Tajawal', sans-serif;
    --font-display: 'Cairo', sans-serif;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--light);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ----- Typography ----- */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ----- Utility Classes ----- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section--light {
    background: var(--dark-2);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.35);
    color: var(--primary-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--light);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(230, 57, 70, 0.08);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 19px;
}

/* ----- Navigation ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__logo span {
    color: var(--primary);
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar__links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    transition: color var(--transition);
}

.navbar__links a:hover {
    color: var(--light);
}

/* ----- Hero Section ----- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.95)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Floating pizza dough circles */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.hero__orb--2 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: -100px;
    right: -80px;
    animation-delay: 3s;
}

.hero__orb--3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 40%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    margin-bottom: 28px;
}

.hero__title {
    font-family: var(--font-main);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.45;
    margin-bottom: 24px;
    color: var(--light);
    white-space: pre-line;
}

.hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #ffffff;
    margin-top: 16px;
    margin-bottom: 48px;
    line-height: 1.9;
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.4);
    border-radius: 50px;
    padding: 10px 24px;
    display: inline-block;
    animation: pulseLoop 2s infinite ease-in-out;
}

@keyframes pulseLoop {

    0%,
    100% {
        opacity: 0.85;
        transform: scale(0.98);
        box-shadow: 0 0 10px rgba(39, 174, 96, 0.2);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(39, 174, 96, 0.6);
    }
}

.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__cta-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
}

.hero__stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ----- Features Grid ----- */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: rgba(230, 57, 70, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 10px;
}

.feature-card__desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ----- Pricing Card ----- */
.pricing__card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 2px solid rgba(230, 57, 70, 0.35);
    border-radius: var(--radius-xl);
    padding: 52px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing__card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent 70%);
}

.pricing__best-value {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.pricing__price {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: var(--light);
    line-height: 1;
    margin: 24px 0 8px;
}

.pricing__currency {
    font-size: 24px;
    color: var(--primary-light);
    vertical-align: top;
    margin-top: 12px;
    display: inline-block;
}

.pricing__note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.pricing__features {
    list-style: none;
    text-align: right;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.pricing__features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.5);
    color: #27ae60;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;

}

/* ----- Order Form ----- */
.order-section {
    background: var(--dark-2);
}

.order-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-step__dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--dark-card);
    transition: all var(--transition);
    flex-shrink: 0;
}

.progress-step__dot.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}

.progress-step__dot.done {
    border-color: #27ae60;
    background: #27ae60;
    color: white;
}

.progress-connector {
    width: 40px;
    height: 2px;
    background: var(--border);
    transition: background var(--transition);
}

.progress-connector.done {
    background: #27ae60;
}

.form-step {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-card__header {
    margin-bottom: 32px;
}

.form-card__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.form-card__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}

.form-card__subtitle {
    font-size: 15px;
    color: var(--text-muted);
}

/* Form Fields */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--light);
    outline: none;
    transition: all var(--transition);
    direction: rtl;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    background: rgba(230, 57, 70, 0.06);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    cursor: pointer;
    appearance: none;
}

/* Autocomplete dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--dark-card);
    border: 1px solid rgba(230, 57, 70, 0.35);
    border-radius: var(--radius-sm);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.autocomplete-item {
    padding: 12px 18px;
    font-size: 15px;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.autocomplete-item:hover {
    background: rgba(230, 57, 70, 0.1);
    color: var(--light);
}

.input-wrapper {
    position: relative;
}

/* Social platform selection */
.social-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.social-option {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.social-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.social-option.selected {
    border-color: var(--primary);
    background: rgba(230, 57, 70, 0.12);
}

.social-option__icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.social-option__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.social-option.selected .social-option__name {
    color: var(--primary-light);
}

/* Form navigation buttons */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    gap: 16px;
}

.btn-next {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-primary);
    flex: 1;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(230, 57, 70, 0.5);
}

.btn-back {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-light);
    border: 1px solid var(--border);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--light);
}

/* ----- Pizza Menu Builder (inside order form) ----- */
.pizza-builder-toggle {
    width: 100%;
    padding: 20px;
    background: rgba(230, 57, 70, 0.08);
    border: 2px dashed rgba(230, 57, 70, 0.4);
    border-radius: var(--radius);
    color: var(--primary-light);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pizza-builder-toggle:hover {
    background: rgba(230, 57, 70, 0.15);
    border-color: var(--primary);
}

.pizza-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.pizza-item-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all var(--transition);
    animation: fadeSlideIn 0.3s ease;
}

.pizza-item-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
}

.pizza-item-card__name {
    font-weight: 700;
    color: var(--light);
    font-size: 16px;
}

.pizza-item-card__details {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 3px;
}

.pizza-item-card__price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
    white-space: nowrap;
}

.pizza-item-card__actions {
    display: flex;
    gap: 8px;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition);
}

.icon-btn:hover {
    background: rgba(230, 57, 70, 0.2);
    color: var(--primary-light);
}

.icon-btn.delete:hover {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* Pizza add modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 100%;
    max-width: 520px;
    transform: scale(0.9);
    transition: transform var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal {
    transform: scale(1);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.modal__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.modal__close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.modal__close:hover {
    color: var(--light);
}

/* ----- Order Summary ----- */
.order-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.order-summary__section {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.order-summary__section:last-child {
    border-bottom: none;
}

.order-summary__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.order-summary__value {
    font-size: 16px;
    color: var(--light);
    font-weight: 600;
}

/* ----- Testimonials ----- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    color: #f39c12;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    font-family: var(--font-display);
    color: white;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 700;
    color: var(--light);
    font-size: 16px;
}

.testimonial-card__location {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ----- Footer ----- */
footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer__brand-name span {
    color: var(--primary);
}

.footer__desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 15px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--primary-light);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

/* Success screen */
.success-screen {
    text-align: center;
    padding: 60px 24px;
}

.success-screen__icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-screen__title {
    font-size: 32px;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 16px;
}

.success-screen__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ----- Animations / Scroll reveal ----- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .navbar__links {
        display: none;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .social-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .form-card {
        padding: 28px 20px;
    }

    .pricing__card {
        padding: 40px 28px;
    }

    .hero__stats {
        gap: 32px;
    }

    .progress-bar {
        gap: 6px;
    }

    .progress-connector {
        width: 24px;
    }

    .progress-step__dot {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .btn-lg {
        padding: 16px 32px;
        font-size: 17px;
    }

    .hero__title {
        font-size: 32px;
    }

    .pricing__price {
        font-size: 56px;
    }
}
