/* Biscayne Digital - Full Stylesheet */

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --accent: #06b6d4;
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --text-muted: #71717a;
    --border: #27272a;
    --border-hover: #3f3f46;
    --success: #22c55e;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

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

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

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

.nav-dropdown {
    position: relative;
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: -16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-gray);
}

.nav-dropdown-content a:hover {
    background: var(--bg-card-hover);
    color: var(--text-white);
}

.nav-cta {
    background: var(--primary);
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

/* Homepage Hero */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

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

.hero h1 {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

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

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

.btn-white {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-white:hover {
    background: var(--text-gray);
}

/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.page-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    line-height: 1.7;
}

/* Big Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scrolling Logo Bar */
.logo-bar {
    overflow: hidden;
    padding: 40px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 20s linear infinite;
}

.logo-track img {
    height: 40px;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        gap: 40px;
    }
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
}

/* Content Section (Text + Image) */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-section.reverse {
    direction: rtl;
}

.content-section.reverse > * {
    direction: ltr;
}

.content-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.content-section p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-section ul {
    margin: 24px 0;
    padding-left: 20px;
}

.content-section li {
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 968px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-section.reverse {
        direction: ltr;
    }
}

/* Comparison Section */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 60px 0;
}

.comparison-card {
    padding: 40px;
    border-radius: 20px;
    border: 2px solid;
}

.comparison-card.bad {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.good {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.comparison-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.comparison-card.bad h3 {
    color: #ef4444;
}

.comparison-card.good h3 {
    color: #22c55e;
}

.comparison-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-card li:last-child {
    border-bottom: none;
}

.comparison-card.bad li::before {
    content: "✕";
    color: #ef4444;
    font-weight: bold;
}

.comparison-card.good li::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
}

@media (max-width: 768px) {
    .comparison {
        grid-template-columns: 1fr;
    }
}

/* Case Study Cards */
.case-study {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.case-study-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-text {
    padding: 48px;
}

.case-study-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.case-study-text p {
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.case-study-results {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.case-study-stat h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.case-study-stat span {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .case-study-content {
        grid-template-columns: 1fr;
    }
    
    .case-study-results {
        flex-wrap: wrap;
    }
}

/* Testimonials */
.testimonials {
    background: var(--bg-card);
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Persona Cards */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

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

.persona-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

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

.persona-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.persona-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .persona-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* CTA Section */
.cta {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.1) 100%);
}

.cta h2 {
    margin-bottom: 16px;
}

.cta p {
    margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 15px;
    font-family: inherit;
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.footer-col a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    padding: 8px 0;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
}

.highlight-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.highlight-box p {
    color: var(--text-gray);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
}

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Container */
.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-card);
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animated Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation for CTAs */
.pulse {
    animation: pulse 2s infinite;
}

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

/* Platform Icon Grid */
.platform-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
    transition: all 0.3s;
}

.platform-icon:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.platform-icon img {
    height: 48px;
}

.platform-icon span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Results Highlight */
.results-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 60px 0;
    margin: 60px 0;
}

.results-banner .stats-row {
    border: none;
    margin: 0;
    padding: 0;
}

.results-banner .stat-number {
    color: white;
}

.results-banner .stat-label {
    color: rgba(255, 255, 255, 0.8);
}
