/* ========================================
   Guardian - Youform.com Style
   Warm, playful, organic design
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Warm Palette like youform.com */
    --color-primary: #f97316;
    --color-primary-hover: #ea580c;
    --color-primary-light: #fff7ed;
    
    --color-teal: #14b8a6;
    --color-teal-light: #ccfbf1;
    
    --color-purple: #a855f7;
    --color-purple-light: #f3e8ff;
    
    --color-pink: #ec4899;
    --color-pink-light: #fdf2f8;
    
    --color-yellow: #fbbf24;
    --color-yellow-light: #fef3c7;
    
    --color-dark: #1a1a2e;
    --color-dark-secondary: #16213e;
    
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    --color-bg: #ffffff;
    --color-bg-secondary: #fafaf9;
    --color-bg-tertiary: #f5f5f4;
    
    --color-text: #1c1917;
    --color-text-secondary: #57534e;
    --color-text-tertiary: #a8a29e;
    
    --color-border: #e7e5e4;
    --color-border-hover: #d6d3d1;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

/* Decorative Blobs - Youform.com Organic Style */
.blob {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.blob-1 {
    width: 280px;
    height: 320px;
    background: #f97316;
    top: 80px;
    right: -60px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.9;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
    width: 180px;
    height: 200px;
    background: #14b8a6;
    top: 500px;
    left: -40px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.85;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

.blob-3 {
    width: 140px;
    height: 160px;
    background: #a855f7;
    top: 1100px;
    right: 20px;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    opacity: 0.75;
    animation: blobFloat 7s ease-in-out infinite;
}

.blob-4 {
    width: 200px;
    height: 240px;
    background: #ec4899;
    bottom: 300px;
    left: -60px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.7;
    animation: blobFloat 9s ease-in-out infinite reverse;
}

.blob-5 {
    width: 160px;
    height: 180px;
    background: #fbbf24;
    bottom: 800px;
    right: -40px;
    border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
    opacity: 0.8;
    animation: blobFloat 11s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Squiggly Lines */
.squiggly {
    position: absolute;
    width: 180px;
    height: 30px;
    z-index: -1;
    pointer-events: none;
}

.squiggly-1 {
    top: 350px;
    left: 30px;
    transform: rotate(-12deg);
    opacity: 0.8;
}

.squiggly-2 {
    top: 750px;
    right: 50px;
    transform: rotate(8deg);
    opacity: 0.8;
}

.squiggly-3 {
    top: 1500px;
    left: 100px;
    transform: rotate(-5deg);
}

/* Decorative Stars */
.star {
    position: absolute;
    font-size: 24px;
    z-index: -1;
    pointer-events: none;
    animation: starTwinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 200px;
    left: 15%;
    animation-delay: 0s;
}

.star-2 {
    top: 400px;
    right: 10%;
    font-size: 18px;
    animation-delay: 0.5s;
}

.star-3 {
    top: 900px;
    left: 8%;
    font-size: 20px;
    animation-delay: 1s;
}

.star-4 {
    top: 1300px;
    right: 15%;
    font-size: 16px;
    animation-delay: 1.5s;
}

.star-5 {
    top: 1800px;
    left: 12%;
    font-size: 22px;
    animation-delay: 2s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}

/* Buttons - Youform.com Style with Black Borders */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 2.5px solid #1a1a2e;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
    text-decoration: none;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border: 2.5px solid #1a1a2e;
    box-shadow: 4px 4px 0px #1a1a2e;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #1a1a2e;
}

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

.btn-outline:hover {
    border-color: var(--color-text);
    background: var(--color-bg-secondary);
}

.btn-ghost {
    background: #fbbf24;
    color: #1a1a2e;
    border: 2.5px solid #1a1a2e;
    box-shadow: 4px 4px 0px #1a1a2e;
    font-weight: 600;
}

.btn-ghost:hover {
    background: #f59e0b;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #1a1a2e;
}

.btn-white {
    background: white;
    color: var(--color-primary);
    border: 2.5px solid #1a1a2e;
    box-shadow: 4px 4px 0px #1a1a2e;
}

.btn-white:hover {
    background: var(--color-bg-secondary);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #1a1a2e;
}

.btn-ghost-white {
    background: transparent;
    color: white;
    border: 2.5px solid rgba(255, 255, 255, 0.6);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

/* Teal Sign Up Button */
.btn-primary.teal {
    background: var(--color-teal);
    color: white;
    border: 2.5px solid #1a1a2e;
    box-shadow: 4px 4px 0px #1a1a2e;
}

.btn-primary.teal:hover {
    background: #0d9488;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #1a1a2e;
}

/* Header - Youform.com Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 230, 138, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.2s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: #fde68a;
    overflow: hidden;
}

.hero-dashed-line {
    display: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.badge-icon {
    font-size: 14px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.highlight {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    gap: 24px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

/* Live Preview - Youform.com Style */
.hero-visual {
    position: relative;
}

.live-preview {
    position: relative;
}

.live-preview::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -40px;
    width: 200px;
    height: 250px;
    background: #f97316;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    opacity: 0.9;
}

.preview-badge {
    display: none;
}

.preview-card {
    background: white;
    border-radius: 16px;
    box-shadow: 8px 8px 0px #1a1a2e;
    overflow: hidden;
    border: 3px solid #1a1a2e;
    position: relative;
}

.preview-header {
    display: none;
}

.preview-content {
    padding: 60px 40px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preview-greeting {
    margin-bottom: 40px;
}

.preview-greeting h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-dark);
    line-height: 1.4;
}

.preview-greeting p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.preview-btn {
    width: 100%;
    max-width: 300px;
    padding: 18px 40px;
    background: var(--color-teal);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-primary);
    margin-bottom: 20px;
}

