/* ========================================
   VoxPM - AI Meeting Intelligence
   Stylesheet - Mobile First Responsive
   ======================================== */

/* CSS Variables */
:root {
    --primary: #0052CC;
    --primary-dark: #003D99;
    --primary-light: #0066FF;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #22c55e;
    --error: #ef4444;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-blue: #f0f9ff;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    padding-top: 110px;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

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

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

table {
    max-width: 100%;
    overflow-x: auto;
}

pre, code {
    max-width: 100%;
    overflow-x: auto;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg);
}

.proplus-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 10px 20px;
    text-align: center;
}

.proplus-banner a {
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.proplus-banner .sparkle {
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--secondary);
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 12px;
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    text-align: center;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-sub {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: none;
    gap: 28px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}

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

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Made in Vermont Badge - Green with Sheen */
.header-vt-badge {
    display: none;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 20px rgba(6, 95, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.header-vt-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(6, 95, 70, 0.4);
}

.header-vt-badge::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -40%;
    width: 60%;
    height: 220%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-120%);
    animation: vtSheen 3.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes vtSheen {
    0% { transform: translateX(-120%); }
    50%, 100% { transform: translateX(220%); }
}

.header-vt-label,
.header-vt-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.header-vt-label .heart {
    display: inline-block;
    animation: heartPulse 1.2s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: var(--bg-blue);
    color: var(--secondary);
}

.btn-secondary:hover {
    background: #e2e8f0;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

/* Badge */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.section-header.light h2,
.section-header.light p {
    color: white;
}

/* Sections */
.section-white {
    padding: 80px 0;
    background: var(--bg);
}

.section-blue {
    padding: 80px 0;
    background: var(--bg-blue);
}

.section-gradient {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #eff6ff 0%, var(--bg) 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-screenshot {
    max-width: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 24px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-screenshot::before {
    content: '● ● ●';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 8px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.3);
}

.hero-screenshot img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Features Grid
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

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

/* ========================================
   Screenshots Section
   ======================================== */
.screenshots-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.screenshot-item {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.screenshot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    pointer-events: none;
    z-index: 1;
}

.screenshot-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.screenshot-item.main {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e293b 100%);
}

.screenshot-frame {
    overflow: hidden;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-frame img {
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Main screenshot - crop to hide background */
.screenshot-item.main .screenshot-frame {
    padding: 30px;
    background: linear-gradient(135deg, #0c4a6e 0%, #1e3a5f 50%, #0f172a 100%);
}

.screenshot-item.main .screenshot-frame img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Crop settings screen to hide email */
.screenshot-item.cropped .screenshot-frame {
    max-height: 450px;
    overflow: hidden;
}

.screenshot-item.cropped .screenshot-frame img {
    margin-top: -70px;
    object-fit: cover;
    object-position: top;
}

.screenshot-caption {
    padding: 24px 28px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.screenshot-caption h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.screenshot-caption p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Device frame effect */
.screenshot-item::after {
    content: '● ● ●';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 8px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

/* Product Highlights between screenshots */
.product-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.highlight-icon {
    font-size: 1.75rem;
}

.highlight-text {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
}

/* ========================================
   Steps / How It Works
   ======================================== */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.step-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    border: 2px solid var(--border);
    position: relative;
    width: 100%;
    max-width: 350px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

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

.step-card kbd {
    background: var(--bg-blue);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
}

.step-arrow {
    display: none;
    font-size: 2rem;
    color: var(--primary);
}

.workflow-note {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 40px;
    flex-direction: column;
    text-align: center;
}

.workflow-icon {
    font-size: 3rem;
}

.workflow-text strong {
    color: var(--primary);
}

/* ========================================
   Integrations
   ======================================== */
.integrations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.integration-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.integration-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.integration-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.integration-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ========================================
   Family Section
   ======================================== */
.family-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.family-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.family-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.family-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

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

.family-card.active {
    border-color: var(--primary);
    background: linear-gradient(180deg, #eff6ff 0%, white 100%);
}

.family-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}

.family-badge {
    display: inline-block;
    background: var(--bg-blue);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.family-badge.current {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.family-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

.family-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 12px 0;
    line-height: 1.5;
}

.family-features {
    text-align: left;
    margin: 0 auto 16px auto;
    padding-left: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.family-features li {
    padding: 4px 0;
}

.family-badge {
    padding: 4px 12px;
    font-size: 0.75rem;
}

.family-card .btn {
    display: inline-block;
    padding: 12px 24px;
}

.family-card .btn-wrapper {
    display: block;
    text-align: center;
    margin-top: 16px;
    clear: both;
}

.family-features li {
    color: var(--text);
    font-size: 0.85rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.family-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.family-sync-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 40px;
    text-align: center;
}

.sync-icon {
    font-size: 3.5rem;
}

.sync-text strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.sync-text p {
    color: var(--text-light);
    margin-top: 4px;
    font-size: 0.9rem;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--primary);
    font-weight: 600;
}

.save-badge {
    background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.4s;
    border-radius: 32px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

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

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: none;
}

.pricing-price.active {
    display: block;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.annual-breakdown {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.savings-callout {
    display: flex;
    justify-content: center;
    margin: 12px 0;
}

.savings-tag {
    background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-desc {
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--success);
    font-weight: 700;
}

.pricing-features .check.highlight {
    color: var(--primary);
}

.pricing-features .cross {
    color: var(--text-light);
}

.pricing-features .highlight {
    color: var(--primary);
}

.trial-note {
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 12px;
}

.guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: var(--shadow);
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee strong {
    color: var(--secondary);
    font-size: 1rem;
}

.guarantee p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ========================================
   Vermont Section
   ======================================== */
.vermont-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #eff6ff 0%, var(--bg) 100%);
}

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

.vermont-heart {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: heartPulse 1.2s ease-in-out infinite;
}

.vermont-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.vermont-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.vermont-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vermont-value {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.vermont-value-icon {
    font-size: 2rem;
}

.vermont-value-text {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    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 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    margin-bottom: 20px;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    color: white;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo img {
    height: 80px;
    width: auto;
}

.footer-brand .logo span {
    color: white;
    font-size: 1.75rem;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-family-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.8rem;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
}

/* ========================================
   Responsive: Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
    body {
        padding-top: 110px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

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

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

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

    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshot-item.main .screenshot-frame {
        padding: 40px;
    }

    .steps-grid {
        flex-direction: row;
        justify-content: center;
    }

    .step-arrow {
        display: block;
    }

    .workflow-note {
        flex-direction: row;
        text-align: left;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .family-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .family-sync-note {
        flex-direction: row;
        text-align: left;
    }

    .vermont-values {
        grid-template-columns: repeat(4, 1fr);
    }

    .guarantee {
        flex-direction: row;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }

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

/* ========================================
   Responsive: Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .header-vt-badge {
        display: inline-flex;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        text-align: left;
        flex: 1;
    }

    .hero-subtitle {
        margin: 0 0 30px;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-visual {
        flex: 1;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .family-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-comparison {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   Mobile Menu Active State
   ======================================== */
@media (max-width: 1023px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 0;
    }

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

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* ========================================
   Tablet and below (768px-)
   ======================================== */
@media (max-width: 768px) {
    body {
        padding-top: 105px;
    }

    .logo img {
        height: 50px;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .proplus-banner a {
        font-size: 0.85rem;
    }

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

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

    .hero-cta {
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .vermont-content h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   Small Mobile (480px-)
   ======================================== */
@media (max-width: 480px) {
    body {
        padding-top: 95px;
    }

    .container {
        padding: 0 16px;
    }

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

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .save-badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }

    .vermont-values {
        grid-template-columns: 1fr;
    }

    .vermont-value {
        justify-content: center;
    }

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

    .logo img {
        height: 45px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.85rem;
    }

    .proplus-banner {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .proplus-banner a {
        font-size: 0.8rem;
        gap: 4px;
    }

    .proplus-banner strong {
        display: inline;
    }

    .btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .btn-lg {
        font-size: 0.9rem;
        padding: 14px 26px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
