:root {
    --primary: #434343;
    --primary-dark: #2d2d2d;
    --primary-light: #5c5c5c;
    --secondary: #000000;
    --background: #ffffff;
    --text: #1F2937;
    --text-light: #6B7280;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Accessibility ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ── Background Wave ── */
.curved-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #434343 0%, #2d2d2d 100%);
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--background);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* ── Navigation ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    color: white;
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
}

.navbar.scrolled .navbar-inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.logo-img {
    display: block;
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.logo-img-footer {
    height: 36px;
    max-width: 180px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ── Hamburger Menu ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 960;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Hero Section ── */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-primary {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 50%;
    height: auto;
}

/* ── Pain Points Section ── */
.pain-section {
    padding: 5rem 2rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.pain-card {
    padding: 1.75rem;
    background: #F9FAFB;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pain-emoji {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.pain-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.pain-footer {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.5rem;
}

/* ── Features Section ── */
.features {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.12);
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.feature-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.feature-card:hover .icon-circle i {
    color: white;
}

.icon-circle i,
.feature-card i {
    font-size: 1.4rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* ── Why MotoAlly ── */
.why-section {
    padding: 5rem 2rem;
    background: #F9FAFB;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.why-text h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.why-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── How It Works ── */
.how-it-works {
    padding: 5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 1rem;
}

.step {
    text-align: center;
    max-width: 260px;
    padding: 1.5rem;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(67, 67, 67, 0.3);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d1d5db, var(--primary), #d1d5db);
    margin-top: 3.9rem;
    flex-shrink: 0;
    border-radius: 2px;
}

/* ── App Preview Section ── */
.app-preview {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 8rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #434343 0%, #2d2d2d 100%);
    transform: skewY(-5deg);
    transform-origin: top right;
    z-index: 0;
}

.preview-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.preview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.preview-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.preview-image {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.mockups-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    min-width: min-content;
}

.mockup-figure {
    flex-shrink: 0;
    text-align: center;
}

.mockup {
    width: 280px;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.mockup-figure:hover .mockup {
    transform: translateY(-10px);
}

.mockup-figure figcaption {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

/* ── CTA / Early Access Section ── */
.cta-section {
    padding: 6rem 2rem;
    background: white;
}

.cta-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.launch-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* ── Social Proof ── */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.avatars {
    display: flex;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid white;
    margin-right: -10px;
}

.avatar:last-child {
    margin-right: 0;
    background: var(--primary-light);
    font-size: 0.75rem;
}

.social-proof-text {
    font-size: 0.95rem !important;
    color: var(--text) !important;
    margin: 0 !important;
}

/* ── Early Access Form ── */
.early-access-form {
    max-width: 520px;
    margin: 2rem auto 0;
}

.form-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.form-row input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-row input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 67, 67, 0.15);
}

.form-row button {
    padding: 0.9rem 1.75rem;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    white-space: nowrap;
}

.form-note {
    font-size: 0.8rem !important;
    color: var(--text-light) !important;
    margin-top: 0.75rem !important;
    margin-bottom: 0 !important;
    opacity: 0.7;
}

.form-success {
    padding: 1.25rem 1.5rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #166534;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form-success i {
    color: #16a34a;
    font-size: 1.1rem;
}

.form-error {
    padding: 0.6rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    margin-top: 0.75rem;
}

.form-row button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Platform Badges ── */
.platform-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.platform-badge i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* ── Founder Section ── */
.founder-section {
    padding: 4rem 2rem;
    background: #F9FAFB;
}

.founder-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.founder-icon {
    font-size: 2rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.founder-content blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.founder-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.founder-detail {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ── Perks List ── */
.perks-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 460px;
    margin: 0 auto 2rem;
    text-align: left;
}

.perk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.perk i {
    color: var(--primary);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

/* ── FAQ Section ── */
.faq-section {
    padding: 5rem 2rem;
    background: white;
}

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

.faq-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: var(--primary);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Final Emotional CTA ── */
.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.final-cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.final-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.final-cta .cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    background: white;
    color: var(--primary-dark);
}

.final-cta .cta-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ── Footer ── */
.footer {
    background: #F9FAFB;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.9rem;
    max-width: 350px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.link-group a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

/* ── Floating Animation ── */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ── Scroll Fade-In Animation ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger feature cards */
.feature-card.fade-in:nth-child(2) { transition-delay: 0.08s; }
.feature-card.fade-in:nth-child(3) { transition-delay: 0.16s; }
.feature-card.fade-in:nth-child(4) { transition-delay: 0.24s; }
.feature-card.fade-in:nth-child(5) { transition-delay: 0.32s; }
.feature-card.fade-in:nth-child(6) { transition-delay: 0.4s; }
.feature-card.fade-in:nth-child(7) { transition-delay: 0.48s; }
.feature-card.fade-in:nth-child(8) { transition-delay: 0.56s; }

/* ── Responsive: 1200px ── */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 3rem 1rem 1rem 1rem;
        min-height: 70vh;
    }
    .hero-content {
        margin-bottom: 2rem;
        max-width: 100%;
    }
    .hero-image {
        margin-top: 0;
        width: 100%;
        justify-content: center;
    }
    .hero-image img {
        max-width: 350px;
        width: 90vw;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    .cta-buttons {
        justify-content: center;
    }
}

/* ── Responsive: 1024px ── */
@media (max-width: 1024px) {
    .mockup {
        width: 240px;
    }
}

/* ── Responsive: 768px ── */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(45, 45, 45, 0.97);
        backdrop-filter: blur(8px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 950;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.4rem;
    }

    .nav-cta {
        padding: 0.75rem 2rem;
    }

    .logo-img {
        height: 36px;
        max-width: 160px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image img {
        max-width: 250px;
    }

    .mockup {
        width: 200px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
        background: linear-gradient(180deg, #d1d5db, var(--primary), #d1d5db);
    }

    .mockups-container {
        gap: 1.5rem;
        padding: 0 1rem;
        justify-content: flex-start;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .founder-content blockquote {
        font-size: 1.05rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ── Responsive: 600px ── */
@media (max-width: 600px) {
    .hero {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 1.5rem 0.5rem 0.5rem 0.5rem;
        min-height: unset;
        max-width: 100vw;
    }

    .hero-content {
        flex: unset;
        max-width: 100%;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-image {
        flex: unset;
        width: 100%;
        margin-top: 0;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .hero-image img {
        max-width: 90vw;
        width: 180px;
        min-width: 0;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .section-header h2,
    .preview-content h2,
    .cta-content h2,
    .final-cta h2 {
        font-size: 1.75rem;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 1.5rem;
    }

    .perks-list {
        padding: 0 1rem;
    }

    .social-proof {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row button {
        width: 100%;
    }
}

/* ── Responsive: 480px ── */
@media (max-width: 480px) {
    .mockup {
        width: 180px;
    }

    .mockups-container {
        gap: 1rem;
    }
}
