/* ========================================
   APPLE-INSPIRED DESIGN SYSTEM
   ShotTrackr Landing Page
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    /* App Colors */
    --primary-blue: #307DE8;
    --progress-green: #2AD270;
    --progress-orange: #F5A638;
    --progress-red: #E23535;

    /* Neutrals */
    --color-text: #1d1d1f;
    --color-text-secondary: #86868b;
    --color-bg: #ffffff;
    --color-bg-secondary: #f5f5f7;
    --color-border: #d2d2d7;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --spacing-2xl: 120px;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== NAVIGATION ========== */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-link {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.2s ease;
}

.nav-link:hover {
    background-color: rgba(48, 125, 232, 0.08);
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero-subtitle {
    font-size: clamp(19px, 2.5vw, 24px);
    color: var(--color-text-secondary);
    line-height: 1.4;
    max-width: 640px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.cta-group {
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(48, 125, 232, 0.3);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(48, 125, 232, 0.4);
}

.btn-primary.disabled {
    background: #e8e8ed;
    color: #86868b;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary.disabled:hover {
    transform: none;
}

.availability {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.hero-image {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.device-frame {
    max-width: 320px;
    border-radius: 42px;
    box-shadow:
        0 0 0 8px #1d1d1f,
        0 0 0 9px #424245,
        var(--shadow-lg);
}

/* ========== FEATURE SHOWCASE ========== */
.feature-showcase {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.feature-showcase.reverse {
    background: var(--color-bg-secondary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-showcase.reverse .showcase-grid {
    direction: rtl;
}

.feature-showcase.reverse .showcase-content {
    direction: ltr;
}

.showcase-content h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.showcase-content p {
    font-size: 19px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 17px;
    color: var(--color-text-secondary);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.showcase-image {
    display: flex;
    justify-content: center;
}

.screenshot {
    max-width: 300px;
    border-radius: 38px;
    border: 8px solid #1d1d1f;
    box-shadow: var(--shadow-lg);
}

/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-secondary);
}

.section-title {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 16px;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-badge-large {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.pricing-hero h2 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 21px;
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.4;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    background: white;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
}

.comparison-column.highlighted {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 32px rgba(48, 125, 232, 0.15);
    position: relative;
}

.comparison-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-bg-secondary);
}

.comparison-title.positive {
    color: var(--primary-blue);
    border-bottom-color: rgba(48, 125, 232, 0.2);
}

.comparison-title.negative {
    color: var(--color-text);
}

.comparison-list {
    list-style: none;
    margin-bottom: 32px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.5;
}

.positive-item {
    color: var(--color-text);
}

.negative-item {
    color: var(--color-text-secondary);
}

.positive-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.negative-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-pricing {
    width: 100%;
    margin-top: 16px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-secondary);
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 28px;
    font-size: 19px;
    font-weight: 600;
    color: var(--color-text);
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--color-bg-secondary);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--progress-orange);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 24px;
}

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

.author-avatar {
    font-size: 40px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.author-title {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* ========== DEVELOPER SECTION ========== */
.developer-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-secondary);
}

.developer-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.developer-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    display: block;
    border: 3px solid rgba(42, 210, 112, 0.2);
}

.developer-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.developer-card p {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.developer-promise {
    font-size: 19px;
    color: var(--color-text);
    margin-top: 32px;
    margin-bottom: 32px;
}

.developer-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-donate {
    display: inline-block;
    background: #307DE8;
    color: white !important;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(48, 125, 232, 0.25);
    text-decoration: none;
    border: 2px solid #307DE8;
    cursor: pointer;
}

.btn-donate:hover {
    background: #0051D5;
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(48, 125, 232, 0.45);
}

.donate-icon {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.25);
}

.btn-secondary:hover {
    background: #0051D5;
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(0, 122, 255, 0.45);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-text);
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

.fade-in.delay-1 {
    animation-delay: 0.2s;
}

.fade-in.delay-2 {
    animation-delay: 0.4s;
}

.fade-in.delay-3 {
    animation-delay: 0.6s;
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-scroll.delay-1 {
    transition-delay: 0.1s;
}

.fade-in-scroll.delay-2 {
    transition-delay: 0.2s;
}

/* ========== CONTACT MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 540px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-bg-secondary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--color-text);
    color: white;
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-family: inherit;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(48, 125, 232, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    margin-top: 8px;
}

.form-status {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 16px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(42, 210, 112, 0.15);
    color: var(--progress-green);
    border: 2px solid var(--progress-green);
}

.form-status.error {
    display: block;
    background: rgba(226, 53, 53, 0.1);
    color: var(--progress-red);
    border: 2px solid var(--progress-red);
}

/* ========== SUCCESS POPUP ========== */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.success-popup-content {
    background: white;
    padding: 48px 60px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-popup.show .success-popup-content {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--progress-green);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-popup-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.success-popup-content p {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ========== MULTI-STEP FORM STYLES ========== */

/* Progress Indicator */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 32px 0 40px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.progress-dot.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(48, 125, 232, 0.15);
}

.progress-dot.completed {
    background: var(--progress-green);
    border-color: var(--progress-green);
}

/* Form Step Container */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 140px;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.form-step.exiting-left {
    animation: slideOutLeft 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.form-step.exiting-right {
    animation: slideOutRight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

/* Larger Labels for Multi-Step */
.form-step label {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Larger Inputs for Single-Field Focus */
.form-step input,
.form-step select,
.form-step textarea {
    font-size: 17px;
    padding: 16px 18px;
    scroll-margin-top: 80px;
    scroll-margin-bottom: 80px;
}

/* Field Hints */
.field-hint {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 6px;
    display: block;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-back {
    flex: 1;
    background: white;
    color: var(--primary-blue);
    font-size: 17px;
    font-weight: 500;
    padding: 14px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-back:hover:not(:disabled) {
    background: rgba(48, 125, 232, 0.08);
}

.btn-back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: var(--color-border);
    color: var(--color-text-secondary);
}

.btn-next {
    flex: 2;
    background: var(--primary-blue);
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 32px;
    border: none;
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(48, 125, 232, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-next:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(48, 125, 232, 0.4);
}

.btn-next:disabled {
    background: #e8e8ed;
    color: #86868b;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-next:disabled:hover {
    transform: none;
}

#submit-btn {
    flex: 2;
}

/* Review Step Styles */
.review-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.review-item {
    background: var(--color-bg-secondary);
    padding: 16px 20px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: start;
    gap: 12px;
}

.review-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-value {
    font-size: 17px;
    color: var(--color-text);
    word-break: break-word;
}

.review-message {
    white-space: pre-wrap;
    line-height: 1.5;
}

.review-edit {
    background: transparent;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-edit:hover {
    background: rgba(48, 125, 232, 0.1);
}

.review-edit svg {
    width: 16px;
    height: 16px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .showcase-grid {
        gap: 60px;
    }

    .screenshot {
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 60px;
        --spacing-2xl: 80px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .device-frame {
        max-width: 260px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-showcase.reverse .showcase-grid {
        direction: ltr;
    }

    .showcase-content h2 {
        font-size: 36px;
    }

    .screenshot {
        max-width: 220px;
        margin: 0 auto;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .pricing-comparison {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .modal-content {
        padding: 40px 32px;
    }
}

@media (max-width: 480px) {
    .nav-content {
        padding: 16px 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .device-frame {
        max-width: 220px;
    }

    .comparison-column {
        padding: 32px 24px;
    }

    .comparison-list li {
        gap: 8px;
        font-size: 15px;
    }

    .positive-item svg,
    .negative-item svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }

    .developer-card {
        padding: 40px 28px;
    }

    .modal-content {
        padding: 32px 24px;
        width: 95%;
        max-height: 85vh;
    }

    /* Multi-Step Form Mobile Adjustments */
    .form-navigation {
        gap: 8px;
    }

    .form-step {
        min-height: 100px;
    }

    .form-step label {
        font-size: 19px;
    }

    .btn-back,
    .btn-next,
    #submit-btn {
        flex: 1;
        padding: 12px 16px;
        font-size: 16px;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
    }

    .progress-dot.active {
        transform: scale(1.2);
    }

    .form-progress {
        margin: 24px 0 32px;
    }

    .review-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 16px;
    }

    .review-label {
        font-size: 12px;
    }

    .review-value {
        font-size: 16px;
    }

    .review-edit {
        position: absolute;
        top: 14px;
        right: 16px;
    }

    .review-item {
        position: relative;
    }

    /* Ensure modal can scroll when keyboard is open */
    .modal {
        align-items: flex-start;
        padding-top: 5vh;
    }

    .modal-content {
        margin-bottom: 5vh;
    }
}
