/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B6B;
    --secondary: #FFE66D;
    --accent: #FFE66D;
    --purple: #A06CD5;
    --green: #6BCF7F;
    --blue: #4D96FF;
    --orange: #FFA07A;
    --bg: #FFFEF9;
    --text: #1A1A1A;
    --border: #000000;
    --shadow: 6px 6px 0px #000000;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: var(--accent);
    border-bottom: 5px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand .logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s;
}

.nav-links a:hover {
    transform: translateY(-2px);
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

.nav-cta {
    background-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border: 4px solid var(--border);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 4px 4px 0px var(--border);
    transition: all 0.2s;
}

.nav-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--border);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background-color: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* As Seen In Section */
.as-seen-in {
    padding: 40px 20px;
    background-color: white;
    border-bottom: 5px solid var(--border);
    text-align: center;
}

.as-seen-title {
    font-size: 18px;
    font-weight: 800;
    color: #666;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.platform-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.platform-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.platform-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Comparison Section */
.comparison {
    padding: 100px 20px;
    background-color: white;
    border-bottom: 5px solid var(--border);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.comparison-card {
    padding: 40px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
}

.comparison-card.with-service {
    background-color: #E3F5FF;
}

.comparison-card.on-your-own {
    background-color: #FFE8D9;
}

.comparison-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-title .highlight {
    background-color: var(--text);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
}

.comparison-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.comparison-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-content h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text);
}

.comparison-content p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
}

.comparison-result {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 4px solid var(--border);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.comparison-result strong {
    font-weight: 900;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border: 3px solid var(--border);
    font-weight: 900;
    margin: 0 5px;
}

.badge.success {
    background-color: var(--green);
    color: var(--text);
}

.badge.warning {
    background-color: #FF6B6B;
    color: white;
}

/* Comment Examples Section */
.comment-examples {
    padding: 100px 20px;
    background-color: var(--bg);
    border-bottom: 5px solid var(--border);
    text-align: center;
}

.example-showcase {
    max-width: 900px;
    margin: 0 auto 40px;
}

.example-showcase img {
    width: 100%;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* Reddit Mockup */
.reddit-mockup {
    background-color: #DAE0E6;
    padding: 20px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
    text-align: left;
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Make Reddit mockup non-interactive (like an image) */
.reddit-mockup.screenshot {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    cursor: default;
}

.reddit-mockup.screenshot * {
    cursor: default !important;
}

.reddit-post {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    margin-bottom: 15px;
    overflow: hidden;
}

.reddit-vote {
    background-color: #f8f9fa;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 40px;
}

.vote-btn {
    background: none;
    border: none;
    color: #878A8C;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.vote-btn:hover {
    background-color: #e9ecef;
    border-radius: 2px;
}

.vote-count {
    font-size: 12px;
    font-weight: 700;
    color: #1c1c1c;
}

.reddit-content {
    padding: 8px 12px;
    flex: 1;
}

.reddit-header {
    font-size: 12px;
    color: #7c7c7c;
    margin-bottom: 8px;
}

.reddit-sub {
    font-weight: 700;
    color: #1c1c1c;
}

.reddit-dot {
    margin: 0 4px;
}

.reddit-user, .reddit-time {
    color: #7c7c7c;
}

.reddit-title {
    font-size: 18px;
    font-weight: 500;
    color: #1c1c1c;
    margin-bottom: 8px;
    line-height: 1.4;
}

.reddit-body {
    font-size: 14px;
    color: #1c1c1c;
    line-height: 1.5;
    margin-bottom: 8px;
}

.reddit-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.action-btn {
    background: none;
    border: none;
    color: #878A8C;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 2px;
}

.action-btn:hover {
    background-color: #f6f7f8;
}

/* Reddit Comment */
.reddit-comment {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    padding-left: 40px;
    position: relative;
}

.comment-line {
    position: absolute;
    left: 52px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #edeff1;
}

.comment-vote {
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 30px;
}

.vote-btn.small {
    font-size: 14px;
}

.vote-count.small {
    font-size: 11px;
}

.comment-content {
    padding: 8px 12px 8px 8px;
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 12px;
}

.comment-avatar {
    font-size: 16px;
}

.comment-user {
    font-weight: 700;
    color: #1c1c1c;
}

.comment-time {
    color: #7c7c7c;
}

.comment-body {
    font-size: 14px;
    color: #1c1c1c;
    line-height: 1.6;
    margin-bottom: 8px;
}

.comment-body strong {
    color: #0079D3;
    font-weight: 600;
}

.comment-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.comment-action {
    background: none;
    border: none;
    color: #878A8C;
    font-size: 11px;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
}

.comment-action:hover {
    text-decoration: underline;
}

/* Case Study Proof */
.case-study-proof {
    margin-bottom: 30px;
    background-color: white;
    padding: 30px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
}

.proof-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text);
    text-align: center;
}

.proof-image {
    width: 100%;
    border: 3px solid var(--border);
    display: block;
}

.example-note {
    background-color: var(--accent);
    padding: 20px 30px;
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: var(--accent);
    border-top: 5px solid var(--border);
    border-bottom: 5px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: white;
    padding: 40px;
    border: 5px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    transition: all 0.3s;
    text-align: center;
}

.testimonial-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--border);
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-info {
    text-align: center;
}

