/* ========================================
   SiteTwin PointMan Landing Page Styles
   Mobile-First Responsive Design
   ======================================== */

/* CSS Variables for Brand Colors */
:root {
    --primary-yellow: #F7D917;
    --primary-black: #000000;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-gray: #e0e0e0;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Section Spacing */
section {
    padding: 60px 0;
}

/* Section Tags & Titles */
.section-tag {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #e5c700;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   Navigation
   ======================================== */
.nav-sticky {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo .logo-img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.nav-cta {
    margin-left: 16px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-black);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-gray);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 80px 0 60px;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-trust {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.938rem;
}

.stars {
    color: #f59e0b;
    font-size: 1.125rem;
}

.trust-quote {
    color: var(--text-gray);
    font-style: italic;
}

/* Hero Video */
.hero-video {
    max-width: 900px;
    margin: 40px auto;
}

.video-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-video-player {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Client Logos */
.client-logos {
    margin-top: 60px;
    text-align: center;
}

.logos-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.client-logo {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

/* ========================================
   Problem → Solution Section
   ======================================== */
.problem-solution {
    background-color: var(--bg-light);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pain-list {
    list-style: none;
    padding: 0;
}

.pain-list li {
    padding: 12px 0;
    font-size: 1.063rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-gray);
}

.solution-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    font-size: 1.25rem;
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
}

.solution-feature span:last-child {
    font-size: 1rem;
    color: var(--text-gray);
}

/* ========================================
   Features Grid Section
   ======================================== */
.features-grid {
    background-color: var(--bg-white);
    text-align: center;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.feature-icon-circle {
    width: 64px;
    height: 64px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-circle svg {
    color: var(--primary-black);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.feature-list li {
    padding: 8px 0;
    font-size: 0.938rem;
    color: var(--text-gray);
}

.feature-cta {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--primary-black);
}

/* ========================================
   Workflows Section
   ======================================== */
.workflows {
    background-color: var(--bg-light);
    text-align: center;
}

.workflow-row {
    margin-top: 48px;
}

.workflow-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.workflow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.workflow-step {
    background-color: var(--bg-white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    min-width: 140px;
    flex: 1;
    max-width: 180px;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 12px;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.813rem;
    color: var(--text-gray);
    margin: 0;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
}

/* ========================================
   Outcomes Section
   ======================================== */
.outcomes {
    background-color: var(--bg-white);
    text-align: center;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.outcome-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
}

.outcome-metric {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 var(--primary-black);
}

.outcome-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.outcome-card p {
    font-size: 0.938rem;
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e5c700 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 16px;
}

.cta-banner-content p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 32px;
}

/* ========================================
   Deep Features Section
   ======================================== */
.deep-features {
    background-color: var(--bg-white);
}

.deep-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.deep-feature.reverse {
    direction: rtl;
}

.deep-feature.reverse > * {
    direction: ltr;
}

.deep-feature-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.deep-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.deep-feature-list li {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-gray);
}

.deep-feature-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

.workflow-mini {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.workflow-mini span {
    white-space: nowrap;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* ========================================
   Integrations Section
   ======================================== */
.integrations {
    background-color: var(--bg-light);
    text-align: center;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.integration-item {
    background-color: var(--bg-white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-item:hover {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-sm);
}

.integration-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.integration-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   Social Proof Section
   ======================================== */
.social-proof {
    background-color: var(--bg-white);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.063rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Case Study */
.case-study {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 40px;
    margin-top: 48px;
}

.case-study h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
    text-align: center;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.case-before,
.case-after {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 24px;
}

.case-before h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-red);
}

.case-after h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-green);
}

.case-study ul {
    list-style: none;
    padding: 0;
}

.case-study li {
    padding: 8px 0;
    font-size: 0.938rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-gray);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    background-color: var(--bg-white);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background-color: var(--bg-light);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.pricing-desc {
    font-size: 0.938rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 0.938rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-gray);
}

.pricing-note {
    margin-top: 32px;
    font-size: 0.938rem;
    color: var(--text-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Lead Form Section
   ======================================== */
.lead-form-section {
    background-color: var(--bg-light);
}

.lead-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.lead-form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.lead-form-intro h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.lead-form-intro p {
    font-size: 1.063rem;
    color: var(--text-gray);
}

.lead-form-container {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.ghl-form-container {
    padding: 0;
    min-height: 700px;
    overflow: hidden;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group label {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.form-group small {
    font-size: 0.813rem;
    color: var(--text-light);
}

.form-privacy {
    font-size: 0.813rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-green);
    color: var(--bg-white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-success p {
    font-size: 1.063rem;
    color: var(--text-gray);
    margin-bottom: 16px;
}

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

.faq-list {
    max-width: 900px;
    margin: 48px auto 0;
}

.faq-item {
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: var(--bg-white);
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.063rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

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

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 24px;
}

.faq-answer p {
    font-size: 0.938rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Calendly Section
   ======================================== */
.calendly-section {
    background-color: var(--bg-light);
    text-align: center;
}

.calendly-container {
    max-width: 1000px;
    margin: 48px auto 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-yellow);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ccc;
    font-size: 0.938rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-yellow);
}

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

.footer-col p {
    font-size: 0.938rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 8px;
}

.footer-note {
    font-size: 0.813rem;
    color: #666;
}

/* ========================================
   Modal Styles
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 20px;
    padding: 40px;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.modal-video-content {
    max-width: 1200px;
    padding: 20px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: var(--bg-light);
}

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

/* Tablets */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .deep-feature,
    .deep-feature.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .workflow-steps {
        flex-direction: column;
        align-items: stretch;
    }
    
    .workflow-step {
        max-width: 100%;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Mobile */
@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .ghl-form-container {
        padding: 10px;
        min-height: 800px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .features-cards {
        grid-template-columns: 1fr;
    }
    
    .outcomes-grid,
    .testimonials-grid,
    .pricing-grid,
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 24px;
        margin: 10px;
    }
    
    .lead-form-container {
        padding: 24px;
    }
    
    .cta-banner-content h2 {
        font-size: 1.75rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .nav-sticky,
    .mobile-menu,
    .hero-ctas,
    .cta-banner,
    .lead-form-section,
    .calendly-section,
    .footer {
        display: none;
    }
}