.preview-btn:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.preview-hint {
    font-size: 13px;
    color: var(--color-text-tertiary);
    text-decoration: underline;
    cursor: pointer;
}

.preview-arrow {
    position: absolute;
    top: 30%;
    left: -120px;
    text-align: center;
}

.preview-arrow svg {
    width: 80px;
    height: 70px;
}

.preview-arrow span {
    display: block;
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 500;
    margin-top: 5px;
    font-style: italic;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-wave path {
    fill: white;
}

/* Trusted By */
.trusted-by {
    padding: 48px 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
}

.trusted-label {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-tertiary);
    opacity: 0.5;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

/* Switch Section */
.switch-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.switch-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.switch-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.switch-description {
    font-size: 18px;
    color: var(--color-text-secondary);
}

.comparison-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.comparison-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
}

.comparison-card:hover,
.comparison-card.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 700;
}

.comparison-card h4 {
    font-size: 14px;
    font-weight: 600;
}

.comparison-card p {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.comparison-details {
    max-width: 800px;
    margin: 0 auto;
}

.detail-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 40px;
    border: 1px solid var(--color-border);
}

.detail-card h3 {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.detail-card h4 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.detail-card > p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.comparison-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.comparison-stats .stat {
    text-align: center;
}

.comparison-stats .stat-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 4px;
}

.comparison-stats .stat-value {
    font-size: 18px;
    font-weight: 700;
}

.comparison-stats .stat-value s {
    color: var(--color-text-tertiary);
}

.comparison-stats .stat-value strong {
    color: var(--color-primary);
}

.detail-actions {
    display: flex;
    gap: 16px;
}

/* Unlimited Section */
.unlimited-section {
    padding: 80px 0;
    background: white;
}

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

