/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary: #1e2d4a;
    --primary-dark: #101929;
    --primary-light: #2d4269;
    --accent: #e85d3a;
    --accent-light: #f07a5a;
    --text: #1a1f2e;
    --text-light: #5a6175;
    --bg: #fdf9f4;
    --bg-alt: #f5f0e8;
    --bg-dark: #101929;
    --border: #e4ddd4;
    --shadow: 0 4px 6px rgba(30, 45, 74, 0.08);
    --shadow-lg: 0 10px 30px rgba(30, 45, 74, 0.15);
    --shadow-xl: 0 20px 50px rgba(30, 45, 74, 0.2);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Fraunces', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--bg);
    box-shadow: var(--shadow);
}

.navbar.scrolled .nav-logo {
    color: var(--primary);
}

.navbar.scrolled .nav-menu a {
    color: var(--text);
}

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

.nav-logo {
    font-family: 'Fraunces', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
}

.nav-logo span {
    color: var(--accent-light);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    font-weight: 700 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.navbar.scrolled .nav-cta {
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text);
}

/* ===========================
   Hero
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 65%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 78% 25%, rgba(232, 93, 58, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 80%, rgba(232, 93, 58, 0.07) 0%, transparent 45%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 28px,
            rgba(255,255,255,0.018) 28px,
            rgba(255,255,255,0.018) 29px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero h1 span {
    color: var(--accent-light);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.5s ease;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

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

.hero-badge {
    animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
    animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero-subtitle {
    animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.hero-actions {
    animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}

.hero-trust {
    animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 10px;
    font-family: 'Fraunces', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 16px rgba(232, 93, 58, 0.35);
}

.btn-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 45, 74, 0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===========================
   Section Titles
   =========================== */
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    margin: 14px auto 0;
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 8px;
    margin-bottom: 60px;
}

/* ===========================
   Problem Section
   =========================== */
.problem {
    background: var(--bg-alt);
    padding: 80px 0;
}

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

.problem-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.problem-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
}