.author-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 4px;
}

.author-company {
    font-size: 15px;
    font-weight: 600;
    color: #666;
}

/* Hero Section */
.hero {
    background: var(--secondary);
    padding: 100px 20px;
    border-bottom: 5px solid var(--border);
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text);
    text-shadow: 2px 2px 0px var(--accent);
}

.hero-description {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 900;
    border: 5px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px var(--border);
}

.btn-secondary {
    background-color: white;
    color: var(--text);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px var(--border);
}

.btn-outline {
    background-color: transparent;
    color: var(--text);
    box-shadow: 4px 4px 0px var(--border);
}

.btn-outline:hover {
    background-color: var(--accent);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--border);
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent);
    padding: 12px 24px;
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    font-weight: 800;
    font-size: 18px;
}

/* Section Titles */
.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    color: var(--text);
}

/* Pros & Cons Section */
.pros-cons {
    padding: 100px 20px;
    background-color: var(--bg);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pros-box, .cons-box {
    padding: 40px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
}

.pros-box {
    background-color: var(--green);
}

.cons-box {
    background-color: var(--orange);
}

.pros-box h3, .cons-box h3 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 900;
}

.pros-box ul, .cons-box ul {
    list-style: none;
}

.pros-box li, .cons-box li {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
    padding-left: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 20px;
    background-color: var(--purple);
    border-top: 5px solid var(--border);
    border-bottom: 5px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background-color: white;
    padding: 40px 30px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border: 4px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 900;
}

.step-card p {
    font-size: 16px;
    font-weight: 500;
}

/* Who's It For Section */
.who-its-for {
    padding: 100px 20px;
    background-color: var(--bg);
}

.who-checklist {
    max-width: 800px;
    margin: 0 auto 60px;
    background-color: white;
    padding: 50px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 20px;
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.checklist-content {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #666;
}

.checklist-content strong {
    font-weight: 900;
    color: var(--text);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.audience-card {
    background-color: var(--accent);
    padding: 40px 30px;
    border: 5px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    text-align: center;
    transition: all 0.3s;
}

.audience-card:nth-child(2) {
    background-color: var(--secondary);
}

.audience-card:nth-child(3) {
    background-color: var(--primary);
    color: white;
}

.audience-card:nth-child(4) {
    background-color: var(--green);
}

.audience-card:nth-child(5) {
    background-color: var(--blue);
    color: white;
}

.audience-card:nth-child(6) {
    background-color: var(--orange);
}

.audience-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--border);
}

.audience-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.audience-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 900;
}