.unlimited-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.unlimited-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.unlimited-note {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.unlimited-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

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

.mockup-live {
    font-size: 11px;
    color: var(--color-success);
    font-weight: 600;
    text-transform: uppercase;
}

.mockup-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.mockup-bar {
    height: 8px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    margin-bottom: 8px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 75%;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.mockup-bar span {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.mockup-list {
    margin-top: 24px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.avatar.sk { background: var(--color-purple); }
.avatar.mt { background: var(--color-teal); }
.avatar.an { background: var(--color-pink); }

.item-info {
    flex: 1;
}

.item-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.item-info span {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.badge.new {
    padding: 4px 10px;
    background: var(--color-success);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.features-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.features-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 48px;
}

.features-showcase {
    max-width: 800px;
    margin: 0 auto 60px;
}

.showcase-card {
    background: var(--color-dark);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    text-align: left;
}

.showcase-header {
    padding: 16px 24px;
    background: var(--color-dark-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.showcase-content {
    padding: 32px;
}

.scan-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.form-field input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 14px;
    font-family: var(--font-primary);
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.scan-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.scan-options .option {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.scan-options .option:hover,
.scan-options .option.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.scan-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-primary);
}

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

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

.feature-card {
    padding: 32px 24px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 30px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.orange { background: var(--color-primary-light); }
.feature-icon.teal { background: var(--color-teal-light); }
.feature-icon.purple { background: var(--color-purple-light); }
.feature-icon.green { background: #dcfce7; }
.feature-icon.pink { background: var(--color-pink-light); }
.feature-icon.blue { background: #dbeafe; }

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.features-cta {
    margin-top: 40px;
}

/* AI Section */
.ai-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.ai-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.ai-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 48px;
}

.ai-demo {
    max-width: 700px;
    margin: 0 auto 32px;
}

.ai-card {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-2xl);
    padding: 32px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.ai-input label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ai-prompt-text {
    font-size: 14px;
    color: var(--color-text-tertiary);
    margin-bottom: 12px;
}

.ai-textarea {
    padding: 16px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ai-suggestions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ai-suggestions span {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.suggestion {
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-primary);
}

.suggestion:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.ai-generate-btn {
    padding: 12px 24px;
    background: var(--color-dark);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-primary);
}

.ai-generate-btn:hover {
    background: #2d2d44;
}

.ai-cta {
    margin-top: 32px;
}

/* Fields Section */
.fields-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.fields-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.fields-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 48px;
}

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

.field-card {
    padding: 24px 16px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    text-align: left;
    transition: all 0.2s;
}

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

.field-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.field-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.field-card p {
    font-size: 12px;
    color: var(--color-text-secondary);
}

/* Features List Section */
.features-list-section {
    padding: 80px 0;
    background: white;
}

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

.features-list-content h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.features-list-content > p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-list li {
    display: flex;
    gap: 16px;
}

.list-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-list strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.feature-list p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* Lead Capture Form */
.lead-capture-form {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.form-step-indicator {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 8px;
}

.lead-capture-form h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.lead-capture-form .form-field {
    margin-bottom: 20px;
}

.lead-capture-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}

.lead-capture-form input,
.lead-capture-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-family: var(--font-primary);
}

.verified {
    display: inline-block;
    font-size: 12px;
    color: var(--color-success);
    margin-top: 4px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.checkbox input {
    width: auto;
}

/* Partial Section */
.partial-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

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

.partial-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.partial-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.partial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.partial-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fef3c7;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.status-icon {
    font-size: 18px;
}

.partial-info {
    margin-bottom: 16px;
}

.partial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
}

.partial-info p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.partial-detail p {
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 12px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
}

/* Brand Section */
.brand-section {
    padding: 80px 0;
    background: white;
}

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

.brand-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.brand-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

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

.brand-mockup {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.mockup-question {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.question-number {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 8px;
    display: block;
}

.mockup-question h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.mockup-question p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.next-btn {
    padding: 12px 32px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-primary);
}

.mockup-sidebar {
    background: white;
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.sidebar-option {
    margin-bottom: 20px;
}

.sidebar-option:last-child {
    margin-bottom: 0;
}

.option-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.color-picker {
    display: flex;
    gap: 8px;
}

.color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color.orange { background: var(--color-primary); }
.color.teal { background: var(--color-teal); }
.color.purple { background: var(--color-purple); }
.color.active { border-color: var(--color-dark); }

.font-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

/* Share Section */
.share-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.share-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--color-dark);
}

.share-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.share-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-primary);
}

.share-tab:hover,
.share-tab.active {
    background: var(--color-dark);
    color: white;
    border-color: var(--color-dark);
}

.share-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.embed-preview {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.embed-url {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 16px;
    padding: 8px 12px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    display: inline-block;
}

.embed-preview h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.embed-preview p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.embed-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.embed-form input,
.embed-form textarea {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-family: var(--font-primary);
}

.embed-form textarea {
    min-height: 80px;
    resize: none;
}

.embed-form button {
    padding: 12px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-primary);
}

.share-description h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.share-description p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Analytics Section */
.analytics-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.analytics-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.analytics-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 48px;
}

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

.analytics-card {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-2xl);
    padding: 32px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.card-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.analytics-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.analytics-card > p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.analytics-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.analytics-stats .stat {
    text-align: center;
}

.analytics-stats .stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
}

.analytics-stats .stat-label {
    font-size: 11px;
    color: var(--color-text-tertiary);
}

.analytics-chart {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.chart-header .avg {
    color: var(--color-primary);
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.bar-row span:first-child {
    width: 50px;
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.bar-row .bar {
    flex: 1;
    height: 24px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
}

.bar-row span:last-child {
    width: 40px;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}

.dropoff-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropoff-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: var(--radius-lg);
}

.dropoff-question {
    font-size: 13px;
    color: var(--color-text);
}

.dropoff-rate {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.dropoff-rate.high { background: #dcfce7; color: #16a34a; }
.dropoff-rate.medium { background: #fef3c7; color: #d97706; }
.dropoff-rate.low { background: #fee2e2; color: #dc2626; }

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

.cta-notes {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.cta-notes span {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

/* Collab Section */
.collab-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

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

.collab-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.collab-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.team-members h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-members > p {
    font-size: 13px;
    color: var(--color-text-tertiary);
    margin-bottom: 16px;
}

.member-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.member-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 12px;
    color: white;
}

.member-avatar.ac { background: var(--color-dark); }
.member-avatar.sp { background: var(--color-purple); }

.member-info {
    flex: 1;
}

.member-info strong {
    display: block;
    font-size: 14px;
}

.member-info span {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.member-role {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.activity-log {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.log-header h4 {
    font-size: 16px;
    font-weight: 600;
}

.log-header span {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.log-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.log-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
}

.log-avatar {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 11px;
    color: white;
}

.log-avatar.sp { background: var(--color-purple); }
.log-avatar.mo { background: var(--color-teal); }
.log-avatar.ac { background: var(--color-dark); }

.log-info {
    flex: 1;
    font-size: 13px;
}

.log-info strong {
    font-weight: 600;
}

.log-time {
    font-size: 11px;
    color: var(--color-text-tertiary);
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.integrations-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.integrations-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 48px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 24px;
}

.integration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all 0.2s;
}

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

.integration-icon {
    font-size: 32px;
}

.integration-card span {
    font-size: 13px;
    font-weight: 500;
}

.integrations-note {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
    text-align: center;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

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

.pricing-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--color-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .amount {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark);
}

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

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

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.testimonials-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.testimonials-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 48px;
}

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

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
}

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

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

.testimonial-card {
    background: var(--color-bg-secondary);
    border-radius: 24px;
    padding: 32px;
    text-align: left;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    font-size: 20px;
    color: var(--color-yellow);
    margin-bottom: 16px;
}

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

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

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.author-avatar.sk { background: var(--color-purple); }
.author-avatar.mj { background: var(--color-teal); }
.author-avatar.al { background: var(--color-dark); }

.author-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.author-role {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.faq-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 48px;
    color: var(--color-dark);
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    font-family: var(--font-primary);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

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

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

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: var(--radius-lg);
    transition: all 0.2s;
    font-size: 18px;
}

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

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .preview-arrow {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fields-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .switch-title,
    .unlimited-title,
    .features-title,
    .ai-title,
    .fields-title,
    .partial-title,
    .brand-title,
    .share-title,
    .analytics-title,
    .collab-title,
    .integrations-title,
    .pricing-title,
    .testimonials-title,
    .faq-title {
        font-size: 32px;
    }
    
    .unlimited-grid,
    .features-list-grid,
    .partial-grid,
    .brand-grid,
    .share-content,
    .collab-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-stats {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .fields-grid {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-description {
        margin: 0 auto 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .brand-mockup {
        grid-template-columns: 1fr;
    }
}