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

:root {
    /* Colors - Purple Theme (matching 1clickautomations.ai) */
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --secondary-color: #6D28D9;
    --accent-color: #C084FC;
    
    --text-dark: #1A1A1A;
    --text-medium: #3F3F3F;
    --text-light: #737373;
    
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-lighter: #F5F5F5;
    --bg-purple-light: #F5F3FF;
    
    --border-color: #E5E5E5;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 24px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 18px;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
}

.header-brand {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.header-brand:hover {
    opacity: 0.8;
}

.brand-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.brand-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='4' viewBox='0 0 200 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2.5 Q 10 1, 20 2 T 40 2.5 T 60 2 T 80 2.5 T 100 2 T 120 2.5 T 140 2 T 160 2.5 T 180 2 T 200 2.5' stroke='%238B5CF6' stroke-width='3' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 200px 4px;
    background-position: 0 bottom;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-header {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    font-weight: 700;
    padding: 10px 24px;
}

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

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(3, 105, 161, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(3, 105, 161, 0);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5CF6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-ticker {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    padding: 12px 32px;
    margin-bottom: 32px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.ticker-content {
    position: relative;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-item {
    position: absolute;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticker-item.active {
    opacity: 1;
    transform: translateY(0);
}

.ticker-item.exiting {
    opacity: 0;
    transform: translateY(-20px);
}

.headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.subheadline {
    font-size: 28px;
    color: var(--text-medium);
    margin-bottom: 48px;
    font-weight: 500;
}

.hero-subtext {
    margin-top: 24px;
    color: var(--text-light);
    font-size: 16px;
}

/* Section Titles */
.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.section-title.centered {
    text-align: center;
}

.section-intro {
    font-size: 20px;
    color: var(--text-medium);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

/* Opening Section */
.opening-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
}

.content-text {
    font-size: 20px;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 20px;
}

.large-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 32px;
}

/* Framework Section */
.framework-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 56px;
}

.framework-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.framework-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

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

.framework-card p {
    color: var(--text-medium);
    font-size: 18px;
}

.framework-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
}

.framework-text p {
    margin-bottom: 16px;
}

/* Approach Section */
.approach-section {
    padding: var(--section-padding);
    background: white;
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 56px 0;
}

.approach-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.approach-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.approach-label {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.approach-card p {
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 24px;
}

.approach-stat {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.approach-text {
    text-align: center;
    font-size: 20px;
}

.approach-text p {
    margin-bottom: 16px;
}

.problem-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 32px;
}

.solution-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Discover Section */
.discover-section {
    padding: var(--section-padding);
    background: var(--bg-blue-light);
}

.discover-list {
    max-width: 900px;
    margin: 56px auto;
}

.discover-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.discover-item:hover {
    transform: translateX(8px);
}

.discover-icon {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.discover-content {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.6;
}

.discover-content strong {
    color: var(--text-dark);
    font-weight: 700;
}

.cta-center {
    text-align: center;
    margin-top: 56px;
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background: white;
}

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

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

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

.step-card p {
    color: var(--text-medium);
    font-size: 18px;
}

.how-it-works-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    color: var(--text-medium);
}

/* Who Section */
.who-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.who-list {
    max-width: 900px;
    margin: 56px auto 0;
    display: grid;
    gap: 24px;
}

.who-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.who-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.who-check {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.who-item p {
    font-size: 19px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Main CTA Section */
.main-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-box p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-box .btn-primary:hover {
    background: var(--bg-lighter);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.cta-subtext {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
}

/* Credibility Section */
.credibility-section {
    padding: var(--section-padding);
    background: white;
}

.credibility-content {
    max-width: 800px;
    margin: 0 auto 56px;
    text-align: center;
    font-size: 20px;
}

.credibility-content p {
    margin-bottom: 24px;
    color: var(--text-medium);
}

.credibility-content em {
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-tagline a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

.footer-center {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.footer-center a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.footer-domain {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

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

.footer-brand p {
    font-size: 16px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .headline {
        font-size: 42px;
    }
    
    .subheadline {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    body {
        font-size: 16px;
    }
    
    .hero-ticker {
        padding: 10px 20px;
        margin-bottom: 24px;
    }
    
    .ticker-content {
        height: auto;
        min-height: 24px;
    }
    
    .ticker-item {
        font-size: 13px;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .headline {
        font-size: 36px;
    }
    
    .subheadline {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .framework-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .discover-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-center {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-right {
        align-items: flex-start;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-box h2 {
        font-size: 32px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-light);
    color: white;
}

/* ===================================
   THANK YOU PAGE STYLES
   =================================== */

/* Thank You Hero */
.thankyou-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    text-align: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

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

.success-icon {
    margin-bottom: 32px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-headline {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.thankyou-subheadline {
    font-size: 22px;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Animated Ticker */
.trust-banner {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 16px 0;
    border-top: 2px solid #F59E0B;
    border-bottom: 2px solid #F59E0B;
    overflow: hidden;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    animation: scroll-ticker 12s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.ticker-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    padding: 0;
    letter-spacing: -0.3px;
}

.ticker-highlight {
    position: relative;
    color: #8B5CF6;
    font-weight: 800;
    display: inline-block;
    padding-bottom: 4px;
}

.ticker-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2px;
    right: -2px;
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='3' viewBox='0 0 200 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2 Q 10 0.5, 20 1.5 T 40 2 T 60 1.5 T 80 2 T 100 1.5 T 120 2 T 140 1.5 T 160 2 T 180 1.5 T 200 2' stroke='%238B5CF6' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 200px 3px;
    background-position: 0 bottom;
}

@keyframes scroll-ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.33%, 0, 0);
    }
}

/* Pause on hover */
.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

/* Text with gradient underline */
.text-underline-gradient {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.text-underline-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2px;
    right: -2px;
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='3' viewBox='0 0 200 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2 Q 10 0.5, 20 1.5 T 40 2 T 60 1.5 T 80 2 T 100 1.5 T 120 2 T 140 1.5 T 160 2 T 180 1.5 T 200 2' stroke='%238B5CF6' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 200px 3px;
    background-position: 0 bottom;
}

/* Free Guide Section */
.free-guide-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.guide-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.guide-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.guide-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.guide-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Guide Mockup */
.guide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-mockup {
    width: 280px;
    height: 360px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.mockup-header {
    height: 40px;
    background: var(--bg-lighter);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.mockup-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
}

.mockup-content {
    padding: 40px 24px;
}

.mockup-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
    line-height: 1.3;
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-lines .line {
    height: 8px;
    background: var(--bg-lighter);
    border-radius: 4px;
}

/* Blueprint Preview Styles */
.blueprint-preview-container {
    position: relative;
    width: 320px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blueprint-preview-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.1);
}

.blueprint-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    padding: 8px 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.mockup-lines .line.short {
    width: 60%;
}

.mockup-lines .line.medium {
    width: 80%;
}

/* Next Steps Section */
.next-steps-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps-list {
    max-width: 800px;
    margin: 56px auto 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
    background: white;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-icon {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
}

.report-preview {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-blue-light);
    padding: 24px 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.report-preview p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.team-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 56px;
}

.team-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.team-photo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.team-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

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

.team-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.team-bio {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 24px;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0077B5;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.team-linkedin:hover {
    transform: translateX(4px);
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box-thankyou {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.cta-box-thankyou h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-box-thankyou p {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Responsive - Thank You Page */
@media (max-width: 768px) {
    .thankyou-headline {
        font-size: 32px;
    }
    
    .thankyou-subheadline {
        font-size: 18px;
    }
    
    .guide-box {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        gap: 40px;
    }
    
    .guide-title {
        font-size: 28px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box-thankyou {
        padding: 40px 32px;
    }
    
    .cta-box-thankyou h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .thankyou-hero {
        padding: 60px 0 40px;
    }
    
    .thankyou-headline {
        font-size: 26px;
    }
    
    .guide-box {
        padding: 32px 24px;
    }
    
    .guide-title {
        font-size: 24px;
    }
    
    .team-card {
        padding: 32px 24px;
    }
    
    .cta-box-thankyou {
        padding: 32px 24px;
    }
}

/* ===================================
   SALES PAGE STYLES
   =================================== */

/* Sales Hero */
.sales-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sales-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.sales-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.sales-headline-note {
    font-size: 24px;
    margin-bottom: 28px;
    opacity: 0.9;
    font-weight: 500;
}

.sales-subheadline {
    font-size: 24px;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta {
    margin-top: 48px;
}

.sales-hero .btn-primary {
    background: white;
    color: var(--primary-color);
    font-size: 18px;
    padding: 18px 40px;
    font-weight: 700;
}

.sales-hero .btn-primary:hover {
    background: var(--bg-lighter);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
}

/* Problem Section */
.problem-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.7;
}

.problem-content p {
    margin-bottom: 24px;
}

.problem-questions {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
}

.question-item {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.question-item::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.question-item:last-child {
    margin-bottom: 0;
}

.solution-statement {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    text-align: center;
    margin-top: 40px !important;
}

/* What You Get Section */
.what-you-get-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.audit-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.phase-card {
    background: white;
    padding: 36px 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.phase-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

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

.phase-header {
    margin-bottom: 24px;
}

.phase-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.phase-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.phase-list li {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.phase-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Why Price Section */
.why-price-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.price-explanation {
    max-width: 800px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.7;
}

.price-explanation p {
    margin-bottom: 24px;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.specialist-badge {
    background: var(--bg-light);
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.badge-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.specialist-badge span:last-child {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.emphasis-text {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin: 32px 0 !important;
}

.filter-box {
    background: var(--bg-blue-light);
    padding: 32px;
    border-radius: 16px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

.filter-box p {
    margin-bottom: 16px;
}

.filter-box p:last-child {
    margin-bottom: 0;
}

/* Who Sales Section */
.who-sales-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.who-sales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 56px;
}

.who-sales-column h2 {
    margin-bottom: 32px;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.criteria-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    border: 2px solid transparent;
}

.criteria-item.for {
    border-color: var(--secondary-color);
}

.criteria-item.not {
    border-color: #EF4444;
    opacity: 0.8;
}

.criteria-icon {
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.criteria-item.for .criteria-icon {
    color: var(--secondary-color);
}

.criteria-item.not .criteria-icon {
    color: #EF4444;
}

.criteria-item p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Sales Team Section */
.sales-team-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.team-intro-sales {
    text-align: center;
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.trust-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
}

.trust-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.trust-location {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.trust-statement {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* CTA Sales Section */
.cta-sales-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.cta-sales-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-sales-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-sales-box p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-sales-box .btn-primary {
    background: white;
    color: var(--primary-color);
    font-size: 18px;
    padding: 18px 40px;
    font-weight: 700;
}

.cta-sales-box .btn-primary:hover {
    background: var(--bg-lighter);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
}

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

.faq-list {
    max-width: 800px;
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--bg-light);
    padding: 32px 36px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Final CTA Sales */
.final-cta-sales {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.final-cta-sales .btn {
    font-size: 18px;
    padding: 18px 40px;
}

/* Responsive - Sales Page */
@media (max-width: 968px) {
    .sales-headline {
        font-size: 42px;
    }
    
    .sales-headline-note {
        font-size: 20px;
    }
    
    .sales-subheadline {
        font-size: 20px;
    }
    
    .who-sales-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .audit-phases {
        grid-template-columns: 1fr;
    }
    
    .phase-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .sales-hero {
        padding: 80px 0 60px;
    }
    
    .sales-headline {
        font-size: 36px;
    }
    
    .sales-headline-note {
        font-size: 18px;
    }
    
    .sales-subheadline {
        font-size: 18px;
    }
    
    .problem-questions {
        padding: 28px 24px;
    }
    
    .specialists-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-sales-box h2 {
        font-size: 32px;
    }
    
    .trust-box {
        padding: 32px 28px;
    }
}

@media (max-width: 480px) {
    .sales-hero {
        padding: 60px 0 40px;
    }
    
    .sales-headline {
        font-size: 28px;
    }
    
    .sales-headline-note {
        font-size: 16px;
    }
    
    .sales-subheadline {
        font-size: 16px;
    }
    
    .problem-content,
    .price-explanation {
        font-size: 17px;
    }
    
    .problem-questions {
        padding: 24px 20px;
    }
    
    .question-item {
        font-size: 17px;
    }
    
    .phase-card {
        padding: 28px 24px;
    }
    
    .faq-item {
        padding: 24px 20px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .cta-sales-box h2 {
        font-size: 28px;
    }
}

