/* GLOBAL STYLES & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary-color: #14b8a6;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --gradient-bg: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--medium-gray);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

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

.nav-links .nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO SECTION */
.hero {
    padding: 140px 0 50px;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

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

.hero-content {
    max-width: 600px;
    transition: transform 0.1s ease-out;
    text-align: center;
    padding-top: 30px;
}

.hero-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.hero-subheadline {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.hero-trust {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: rgba(14, 165, 233, 0.9);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(14, 165, 233, 1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    border: 2px solid rgba(14, 165, 233, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--primary-color);
    backdrop-filter: blur(15px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.6);
    color: var(--dark-gray);
    border: 2px solid rgba(229, 231, 235, 0.6);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(240, 249, 255, 0.8);
    backdrop-filter: blur(15px);
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

/* HERO VISUAL - MOCK WEBSITE */
.hero-visual {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
    perspective: 1000px;
}

.mock-website {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: var(--shadow-lg), 0 0 15px rgba(14, 165, 233, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
    position: relative;
}

.mock-header {
    background: #f9fafb;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #10b981; }

.mock-tabs {
    display: flex;
    gap: 4px;
    flex: 1;
    position: relative;
}

.mock-tab {
    min-width: 70px;
    height: 26px;
    background: #e5e7eb;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
}

.mock-tab.active {
    background: white;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 70px;
    left: 0;
}

.mock-cursor {
    position: absolute;
    width: 20px;
    height: 24px;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    animation: cursorMove 6s ease-in-out infinite;
    transition: all 0.5s ease;
}

.mock-cursor::before {
    content: '➤';
    position: absolute;
    font-size: 20px;
    color: var(--primary-color);
    transform: rotate(-45deg);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.mock-cursor.clicking::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: -5px;
    left: -5px;
    animation: clickRipple 0.5s ease-out;
}

@keyframes clickRipple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes cursorMove {
    0%, 5% {
        top: 18px;
        left: 105px;
        opacity: 1;
    }
    33%, 38% {
        top: 18px;
        left: 179px;
        opacity: 1;
    }
    66%, 71% {
        top: 18px;
        left: 253px;
        opacity: 1;
    }
    95%, 100% {
        top: 18px;
        left: 105px;
        opacity: 1;
    }
}

.mock-content {
    display: flex;
    min-height: 300px;
}

.mock-sidebar {
    display: none;
}

.mock-main {
    flex: 1;
    padding: 24px;
    position: relative;
}

.mock-page {
    display: none;
    animation: fadeInContent 0.4s ease-in-out;
}

.mock-page.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mock-bar {
    height: 12px;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 100%);
    border-radius: 6px;
    margin-bottom: 16px;
}

.mock-bar.short {
    width: 60%;
}

.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.mock-step {
    text-align: center;
    padding: 20px 10px;
}

.mock-step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.mock-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.mock-step-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* BENEFITS SECTION */
.benefits {
    padding: 0 0 80px 0;
    background: var(--white);
}

.benefits-intro {
    text-align: left;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 24px;
    font-weight: 500;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(229, 231, 235, 0.5);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(14, 165, 233, 0.3);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    gap: 24px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

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

.step p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 50px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* PRICING SECTION */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(229, 231, 235, 0.5);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
}

.pricing-card.featured {
    border-color: rgba(14, 165, 233, 0.5);
    border-width: 2px;
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.plan-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.plan-price {
    margin-bottom: 0;
}

.price {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--medium-gray);
    font-weight: 500;
}

.setup-fee {
    font-size: 13px;
    color: var(--medium-gray);
    margin: 0 0 16px;
    padding: 0;
    font-weight: 500;
    line-height: 1.4;
}

.plan-description {
    color: var(--dark-gray);
    margin-top: 24px;
    margin-bottom: 32px;
    min-height: 48px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    color: var(--dark-gray);
    border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #f3f4f6;
    transition: var(--transition);
}

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

.quote-icon {
    font-size: 48px;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

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

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

.testimonial-author strong {
    color: var(--dark-gray);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 14px;
}

/* FAQ SECTION */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: left;
    transition: var(--transition);
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* CONTACT SECTION */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.contact-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 18px;
    margin-bottom: 48px;
}

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

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
    position: relative;
}

.char-counter {
    font-size: 13px;
    color: var(--medium-gray);
    text-align: right;
    margin-top: 4px;
    font-weight: 500;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input.pulse-animate,
.form-group textarea.pulse-animate {
    animation: inputPulse 1s ease-out forwards;
}

@keyframes inputPulse {
    0% {
        transform: scale(1);
        box-shadow: none;
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 40px rgba(14, 165, 233, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: none;
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.contact-form button {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.contact-alternative {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.contact-alternative a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

.success-message {
    display: none;
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin-top: 32px;
}

.success-message.show {
    display: block;
    animation: slideIn 0.4s ease;
}

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

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.success-content h3 {
    color: var(--dark-gray);
    font-size: 24px;
    margin-bottom: 8px;
}

.success-content p {
    color: var(--medium-gray);
}

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

.footer-logo {
    height: 50px;
    width: auto;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
    flex: 1;
}

/* STICKY MOBILE CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 24px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-cta .btn {
    width: 100%;
    display: block;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        width: 100%;
    }

    .nav-links .nav-cta {
        margin-top: 16px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .steps-container {
        flex-direction: column;
        gap: 32px;
    }

    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .sticky-cta {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
