/* ===========================
   Global Styles & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --text-gray: #333333;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
    --hover-yellow: #FFC700;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background: var(--primary-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Video Examples Section
   =========================== */
.video-examples-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.video-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
    margin-top: 46px;
    max-width: 1035px;
    margin-left: auto;
    margin-right: auto;
}

.video-example-card {
    background: var(--primary-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 23px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.video-placeholder-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-placeholder-box.tech {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-placeholder-box.plumber {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.video-placeholder-box.finance {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.video-placeholder-content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
}

.video-placeholder-content-box svg {
    width: 40px;
    height: 40px;
    margin-bottom: 9px;
    opacity: 0.9;
}

.video-placeholder-content-box p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Video Embed Box for Example Cards */
.video-embed-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.video-embed-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-example-info {
    padding: 21px;
}

.video-example-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 6px 12px;
    border-radius: 23px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-example-info h3 {
    font-size: 20px;
    color: var(--primary-black);
    margin-bottom: 9px;
    font-weight: 700;
}

.video-example-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .video-examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .video-examples-section {
        padding: 60px 0;
    }
    
    .video-examples-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .video-placeholder-box {
        padding-top: 56.25%;
    }
}

/* ===========================
   Sticky Navigation
   =========================== */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-white);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.nav-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: -0.5px;
}

.nav-logo .logo-subtext {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-black);
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        justify-content: space-between;
    }
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--hover-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-hero {
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-size: 20px;
    padding: 18px 40px;
}

.btn-hero:hover {
    background: var(--hover-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-pricing {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    width: 100%;
}

.btn-pricing:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

.btn-pricing-featured {
    background: var(--primary-yellow);
    color: var(--primary-black);
    width: 100%;
}

.btn-pricing-featured:hover {
    background: var(--hover-yellow);
    transform: translateY(-2px);
}

.btn-final-cta {
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-size: 22px;
    padding: 20px 48px;
}

.btn-final-cta:hover {
    background: var(--hover-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ===========================
   Hero Section - 2 Column Split
   =========================== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.hero-left {
    padding-right: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trust-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #22c55e;
    margin-top: 2px;
}

.trust-item span {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Video Embed Container */
.hero-right {
    position: relative;
}

.video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Mobile Hero */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-left {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-hero {
        font-size: 18px;
        padding: 16px 32px;
    }
}

/* ===========================
   Section Titles
   =========================== */
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

/* ===========================
   Problem Section
   =========================== */
.problem-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.problem-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.problem-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.problem-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===========================
   Solution Section
   =========================== */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffacd 0%, #fff 100%);
}

.solution-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    background: var(--primary-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 40px;
    color: var(--primary-yellow);
    font-weight: 700;
}

@media (max-width: 968px) {
    .solution-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        font-size: 30px;
    }
}

/* ===========================
   What's Included Section
   =========================== */
.included-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.comparison-table {
    max-width: 900px;
    margin: 50px auto 0;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    background: var(--light-gray);
    border-bottom: 2px solid var(--border-gray);
}

.comparison-col {
    padding: 25px 20px;
    text-align: center;
}

.comparison-col.highlight {
    background: var(--primary-yellow);
}

.comparison-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.comparison-col p {
    font-size: 14px;
    color: #555;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    border-bottom: 1px solid var(--border-gray);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row .comparison-col {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.feature-name {
    font-weight: 600;
    color: var(--primary-black);
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
}

.check {
    font-size: 28px;
    color: #22c55e;
    font-weight: 700;
}

.cross {
    font-size: 28px;
    color: #ef4444;
    font-weight: 700;
}

.comparison-row .comparison-col p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 14px;
    }

    .feature-name {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .comparison-header,
    .comparison-row {
        word-break: break-word;
    }
    .comparison-col {
        padding: 10px 5px;
    }
    .comparison-col h3 {
        font-size: 15px;
    }
    .comparison-row .comparison-col {
        padding: 5px;
    }
}
/* ===========================
   Success Stories Section
   =========================== */
.success-stories {
    padding: 80px 0;
    background: var(--light-gray);
}

.case-study {
    max-width: 1000px;
    margin: 50px auto 0;
    background: var(--primary-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-gray);
}

.case-study-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--primary-black);
}

.case-study-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.case-study-title p {
    font-size: 16px;
    color: #666;
}

.youtube-link {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--primary-black);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.stat-detail {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.case-study-quote {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #fffacd 0%, #fff 100%);
    border-radius: 10px;
    border-left: 5px solid var(--primary-yellow);
}

.quote-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-yellow);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.case-study-quote p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--primary-black) !important;
    font-style: normal !important;
    margin-bottom: 0 !important;
}

@media (max-width: 968px) {
    .case-study {
        padding: 30px 20px;
    }
    
    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .case-study-stats {
        grid-template-columns: 1fr;
    }
    
    .case-study-quote {
        padding: 30px 20px;
    }
}

/* ===========================
   Pricing Section
   =========================== */
.pricing-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--primary-white);
    border: 2px solid var(--border-gray);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-yellow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-gray);
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 16px;
    color: #666;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-black);
}

.price-period {
    font-size: 18px;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-gray);
}

.feature-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #22c55e;
    margin-top: 2px;
}

.pricing-features li strong {
    color: var(--primary-black);
    font-weight: 600;
}

.pricing-guarantee {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 10px;
}

.pricing-guarantee h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.pricing-guarantee p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.faq-item {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ===========================
   Final CTA Section
   =========================== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--primary-white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-white);
}

.cta-content > p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #ccc;
    text-align: left;
}

.cta-note {
    font-size: 14px;
    color: #999;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content > p {
        font-size: 18px;
    }
    
    .btn-final-cta {
        font-size: 18px;
        padding: 16px 32px;
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    padding: 40px 0;
    background: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
}

.footer p {
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

/* ===========================
   Smooth Scrolling
   =========================== */
html {
    scroll-behavior: smooth;
}
