/* Bay Digital - Main Stylesheet */

/* Variables */
:root {
    --primary-color: #1e4d8b;
    --secondary-color: #3b82c4;
    --accent-color: #60a5fa;
    --dark-color: #1e293b;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --text-color: #334155;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --max-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background-color: var(--light-gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--medium-gray);
    color: var(--text-color);
}

.mobile-menu a.active,
.mobile-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-price {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 180px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Page Hero (for other pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Value Proposition Section */
.value-prop {
    padding: 5rem 0;
    background: var(--light-gray);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.comparison-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.comparison-card h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.comparison-card ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--danger-color);
}

.comparison-card.featured ul li::before,
.comparison-card ul.pros li::before {
    content: "✓";
    color: var(--success-color);
}

/* Features Grid */
.features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

/* Industries Section */
.industries {
    padding: 5rem 0;
    background: var(--light-gray);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.industry-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--warning-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--medium-gray);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
}

.period {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-left: 0.5rem;
}

.plan-description {
    color: var(--text-color);
    font-size: 0.95rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.plan-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Enterprise CTA */
.enterprise-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.enterprise-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

/* Examples Section */
.examples-section {
    padding: 5rem 0;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--medium-gray);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.example-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.example-preview {
    background: var(--light-gray);
    padding: 1rem;
}

.browser-bar {
    background: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
}

.browser-dots span:first-child {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:last-child {
    background: #10b981;
}

.browser-url {
    color: var(--text-color);
    font-size: 0.875rem;
}

.example-image {
    height: 250px;
    background: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-placeholder {
    text-align: center;
    padding: 2rem;
}

.demo-placeholder h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.example-info {
    padding: 1.5rem;
}

.example-info h4 {
    margin-bottom: 0.5rem;
}

.example-info p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Custom Design CTA */
.custom-design-cta {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.custom-design-cta h3 {
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--medium-gray);
}

.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: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-time {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-details {
    list-style: none;
    margin-top: 1rem;
}

.step-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.step-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* After Launch Section */
.after-launch {
    padding: 5rem 0;
    background: var(--light-gray);
}

.after-launch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.after-launch-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Requirements Section */
.requirements-section {
    padding: 5rem 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.requirement-card {
    background: white;
    padding: 2rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
}

.requirement-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.requirement-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.requirements-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

/* Timeline Visual */
.timeline-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.timeline-visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
    flex-wrap: wrap;
    gap: 2rem;
}

.timeline-visual::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--medium-gray);
    z-index: 0;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 150px;
}

.timeline-marker {
    background: white;
    border: 3px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-item.ongoing .timeline-marker {
    background: var(--primary-color);
    color: white;
}

.timeline-content {
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Process FAQ */
.process-faq {
    padding: 5rem 0;
}

.faq-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.faq-column h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.faq-column h4:first-child {
    margin-top: 0;
}

/* Tickets Section */
.tickets-section {
    padding: 5rem 0;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.ticket-card {
    text-align: center;
    position: relative;
}

.ticket-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.tickets-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.comparison-table thead {
    background: var(--dark-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--medium-gray);
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: rgba(30, 77, 139, 0.05);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-hero .trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-hero .trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Form Styles */
.signup-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Plan Selector */
.plan-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plan-option {
    cursor: pointer;
}

.plan-option input[type="radio"] {
    display: none;
}

.plan-card {
    border: 2px solid var(--medium-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.plan-option input[type="radio"]:checked + .plan-card {
    border-color: var(--primary-color);
    background: rgba(30, 77, 139, 0.05);
}

.plan-card.recommended {
    border-color: var(--warning-color);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--warning-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-card h4 {
    margin-bottom: 1rem;
}

.plan-card ul {
    list-style: none;
}

.plan-card ul li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Info Column */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.next-steps {
    list-style: none;
    counter-reset: steps;
}

.next-steps li {
    counter-increment: steps;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.next-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Features Reminder */
.features-reminder {
    padding: 5rem 0;
    background: var(--light-gray);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.feature-check {
    color: var(--success-color);
    font-size: 1.25rem;
    font-weight: 700;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.guarantee {
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    padding: 0.5rem 0;
}

.footer-column a {
    color: #94a3b8;
}

.footer-column a:hover {
    color: white;
}

.footer-logo {
    height: 85px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-card.featured {
        transform: none;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step::after {
        left: 25px;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-visual {
        flex-direction: column;
    }
    
    .timeline-visual::before {
        display: none;
    }
    
    .faq-columns {
        grid-template-columns: 1fr;
    }
    
    .enterprise-cta {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .industry-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }
}
/* Success Page Styles */
.success-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: white;
    color: #10b981;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.success-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.success-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.next-steps-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.next-steps-section .lead {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.timeline-steps {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.timeline-step h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.timeline-step p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.timeline-step ul {
    margin: 1rem 0 0 1.5rem;
    color: #64748b;
}

.timeline-step ul li {
    margin-bottom: 0.5rem;
}

.timeline-step .note {
    font-size: 0.9rem;
    font-style: italic;
    color: #94a3b8;
    margin-top: 1rem;
}

.important-info {
    padding: 4rem 0;
}

.important-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.important-info .info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #3b82f6;
}

.important-info .info-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.important-info .info-card p {
    color: #64748b;
    line-height: 1.6;
}

.success-faq {
    padding: 4rem 0;
    background: #f8fafc;
}

.success-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.success-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.success-faq .faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.success-faq .faq-item h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.success-faq .faq-item p {
    color: #64748b;
}

.success-cta {
    padding: 4rem 0;
    text-align: center;
}

.success-cta h2 {
    margin-bottom: 1rem;
}

.success-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .success-hero h1 {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
}