.stat-big {
    font-family: 'Fraunces', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.stat-dual {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.stat-dual-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-dual-item .stat-big {
    font-size: 2.2rem;
    margin-bottom: 2px;
}

.stat-gender {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.stat-dual-divider {
    width: 1px;
    height: 52px;
    background: var(--border);
    flex-shrink: 0;
}

/* ===========================
   How It Works
   =========================== */
.how-it-works {
    background: var(--bg);
}

.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

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

.step-number {
    font-family: 'Fraunces', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon svg {
    stroke: var(--accent);
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

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

.step-connector {
    width: 48px;
    flex-shrink: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--accent-light);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ===========================
   What You Get
   =========================== */
.what-you-get {
    background: var(--bg-alt);
}

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

.feature-card {
    background: var(--bg);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--accent);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    stroke: var(--accent);
}

.feature-card-wide .feature-icon svg {
    stroke: var(--accent-light);
}

.feature-card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-card-wide {
    grid-column: 1 / -1;
    background: var(--primary);
    text-align: center;
    padding: 44px 52px;
    border-top: none;
}

.feature-card-wide:hover {
    border-top: 3px solid var(--accent);
    transform: translateY(-5px);
}

.feature-card-wide .feature-icon {
    color: var(--accent);
    font-size: 2rem;
}

.feature-card-wide h3 {
    color: white;
    font-size: 1.3rem;
}

.feature-card-wide p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 740px;
    margin: 0 auto;
}

/* ===========================
   Demo Section
   =========================== */
.demo {
    background: var(--bg);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.demo-browser {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.browser-bar {
    background: #e8ecf0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
    background: white;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: var(--text-light);
    flex: 1;
    font-family: monospace;
}

.demo-preview {
    background: var(--bg-alt);
    height: 420px;
    overflow: hidden;
    position: relative;
}

.demo-preview iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 166.67%;
    height: 166.67%;
    border: none;
    transform: scale(0.6);
    transform-origin: top left;
    pointer-events: none;
}

.demo-cta {
    text-align: center;
}

.demo-cta h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.demo-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.demo-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

a.browser-url {
    color: var(--text-light);
    text-decoration: none;
}

a.browser-url:hover {
    color: var(--accent);
}

/* ===========================
   Pricing
   =========================== */
.pricing {
    background: var(--bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 720px;
    margin: 0 auto;
    align-items: start;
    padding-top: 16px;
}

.pricing-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-light);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.pricing-featured .pricing-header h3 {
    color: rgba(255,255,255,0.9);
}

.price {
    font-family: 'Fraunces', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.pricing-featured .price {
    color: white;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.pricing-featured .price-note {
    color: rgba(255,255,255,0.65);
}

.price-addon {
    font-family: 'Fraunces', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 28px;
}

.price-subtext {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 28px;
}

.price-compare {
    font-size: 0.78rem;
    color: var(--accent-light);
    font-style: italic;
    margin: 8px 0 0;
    line-height: 1.5;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text);
    padding: 4px 0;
}

.pricing-featured .pricing-features li {
    color: rgba(255,255,255,0.9);
}

.pricing-features li.faded {
    color: var(--text-light);
    opacity: 0.5;
}

.pricing-featured .pricing-features li.faded {
    color: rgba(255,255,255,0.4);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 40px;
    font-size: 0.95rem;
}

.pricing-note a {
    color: var(--accent);
    font-weight: 600;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* ===========================
   About Section
   =========================== */
.about {
    background: var(--bg);
}

.about-spread {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 52px;
    align-items: start;
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    background: var(--bg);
    padding: 52px;
}

.about-photo-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-photo-portrait {
    width: 100%;
    height: 310px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 12px;
    display: block;
}

.about-photo-landscape {
    width: 100%;
    height: 185px;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    display: block;
}

.about-content {
    padding: 0;
    background: transparent;
    flex: 1;
}

.about-badge {
    display: inline-block;
    background: rgba(232, 93, 58, 0.1);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-cta {
    display: inline-block;
    margin-top: 12px;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--bg-alt);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.value-item strong {
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.value-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    background: var(--bg-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Fraunces', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-alt);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

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

/* ===========================
   Contact
   =========================== */
.contact {
    background: var(--primary-dark);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
}

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

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: white;
    margin-bottom: 16px;
}

.contact-info > p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--accent-light);
}

.contact-item strong {
    display: block;
    color: var(--accent-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-item p, .contact-item a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--accent-light);
}

/* Contact Form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-family: 'Fraunces', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--bg);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 93, 58, 0.15);
}

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

.venmo-prompt {
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: 24px 28px;
    border-left: 4px solid var(--accent);
}

.venmo-prompt-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.venmo-icon {
    font-size: 1.4rem;
}

.venmo-prompt h4 {
    font-family: 'Fraunces', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.venmo-prompt p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.venmo-handle {
    color: var(--accent-light);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: #050e08;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    color: white;
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
    color: rgba(255,255,255,0.55);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Fraunces', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--accent-light);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-spread {
        grid-template-columns: 1fr;
        padding: 36px;
        gap: 32px;
    }

    .about-photo-col {
        flex-direction: row;
    }

    .about-photo-portrait,
    .about-photo-landscape {
        flex: 1;
        height: 220px;
    }

    .demo-content {
        grid-template-columns: 1fr;
    }

    .demo-cta {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        color: var(--text) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 72px 0;
    }

    .steps-grid {
        flex-direction: column;
        gap: 24px;
    }

    .step-connector {
        width: 2px;
        height: 32px;
        background: linear-gradient(180deg, var(--accent), var(--accent-light));
    }

    .step-connector::after {
        right: -5px;
        top: auto;
        bottom: -5px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid var(--accent-light);
        border-bottom: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-5px);
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .problem-stats {
        gap: 16px;
    }

    .problem-stat {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .about-spread {
        padding: 28px 20px;
    }

    .about-photo-col {
        flex-direction: column;
    }

    .about-photo-portrait {
        height: 260px;
        flex: unset;
        width: 100%;
    }

    .about-photo-landscape {
        height: 160px;
        flex: unset;
        width: 100%;
    }
}

/* ===========================
   Mid-page CTA
   =========================== */
.mid-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mid-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232, 93, 58, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.mid-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.mid-cta-eyebrow {
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.mid-cta h2 {
    font-family: 'Fraunces', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: white;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}

/* ===========================
   Pricing Availability
   =========================== */
.pricing-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
    font-weight: 500;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* ===========================
   Next Steps (Contact)
   =========================== */
.next-steps {
    margin: 28px 0 36px;
}

.next-steps-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    margin-bottom: 14px;
}

.next-steps-list {
    list-style: none;
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.next-steps-list li {
    counter-increment: steps;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.next-steps-list li::before {
    content: counter(steps);
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-light);
}

/* ===========================
   JS-safe scroll fade-in
   =========================== */
.js-ready .step-card,
.js-ready .feature-card,
.js-ready .pricing-card,
.js-ready .faq-item,
.js-ready .problem-stat {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
