/* ============================================
   PlanUpPro Sales Landing Page Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --white: #ffffff;
    --green: #10b981;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s ease;
}

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

.nav-cta-btn {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.nav-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Burger button - hidden on desktop */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay behind mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* --- Hero Section --- */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, #eff6ff 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px 60px;
    align-items: center;
}

.hero-visual {
    grid-row: 1 / 3;
    grid-column: 2;
}

.hero-cta-group {
    grid-column: 1;
}

.hero-text {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid #bfdbfe;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Hero Visual - CSS Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 300px;
    background: var(--dark);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--dark);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    margin-top: -14px;
}

.phone-header {
    background: var(--primary);
    color: var(--white);
    padding: 24px 16px 14px;
    text-align: center;
}

.phone-header .phone-logo {
    font-size: 1rem;
    font-weight: 700;
}

.phone-header .phone-logo span {
    color: var(--accent);
}

.phone-body {
    padding: 16px;
}

.phone-input-area {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 12px;
    font-size: 0.7rem;
    color: var(--gray-500);
    line-height: 1.5;
    min-height: 60px;
}

.phone-mic-btn {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.phone-mic-btn svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.phone-generate-btn {
    background: var(--primary);
    color: var(--white);
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 14px;
}

.phone-quote-preview {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 10px;
}

.phone-quote-header {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-line-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    padding: 4px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}

.phone-line-item:last-child {
    border-bottom: none;
}

.phone-total {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 700;
    padding-top: 6px;
    margin-top: 4px;
    border-top: 2px solid var(--dark);
    color: var(--dark);
}

/* Floating elements around phone */
.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.hero-float.float-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.hero-float.float-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

.hero-float .float-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float .float-icon.green {
    background: #d1fae5;
    color: var(--green);
}

.hero-float .float-icon.blue {
    background: #dbeafe;
    color: var(--primary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Pain Point Section --- */
.pain-section {
    padding: 80px 0;
    background: var(--white);
}

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

.pain-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    position: relative;
}

.pain-card.old-way {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.pain-card.new-way {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
}

.pain-card-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pain-card.old-way .pain-card-label {
    color: var(--gray-400);
}

.pain-card.new-way .pain-card-label {
    color: var(--primary);
}

.pain-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.pain-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-card.old-way .pain-list li svg {
    color: #ef4444;
}

.pain-card.new-way .pain-list li svg {
    color: var(--green);
}

/* --- How It Works Section --- */
.how-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.6;
}

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

.step-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Step connector arrows */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--gray-300);
    border-right: 2px solid var(--gray-300);
    transform: rotate(45deg) translateY(-50%);
}

/* --- Features Section --- */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: all 0.2s ease;
    background: var(--white);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: #fafcff;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

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

/* --- Anywhere Section --- */
.anywhere-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

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

.anywhere-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.anywhere-text p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.7;
}

.anywhere-scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.scenario-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--dark-soft);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--gray-300);
    border: 1px solid rgba(255,255,255,0.06);
}

.scenario-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.anywhere-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.devices-illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.device-phone {
    width: 180px;
    background: var(--dark-soft);
    border-radius: 24px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.device-phone-screen {
    background: var(--white);
    border-radius: 18px;
    padding: 20px 12px;
    text-align: center;
}

.device-phone-screen .mini-logo {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.device-phone-screen .mini-logo span {
    color: var(--accent);
}

.device-phone-screen .mini-mic {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-phone-screen .mini-mic svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.device-phone-screen .mini-text {
    font-size: 0.65rem;
    color: var(--gray-400);
}

/* Pulse rings around mic */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* --- Trades Section --- */
.trades-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.trades-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.trade-tag {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s ease;
}

.trade-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #eff6ff;
}

.trades-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: var(--white);
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer-inner {
    padding: 0 24px 18px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- Final CTA Section --- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 16px 40px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-white svg {
    width: 20px;
    height: 20px;
}

/* --- Footer --- */
.footer {
    padding: 40px 0 24px;
    background: var(--dark);
    color: var(--gray-400);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .logo {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 6px;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- Contact Page --- */
.contact-hero {
    padding: 140px 0 40px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, #eff6ff 100%);
}

.contact-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.contact-section {
    padding: 0 0 80px;
    background: var(--white);
}

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

.contact-info-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
}

.contact-card-main {
    border-color: var(--primary);
    background: #fafcff;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 14px;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-email-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.contact-email-link:hover {
    color: var(--primary-dark);
}

.inline-link {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.inline-link:hover {
    color: var(--primary-dark);
}

/* --- Pricing Page --- */
.pricing-hero {
    padding: 140px 0 40px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, #eff6ff 100%);
}

.pricing-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.pricing-section {
    padding: 0 0 80px;
    background: var(--white);
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-2xl);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 8px;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 20px;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-period {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 6px;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 28px;
    padding: 0 8px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
}

.pricing-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 28px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius-xl);
}

.pricing-notice-icon {
    width: 40px;
    height: 40px;
    background: #fef3c7;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-dark);
}

.pricing-notice-icon svg {
    width: 22px;
    height: 22px;
}

.pricing-notice h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.pricing-notice p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* --- About Page --- */
.about-hero {
    padding: 140px 0 40px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, #eff6ff 100%);
}

.about-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-story {
    padding: 40px 0 80px;
    background: var(--white);
}

.about-story-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 48px;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--dark);
}

.about-block p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.about-list li svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 3px;
}

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

.about-value-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 14px;
}

.about-value-icon svg {
    width: 24px;
    height: 24px;
}

.about-value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-value-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- Voice Demo Modal --- */
.voice-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.voice-modal-overlay.active {
    display: flex;
}

.voice-modal {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.voice-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    padding: 4px;
    transition: color 0.2s ease;
}

.voice-modal-close:hover {
    color: var(--dark);
}

.voice-modal-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 24px;
}

.voice-modal-icon svg {
    width: 32px;
    height: 32px;
}

.voice-modal-text {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.voice-modal-text em {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}

.voice-modal-subtext {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
}

.voice-modal-cta {
    display: inline-flex;
}

#voiceDemoTrigger:hover {
    transform: scale(1.03);
    transition: transform 0.2s ease;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .section-header h2,
    .anywhere-text h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Mobile burger menu */
    .burger-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-xl);
        z-index: 999;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 1rem;
        font-weight: 600;
        color: var(--dark);
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-cta-btn {
        margin-top: 16px;
        text-align: center;
        padding: 14px 24px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 32px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        grid-row: auto;
        grid-column: auto;
        order: 2;
    }

    .hero-cta-group {
        grid-column: auto;
        order: 3;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-float {
        display: none;
    }

    .phone-mockup {
        width: 260px;
    }

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

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

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

    .anywhere-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .anywhere-scenarios {
        grid-template-columns: 1fr;
    }

    .anywhere-visual {
        order: -1;
    }

    .trades-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-header h2,
    .anywhere-text h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-white {
        width: 100%;
        justify-content: center;
    }

    .pricing-hero h1 {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 40px 24px;
    }

    .pricing-notice {
        flex-direction: column;
        text-align: center;
    }

    .pricing-notice-icon {
        margin: 0 auto;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-values {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .voice-modal {
        padding: 36px 24px;
    }

    .voice-modal-text {
        font-size: 1rem;
    }

    .voice-modal-subtext {
        font-size: 0.9rem;
    }

    .pain-card {
        padding: 24px;
    }

    .step-card {
        padding: 28px 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .trades-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2,
    .anywhere-text h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }
}