/* ImmoFlow Design System adapted for IyadaFlow & DentoFlow */
:root {
    --bg-main: #07111F;
    --bg-secondary: #0a121f;
    --bg-card: #0d192b;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --brand-blue: #3b82f6;
    --brand-violet: #8b5cf6;
    --brand-cyan: #06b6d4;
    --brand-teal: #0d9488;
    --brand-green: #10b981;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-title: 'Sora', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

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

/* Background Glows */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    animation: pulse-glow 8s infinite alternate ease-in-out;
}

.glow-1 {
    top: 5%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--brand-blue) 0%, transparent 70%);
}

.glow-2 {
    top: 40%;
    right: 10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--brand-violet) 0%, transparent 70%);
    animation-delay: 2s;
}

.glow-3 {
    bottom: 10%;
    left: 20%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--brand-cyan) 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.1); opacity: 0.2; }
}

/* Header & Typography */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Navbar */
.navbar {
    background-color: rgba(7, 17, 31, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo-icon {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.logo-text span {
    color: var(--brand-blue);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-violet), var(--brand-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.btn-primary * {
    position: relative;
    z-index: 2;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

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

/* Hero Section */
.hero {
    padding: 100px 0 120px;
    position: relative;
    z-index: 10;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.inline-badge {
    padding: 1px;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-violet), var(--brand-cyan));
    margin-bottom: 24px;
}

.badge-inner {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-main);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.gradient-text {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-violet), var(--brand-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero-lead {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-bottom: 40px;
}

.hero-checks {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.check-item {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 3D perspective mockup */
.hero-mockup-wrapper {
    position: relative;
    perspective: 1200px;
}

.browser-mockup {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: rotateX(8deg) rotateY(-12deg) rotateZ(3deg);
    transition: transform 0.5s ease;
    width: 100%;
    max-width: 520px;
}

.browser-mockup:hover {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.browser-header {
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.browser-address {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-body {
    display: flex;
    height: 300px;
}

.mock-sidebar {
    width: 60px;
    background-color: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    height: 16px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-item.active {
    background-color: var(--brand-blue);
    opacity: 0.8;
}

.mock-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-title {
    width: 100px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.mock-status {
    width: 60px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

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

.mock-card-stat {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.stat-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
}

.stat-lbl {
    font-size: 8px;
    color: var(--text-muted);
}

.mock-table {
    display: flex;
    flex-content: column;
    gap: 8px;
    margin-top: auto;
}

.table-row {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.table-row.header {
    background-color: rgba(255, 255, 255, 0.1);
    width: 60%;
}

/* Floating Tags */
.floating-tag {
    position: absolute;
    background-color: rgba(13, 25, 43, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

.floating-tag:hover {
    transform: scale(1.05);
}

.tag-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-white);
}

.bg-blue { background-color: rgba(59, 130, 246, 0.2); border: 1px solid rgba(59, 130, 246, 0.3); color: var(--brand-blue) !important; }
.bg-green { background-color: rgba(16, 185, 129, 0.2); border: 1px solid rgba(16, 185, 129, 0.3); color: var(--brand-green) !important; }
.bg-violet { background-color: rgba(139, 92, 246, 0.2); border: 1px solid rgba(139, 92, 246, 0.3); color: var(--brand-violet) !important; }
.bg-cyan { background-color: rgba(6, 182, 212, 0.2); border: 1px solid rgba(6, 182, 212, 0.3); color: var(--brand-cyan) !important; }
.bg-teal { background-color: rgba(13, 148, 136, 0.2); border: 1px solid rgba(13, 148, 136, 0.3); color: var(--brand-teal) !important; }

.tag-info {
    display: flex;
    flex-direction: column;
}

.tag-title {
    font-size: 8px;
    color: var(--text-muted);
}

.tag-val {
    font-size: 11px;
    color: var(--text-white);
}

.tag-1 { top: 5%; left: -8%; }
.tag-2 { bottom: 15%; right: -5%; }
.tag-3 { bottom: -8%; left: 5%; }

/* Section tag badges */
.section-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 16px;
}

.line-blue { background-color: rgba(59, 130, 246, 0.1); color: var(--brand-blue); }
.line-violet { background-color: rgba(139, 92, 246, 0.1); color: var(--brand-violet); }
.line-cyan { background-color: rgba(6, 182, 212, 0.1); color: var(--brand-cyan); }

/* Target Audience Section */
.audience {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

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

.audience-card {
    background-color: rgba(13, 25, 43, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.audience-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.audience-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.audience-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

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

.feature-item {
    background-color: rgba(13, 25, 43, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Interactive Demo / Tabs Section */
.interactive-demo {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 9999px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--brand-blue);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tab-content-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
    animation: fade-in 0.4s ease forwards;
}

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

.demo-mockup-inner {
    width: 100%;
}

/* Tab Mockup Contents */
.mockup-row-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.stat-card span {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
}

.stat-card strong {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-title);
}

.text-green { color: var(--brand-green); }
.text-blue { color: var(--brand-blue); }
.text-violet { color: var(--brand-violet); }

.mockup-chart-placeholder {
    height: 120px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    padding: 20px;
}

.chart-bar {
    width: 36px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(to top, var(--brand-blue), var(--brand-cyan));
    height: 0;
    animation: grow-chart 1s ease forwards;
}

.chart-bar.bar-1 { height: 40px; animation-delay: 0.1s; }
.chart-bar.bar-2 { height: 80px; animation-delay: 0.2s; }
.chart-bar.bar-3 { height: 60px; animation-delay: 0.3s; }
.chart-bar.bar-4 { height: 95px; animation-delay: 0.4s; }
.chart-bar.bar-5 { height: 70px; animation-delay: 0.5s; }

@keyframes grow-chart {
    from { height: 0; }
    to { transform: scaleY(1); }
}

.mock-table-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.mock-row-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.mock-row-item strong {
    font-weight: 700;
}

.mock-row-item span {
    color: var(--text-muted);
}

.mock-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.mock-badge.green { background-color: rgba(16, 185, 129, 0.1); color: var(--brand-green); }
.mock-badge.amber { background-color: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.mock-prescription-preview {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.prescription-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 14px;
    text-transform: uppercase;
}

.prescription-body {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
}

.med-item {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.prescription-ia-badge {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-cyan);
}

.dental-chart-mock {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tooth {
    width: 60px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
}

.crown {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    margin-top: 8px;
}

.crown.red { background-color: rgba(239, 68, 68, 0.2); border-color: #ef4444; }
.crown.green { background-color: rgba(16, 185, 129, 0.2); border-color: var(--brand-green); }

.dental-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 12px;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-item .color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-item .color.red { background-color: #ef4444; }
.legend-item .color.green { background-color: var(--brand-green); }

/* Editions Pricing Cards */
.editions {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.editions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.edition-card {
    background-color: rgba(13, 25, 43, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: left;
}

.edition-card.recommended {
    border-color: var(--brand-blue);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.edition-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 6px;
}

.edition-card h3 {
    font-size: 32px;
    margin: 12px 0 16px;
    font-family: var(--font-title);
}

.edition-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 36px;
    min-height: 48px;
}

.edition-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.edition-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.edition-features li::before {
    content: "✓";
    color: var(--brand-cyan);
    font-weight: 800;
    font-size: 16px;
}

/* Tech Grid */
.tech {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.tech-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.tech-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 60px 0;
    font-size: 14px;
    z-index: 10;
    position: relative;
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Responsive Rules */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-mockup-wrapper {
        margin: 0 auto;
    }
    
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .editions-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-checks {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 6px;
        border-radius: 12px;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
    
    .mockup-row-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Secondary Pages Shared Layout */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 40px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.header-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Detail Page */
.features-detail {
    padding: 60px 0 100px;
    position: relative;
    z-index: 10;
}

.feature-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-detail-row.reverse {
    direction: rtl;
}

.feature-detail-row.reverse .detail-content,
.feature-detail-row.reverse .detail-list {
    direction: ltr;
    text-align: left;
}

.detail-content h2 {
    font-size: 32px;
    margin: 12px 0 20px;
}

.detail-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

.feat-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-list li::before {
    content: "✓";
    color: var(--brand-cyan);
    font-weight: 800;
    font-size: 16px;
}

.detail-visual {
    display: flex;
    justify-content: center;
    width: 100%;
}

.visual-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.visual-card.border-violet { border-color: var(--brand-violet); }
.visual-card.border-teal { border-color: var(--brand-teal); }

.card-body-mock-inner {
    padding: 24px;
}

.badge-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.mock-small-list {
    display: flex;
    flex-content: column;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.ia-suggestion-box {
    background-color: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
    font-size: 12px;
}

.ia-suggestion-box strong {
    display: block;
    margin-bottom: 4px;
}

.whatsapp-mock {
    background-color: #0b141a;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 360px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wa-header {
    background-color: #075e54;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 13px;
}

.wa-message {
    background-color: #1f2c34;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 20px;
    font-size: 12px;
    width: fit-content;
    max-width: 80%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.wa-btn-mock {
    background-color: #0b141a;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 10px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
}

.sync-icon {
    font-size: 40px;
    margin-bottom: 16px;
    animation: rotate-sync 4s infinite linear;
    display: inline-block;
}

@keyframes rotate-sync {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Solutions & Comparison Table */
.pricing-editions {
    padding: 40px 0 100px;
    position: relative;
    z-index: 10;
}

.comparison {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-color);
}

.table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background-color: rgba(13, 25, 43, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-family: var(--font-title);
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.02);
}

.comparison-table td:nth-child(2), .comparison-table td:nth-child(3),
.comparison-table th:nth-child(2), .comparison-table th:nth-child(3) {
    text-align: center;
}

.comparison-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
}

.check-yes {
    color: var(--brand-green);
    font-weight: 800;
    font-size: 16px;
}

.check-no {
    color: #ef4444;
    font-weight: 800;
    font-size: 16px;
}

/* About & Contact Page */
.about-vision {
    padding: 60px 0 100px;
    position: relative;
    z-index: 10;
}

.vision-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vision-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.vision-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.values-list li {
    font-size: 14px;
    color: var(--text-muted);
}

.values-list li strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 4px;
}

.contact-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.info-icon {
    font-size: 20px;
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

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

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, .form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
}

@media (max-width: 992px) {
    .feature-detail-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-detail-row.reverse {
        direction: ltr;
    }
    
    .feature-detail-row.reverse .detail-content,
    .feature-detail-row.reverse .detail-list {
        text-align: center;
    }
    
    .detail-list {
        align-items: center;
    }
    
    .vision-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