.audience-card p {
    font-size: 16px;
    font-weight: 600;
}

/* Why Us Section */
.why-us {
    padding: 100px 20px;
    background: var(--green);
    border-top: 5px solid var(--border);
    border-bottom: 5px solid var(--border);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background-color: white;
    padding: 40px 30px;
    border: 5px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    transform: scale(1.05);
}

.why-emoji {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.why-emoji img {
    display: block;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--border);
    margin: 0 auto;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 900;
}

.why-card p {
    font-size: 16px;
    font-weight: 500;
}

/* About Me Section */
.about-me {
    padding: 100px 20px;
    background-color: var(--bg);
    border-top: 5px solid var(--border);
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    padding: 12px 24px;
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    font-weight: 900;
    font-size: 18px;
    white-space: nowrap;
    text-align: center;
}

.about-text h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
}

.about-intro {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.credential-item {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border: 5px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    transition: all 0.3s;
    align-items: start;
}

.credential-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--border);
}

.credential-item:nth-child(1) {
    background-color: var(--blue);
    color: white;
}

.credential-item:nth-child(2) {
    background-color: var(--green);
}

.credential-item:nth-child(3) {
    background-color: var(--accent);
}

.credential-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.credential-item h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.credential-item p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.about-cta-text {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background-color: white;
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    color: var(--text);
    transition: all 0.2s;
}

.social-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--border);
}

.social-btn.twitter {
    background-color: #1DA1F2;
    color: white;
}

.social-btn.linkedin {
    background-color: #0077B5;
    color: white;
}

.social-btn.email {
    background-color: var(--primary);
    color: white;
}

.social-btn.website {
    background-color: var(--purple);
    color: white;
}

.social-btn span {
    font-size: 20px;
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    background-color: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.pricing-card {
    background-color: white;
    padding: 40px 30px;
    border: 5px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border: 4px solid var(--border);
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.price-wrapper {
    margin-bottom: 20px;
}

.original-price {
    font-size: 24px;
    font-weight: 700;
    text-decoration: line-through;
    color: #999;
    text-align: center;
    margin-bottom: 5px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.launch-badge {
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border: 3px solid var(--border);
    font-weight: 900;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    text-align: center;
}

.currency {
    font-size: 32px;
    font-weight: 900;
}

.amount {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
}

.period {
    font-size: 20px;
    font-weight: 700;
    align-self: flex-end;
    padding-bottom: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    padding-left: 10px;
}

.pricing-card .btn {
    width: 100%;
}

/* FAQ Section */
.faq {
    padding: 100px 20px;
    background-color: var(--secondary);
    border-top: 5px solid var(--border);
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background-color: white;
    border: 5px solid var(--border);
    margin-bottom: 20px;
    box-shadow: 4px 4px 0px var(--border);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    font-size: 32px;
    font-weight: 900;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--text);
    color: white;
    padding: 60px 20px 20px;
    border-top: 5px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 16px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 3px solid var(--accent);
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--accent);
        flex-direction: column;
        gap: 20px;
        padding: 40px;
        transition: left 0.3s;
        border-right: 5px solid var(--border);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .who-checklist {
        padding: 30px 25px;
    }
    
    .checklist-item {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .check-icon {
        font-size: 24px;
    }
    
    .checklist-content {
        font-size: 17px;
    }
    
    .platform-logos {
        gap: 30px;
    }
    
    .platform-logo img {
        height: 35px;
    }
    
    .why-emoji img {
        width: 60px;
        height: 60px;
        display: block;
        margin: 0 auto;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-item {
        flex-direction: row;
        gap: 15px;
    }
    
    .comparison-icon {
        font-size: 24px;
        width: 40px;
        height: 40px;
    }
    
    .comparison-content h4 {
        font-size: 16px;
    }
    
    .comparison-content p {
        font-size: 15px;
    }
    
    .reddit-mockup {
        padding: 15px;
    }
    
    .reddit-title {
        font-size: 16px;
    }
    
    .reddit-body {
        font-size: 13px;
    }
    
    .comment-body {
        font-size: 13px;
    }
    
    .reddit-comment {
        padding-left: 20px;
    }
    
    .comment-line {
        left: 32px;
    }
    
    .case-study-proof {
        padding: 20px;
    }
    
    .proof-title {
        font-size: 22px;
    }
}

/* Contact Page */
.contact-page {
    padding: 100px 20px;
    background-color: var(--bg);
    min-height: 70vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text);
}

.page-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text);
}

.contact-card {
    display: flex;
    align-items: start;
    gap: 20px;
    background-color: white;
    padding: 25px;
    margin-bottom: 20px;
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--border);
}

.contact-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-details a {
    color: #0079D3;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.contact-details a:hover {
    text-decoration: underline;
}

.response-time {
    background-color: var(--accent);
    padding: 20px;
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 3px solid var(--border);
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    background-color: white;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.faq-link {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: var(--secondary);
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
}

.faq-link p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-link a {
    color: var(--text);
    font-weight: 900;
    text-decoration: underline;
}

/* Onboarding Page */
.onboarding-page {
    padding: 80px 20px;
    background-color: var(--bg);
    min-height: 100vh;
}

.onboarding-header {
    text-align: center;
    margin-bottom: 60px;
}

.onboarding-badge {
    display: inline-block;
    background-color: var(--accent);
    padding: 12px 24px;
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    font-weight: 800;
    font-size: 16px;
    margin-top: 20px;
}

.onboarding-content {
    max-width: 900px;
    margin: 0 auto;
}

.onboarding-form {
    background-color: white;
    padding: 50px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 3px dashed var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: white;
    border: 4px solid var(--border);
    border-radius: 50%;
    font-size: 22px;
    flex-shrink: 0;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: 3px solid var(--border);
}

.form-submit-section {
    text-align: center;
    padding-top: 30px;
}

.submit-note {
    background-color: var(--secondary);
    padding: 30px;
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    margin-bottom: 30px;
    text-align: left;
}

.submit-note strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--text);
}

.submit-note p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.btn-large {
    font-size: 20px;
    padding: 20px 40px;
}

/* Thank You Page */
.thank-you-page {
    padding: 100px 20px;
    background-color: var(--bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.thank-you-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text);
}

.thank-you-message {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #666;
    margin-bottom: 50px;
}

.next-steps {
    background-color: white;
    padding: 50px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border: 4px solid var(--border);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text);
}

.step-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #666;
}

.thank-you-cta {
    margin-bottom: 30px;
}

.contact-reminder {
    background-color: var(--accent);
    padding: 20px;
    border: 4px solid var(--border);
    box-shadow: 4px 4px 0px var(--border);
    font-size: 16px;
    font-weight: 600;
}

.contact-reminder a {
    color: var(--text);
    font-weight: 900;
    text-decoration: underline;
}

/* Success/Error Popups */
.success-popup,
.error-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.success-popup .popup-content,
.error-popup .popup-content {
    background-color: white;
    padding: 50px;
    border: 5px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 500px;
    margin: 20px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-popup .popup-icon,
.error-popup .popup-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-popup h2,
.error-popup h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text);
}

.success-popup p,
.error-popup p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.success-popup .popup-content {
    background-color: var(--green);
}

.error-popup .popup-content {
    background-color: var(--orange);
}

/* Responsive for Contact & Onboarding */
@media (max-width: 768px) {
    .page-title {
        font-size: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .onboarding-form {
        padding: 30px 20px;
    }
    
    .form-section-title {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .thank-you-title {
        font-size: 40px;
    }
    
    .thank-you-message {
        font-size: 18px;
    }
    
    .next-steps {
        padding: 30px 20px;
    }
    
    .next-steps h2 {
        font-size: 24px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-badge {
    animation: float 3s ease-in-out infinite;
}

