/* =========================================
   CSS Reset & Variables
   ========================================= */
:root {
    /* Color Palette */
    --bg-1: #0f1113; /* Deep Anthracite */
    --bg-2: #171b1e; /* Dark Navy */
    --bg-surface: #202529; /* Charcoal Gray */
    --bg-surface-light: #2a3035;
    
    --primary: #00bccd; /* Cyan */
    --primary-hover: #00a4b3;
    --primary-glow: rgba(0, 188, 205, 0.2);
    
    --secondary: #00E676; /* Bright Green */
    
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dark: #6B7280;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(0, 188, 205, 0.3);

    /* Typography */
    --font-family: 'Inter', sans-serif;
    
    /* Spacing & Sizes */
    --container-max: 1200px;
    --section-py: 100px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-1);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   Utility Classes
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 800px; }
.mt-4 { margin-top: 1rem; }

.section-header {
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title.sm {
    font-size: 2rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 2px;
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(0, 188, 205, 0.05);
}

.icon-sm {
    width: 18px;
    height: 18px;
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--border-color);
    padding: 16px 0;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
}

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

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color var(--transition-fast);
}

.login-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* =========================================
   1. Hero Section
   ========================================= */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 188, 205, 0.15) 0%, rgba(15, 17, 19, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

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

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(0, 188, 205, 0.1);
    border: 1px solid rgba(0, 188, 205, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

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

/* Hero Visual & Abstract Network */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
}

.dashboard-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    height: 350px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 24px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background-color: #EF4444; }
.dot.yellow { background-color: #F59E0B; }
.dot.green { background-color: #10B981; }

.mockup-body {
    display: flex;
    flex: 1;
}

.sidebar {
    width: 80px;
    background-color: rgba(255,255,255,0.02);
    border-right: 1px solid var(--border-color);
}

.main-area {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.top-cards {
    display: flex;
    gap: 16px;
}

.card {
    flex: 1;
    height: 60px;
    background-color: var(--bg-surface-light);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.card.pulse::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: pulse-line 2s infinite;
}

@keyframes pulse-line {
    100% { left: 200%; }
}

.chart-area {
    flex: 1;
    background-color: var(--bg-surface-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    gap: 12px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.chart-bar.h-1 { height: 40%; }
.chart-bar.h-2 { height: 60%; }
.chart-bar.h-3 { height: 30%; }
.chart-bar.h-4 { height: 80%; }
.chart-bar.h-5 { height: 50%; }
.chart-bar.h-6 { height: 90%; }
.chart-bar.h-7 { height: 70%; }

.network-nodes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.node {
    position: absolute;
    width: 8px; height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
}

.node::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 30px; height: 30px;
    border: 1px solid rgba(0, 188, 205, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite ease-out;
}

.node.n1 { top: 20%; left: 10%; animation-delay: 0s; }
.node.n2 { top: 15%; right: 20%; animation-delay: 0.5s; }
.node.n3 { bottom: 20%; left: 20%; animation-delay: 1s; }
.node.n4 { bottom: 10%; right: 10%; animation-delay: 1.5s; }

@keyframes ripple {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 60px; height: 60px; opacity: 0; }
}


/* =========================================
   2. About Section
   ========================================= */
.about {
    padding: var(--section-py) 0;
    background-color: var(--bg-2);
}

/* =========================================
   3. Features Grid
   ========================================= */
.features {
    padding: var(--section-py) 0;
}

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

.feature-card {
    background-color: transparent;
    border: 1px solid rgba(0, 188, 205, 0.3);
    border-radius: 0 !important;
    padding: 32px;
    text-align: center;
    box-shadow: none !important;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 188, 205, 0.15);
}

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: rgba(0, 188, 205, 0.05);
    border: 1px solid rgba(0, 188, 205, 0.3);
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
}

.feature-icon-wrapper svg,
.feature-icon-wrapper i {
    width: 32px !important;
    height: 32px !important;
    stroke-width: 1.3px !important;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 500 !important;
    color: var(--primary) !important;
    text-align: center;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9375rem;
    text-align: center;
}

/* =========================================
   4. Target Audience
   ========================================= */
.target-audience {
    padding: var(--section-py) 0;
    background-color: var(--bg-2);
}

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

.audience-card {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-lg);
    background-color: var(--bg-1);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.audience-card:hover {
    border-color: var(--border-highlight);
}

.audience-card.highlight {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-1) 100%);
    border-color: rgba(0, 188, 205, 0.2);
}

.audience-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.audience-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.audience-desc {
    color: var(--text-muted);
}

/* =========================================
   5. Core Values
   ========================================= */
.core-values {
    padding: 60px 0;
    background-color: var(--bg-1);
    border-bottom: 1px solid var(--border-color);
}

.values-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.value-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background-color: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border: 1px solid rgba(0, 230, 118, 0.2);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.05);
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =========================================
   6. Success Story / Installation
   ========================================= */
.success-story {
    padding: var(--section-py) 0;
}

.success-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.benefits-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
}

.b-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    background-color: rgba(0, 188, 205, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.success-visual {
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mountain-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.peak {
    position: absolute;
    bottom: 0;
    border-bottom: solid var(--bg-surface);
    border-left: solid transparent;
    border-right: solid transparent;
    opacity: 0.8;
}

.peak.p1 {
    border-width: 0 150px 250px 150px;
    left: 10%;
    z-index: 1;
    border-bottom-color: var(--bg-surface-light);
}

.peak.p2 {
    border-width: 0 200px 350px 200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border-bottom-color: var(--bg-surface);
}

.peak.p3 {
    border-width: 0 100px 180px 100px;
    right: 15%;
    z-index: 3;
    border-bottom-color: #212530;
}

.flag {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, transparent 70%);
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

/* =========================================
   7. Contact / Lead Gen
   ========================================= */
.contact {
    padding: var(--section-py) 0;
    background-color: var(--bg-2);
}

.contact-box {
    display: flex;
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-form-side {
    flex: 3;
    padding: 48px;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background-color: var(--bg-1);
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

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

.contact-info-side {
    flex: 2;
    background: linear-gradient(135deg, rgba(0, 188, 205, 0.05) 0%, rgba(0, 230, 118, 0.05) 100%);
    padding: 48px;
    border-left: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.info-bg-pattern {
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
    position: relative;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    color: var(--primary);
    width: 24px; height: 24px;
    flex-shrink: 0;
}

.info-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-value {
    font-weight: 500;
    font-size: 1.0625rem;
    color: var(--text-main);
}

.info-value[href]:hover {
    color: var(--primary);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--bg-1);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 24px;
}

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

.brand-col .logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary);
    color: #000;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.875rem;
}

   Pricing Page Styles
   ========================================= */
.pricing-page-header { padding: 260px 0 60px; text-align: center; }

/* Pricing Controls Row Layout & Resets */
.pricing-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 100px;
    margin: 40px auto 30px;
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
}

.pricing-controls-row .persona-tabs,
.pricing-controls-row .pricing-toggle {
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    padding: 3px !important;
    border-radius: 100px !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 46px !important;
    box-sizing: border-box !important;
}

.pricing-controls-row .tab-btn,
.pricing-controls-row .toggle-btn {
    padding: 0 20px !important;
    height: 38px !important;
    line-height: 38px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    border-radius: 100px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--text-muted) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    transition: all var(--transition-fast) !important;
    box-sizing: border-box !important;
}

.pricing-controls-row .tab-btn:hover,
.pricing-controls-row .toggle-btn:hover {
    color: var(--text-main) !important;
}

.pricing-controls-row .tab-btn.active,
.pricing-controls-row .toggle-btn.active {
    background: var(--primary) !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 8px rgba(0, 188, 205, 0.3) !important;
}
.pricing-toggle { display: inline-flex; background: var(--bg-surface); padding: 4px; border-radius: var(--radius-full); margin: 30px auto; }
.toggle-btn { padding: 10px 24px; border-radius: var(--radius-full); cursor: pointer; color: var(--text-muted); font-weight: 500; transition: all var(--transition-fast); }
.toggle-btn.active { background: var(--primary); color: #ffffff; box-shadow: 0 4px 10px rgba(0,188,205,0.2); }

.persona-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px;
    border-radius: 50px;
    margin: 20px auto 40px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.tab-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
}
.tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}
.tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #00a4b3 100%);
    color: #ffffff;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 188, 205, 0.35);
}

.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 80px; }
.pricing-card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 0 !important; padding: 40px; text-align: center; position: relative; }
.pricing-card.popular { border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,188,205,0.1); transform: scale(1.05); z-index: 2; }
.popular-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--primary); color: #ffffff; font-size: 0.8rem; font-weight: 700; padding: 6px 20px; border-radius: var(--radius-full); text-align: center; line-height: 1.25; white-space: nowrap; }
.trial-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--secondary); color: #000; font-size: 0.8rem; font-weight: 700; padding: 6px 20px; border-radius: var(--radius-full); text-align: center; line-height: 1.25; white-space: nowrap; }
.card-title { font-size: 1.5rem; margin-bottom: 16px; color: var(--text-main); }
.card-price-wrap { display: flex; align-items: baseline; justify-content: center; margin-bottom: 8px; }
.card-price { font-size: 2.2rem; font-weight: 800; color: var(--text-main); white-space: nowrap; }
.card-period { font-size: 1rem; color: var(--text-muted); margin-left: 8px; }
.card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; margin-top: 12px; margin-bottom: 12px; min-height: 44px; display: flex; align-items: center; justify-content: center; padding: 0 10px; }
.card-btn { display: block; padding: 12px; border-radius: 50px !important; font-weight: 600; text-align: center; background: rgba(255,255,255,0.05); color: var(--text-main); transition: all 0.2s; margin-top: 16px; margin-bottom: 10px; }
.pricing-card.popular .card-btn { background: var(--primary); color: #ffffff; }
.card-btn:hover { background: rgba(255,255,255,0.1); }
.pricing-card.popular .card-btn:hover { background: var(--primary-hover); }

.pricing-table-wrapper { width: 100%; overflow-x: auto; background: var(--bg-surface); border-radius: 0 !important; border: 1px solid var(--border-color); }
.pricing-table { width: 100%; min-width: 800px; border-collapse: collapse; text-align: center; table-layout: fixed; }
.pricing-table th, .pricing-table td { padding: 16px; border-bottom: 1px solid var(--border-color); width: 20%; }
.pricing-table th.text-left { width: 40%; }
.pricing-table th { font-weight: 600; color: var(--text-main); background: rgba(0,0,0,0.2); }
.pricing-table .text-left { text-align: left; }
.pricing-table .category-row td { text-align: left; background: rgba(0,188,205,0.05); color: var(--primary); font-weight: 600; font-size: 0.9rem; padding: 12px 16px; }
.pricing-table td { color: var(--text-muted); font-size: 0.95rem; }
.pricing-table .highlight-col { background: rgba(255,255,255,0.02); border-left: 1px solid var(--border-color); border-right: 1px solid var(--border-color); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.btn-buy-addon { display: inline-flex; align-items: center; justify-content: center; background-color: rgba(0, 188, 205, 0.1); border: 1px solid rgba(0, 188, 205, 0.4); color: var(--primary); padding: 6px 14px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all var(--transition-fast); margin-top: 4px; font-family: inherit; }
.btn-buy-addon:hover { background-color: var(--primary); color: #ffffff; box-shadow: 0 4px 12px rgba(0, 188, 205, 0.2); }

/* Addon Modern UI Styles */
.addon-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
}

.addon-price-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
}

.addon-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 2px;
}

.btn-addon-outline {
    display: none !important;
    background-color: rgba(0, 188, 205, 0.08);
    border: 1px solid rgba(0, 188, 205, 0.35);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
    text-align: center;
}

.btn-addon-outline:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.ai-credits-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin-bottom: 4px;
}

.ai-credit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.775rem;
    color: var(--text-muted);
}

.ai-credit-item span:first-child {
    font-weight: 500;
}

.ai-credit-item span:last-child {
    color: var(--primary);
    font-weight: 700;
}


Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-container,
    .success-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        gap: 40px;
    }
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .header-actions .btn,
    .header-actions .login-link {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-surface);
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        flex-direction: column;
    }
    
    .contact-form-side,
    .contact-info-side {
        padding: 32px 24px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Custom Footer Styles */
.footer-custom {
    background-color: var(--bg-1);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}
.footer-top-custom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 24px;
    margin-bottom: 64px;
}
.footer-brand-row-custom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .footer-brand-row-custom {
        align-items: center;
        text-align: center;
    }
}
.footer-col-custom h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col-custom h4::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
}
.footer-col-custom ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col-custom ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col-custom ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-block;
    transition: background-color var(--transition-fast);
}
.footer-col-custom ul li:hover::before {
    background-color: var(--primary);
    box-shadow: 0 0 6px var(--primary);
}
.footer-col-custom ul a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}
.footer-col-custom ul a:hover {
    color: var(--text-main);
}
.chatbot-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}
.btn-chatbot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    background: rgba(0, 188, 205, 0.05);
    border: 1px solid rgba(0, 188, 205, 0.3);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 205, 0.15);
}
.btn-chatbot:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}
.footer-bottom-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-bottom-left a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}
.footer-bottom-left a:hover {
    color: var(--primary);
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-icon i,
.social-icon svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
}
.footer-bottom-center a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}
.footer-bottom-center a:hover {
    color: var(--primary);
}
.footer-bottom-right {
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .footer-top-custom {
        grid-template-columns: repeat(3, 1fr);
    }
    .chatbot-col {
        grid-column: span 3;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .footer-top-custom {
        grid-template-columns: repeat(2, 1fr);
    }
    .chatbot-col {
        grid-column: span 2;
    }
    .footer-bottom-custom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .footer-bottom-left {
        justify-content: center;
        width: 100%;
    }
    .footer-bottom-center {
        width: 100%;
    }
    .footer-bottom-right {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .footer-top-custom {
        grid-template-columns: 1fr;
    }
    .chatbot-col {
        grid-column: span 1;
    }
    .footer-bottom-left {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* Custom Palo Alto Style Navbar */
.header-custom-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 17, 19, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}
.header-custom-nav.scrolled {
    background-color: rgba(15, 17, 19, 0.95);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.main-nav-custom {
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-list-custom {
    display: flex;
    gap: 32px;
    height: 100%;
    align-items: center;
}
.nav-item-custom {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}
.nav-link-custom {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.nav-link-custom:hover {
    color: var(--text-main);
}
.nav-link-custom::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--primary);
    opacity: 0.7;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.nav-link-custom:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    width: 680px;
    background: rgba(23, 27, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.mega-menu-panel.cols-1 {
    width: 320px;
}
.nav-item-custom:hover .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu-content {
    display: flex;
    gap: 32px;
}
.mega-menu-section {
    flex: 1;
}
.mega-menu-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}
.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none !important;
}
.mega-menu-links li {
    padding: 0 !important;
}
.mega-menu-links li::before {
    display: none !important;
}
.mega-menu-links a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    text-decoration: none;
}
.mega-menu-links a:hover {
    background: rgba(255, 255, 255, 0.03);
}
.mega-menu-links a i,
.mega-menu-links a svg {
    width: 20px;
    height: 20px;
    color: var(--primary) !important;
    stroke: var(--primary) !important;
    margin-top: 2px;
}
.mega-menu-links a div span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 2px;
}
.mega-menu-links a div p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Actions in Navbar */
.header-actions-custom {
    display: flex;
    align-items: center;
    gap: 20px;
}
.btn-link-custom {
    display: none !important;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}
.btn-link-custom:hover {
    color: var(--text-main);
}
.btn-outline-custom {
    padding: 8px 18px;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.btn-outline-custom:hover {
    border-color: var(--primary);
    background: rgba(0, 188, 205, 0.05);
}
.btn-primary-custom {
    padding: 8px 20px;
    border-radius: 2px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all var(--transition-fast);
    text-decoration: none;
}
.btn-primary-custom:hover {
    background: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--primary-glow);
}
.mobile-menu-btn-custom {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .header-custom-nav {
        height: auto !important;
        padding: 12px 0 !important;
        box-sizing: border-box !important;
    }
    .nav-container {
        height: auto !important;
    }
    .main-nav-custom {
        display: none;
    }
    .btn-link-custom, .btn-outline-custom, .btn-primary-custom {
        display: none !important;
    }
    .mobile-menu-btn-custom {
        display: flex !important;
    }
    .main-nav-custom {
        display: none !important;
    }
    .nav-list-custom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        height: auto;
    }
    .nav-item-custom {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
    .nav-link-custom {
        width: 100%;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .mega-menu-panel {
        position: static;
        width: 100% !important;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none !important;
        box-shadow: none;
        padding: 12px 0 0 16px;
        background: transparent;
        border: none;
    }
    .nav-item-custom.active .mega-menu-panel {
        display: block;
    }
    .mega-menu-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Top Utility Bar Styles */
.top-bar-custom {
    background-color: rgba(10, 12, 14, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    height: 90px !important;
    display: flex;
    align-items: center;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.top-bar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2px 12px;
    height: 26px;
    width: 220px;
    transition: all 0.3s ease;
}
.top-bar-search:focus-within {
    border-color: var(--primary);
    background: rgba(0, 188, 205, 0.03);
    box-shadow: 0 0 10px rgba(0, 188, 205, 0.15);
    width: 280px;
}
.top-bar-search .search-icon {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: color 0.3s;
}
.top-bar-search:focus-within .search-icon {
    color: var(--primary);
}
.top-bar-search input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-size: 0.78rem;
    width: 100%;
    font-family: var(--font-family);
}
.top-bar-search input::placeholder {
    color: var(--text-dark);
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}
.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.2s;
    font-weight: 600;
    font-size: 0.78rem;
}
.lang-btn:hover {
    color: var(--text-main);
}
.lang-btn.active {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}
.lang-separator {
    color: rgba(255, 255, 255, 0.15);
    user-select: none;
}

@media (max-width: 1024px) {
    .top-bar-custom {
        display: none !important;
    }
}

/* Standardized Page Hero Header Styles across all pages */
.purchaser-hero-section {
    padding: 240px 0 100px;
    background: #171b1e;
    position: relative;
}
.purchaser-hero-section.nedir-hero,
.purchaser-hero-section.kimler-hero,
.purchaser-hero-section.neden-tedexxa-hero {
    min-height: 800px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px !important;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    box-sizing: border-box;
}
.purchaser-hero-section.nedir-hero {
    background-image: url('../images/tedexxa-nedir.jpg') !important;
    background-position: top;
}
.purchaser-hero-section.kimler-hero {
    background-image: url('../images/kimler-icin.jpg') !important;
    background-position: top;
}
.purchaser-hero-section.neden-tedexxa-hero {
    background-image: url('../images/neden-tedexxa.jpg') !important;
    background-position: top;
}
.purchaser-hero-section.nedir-hero::before,
.purchaser-hero-section.kimler-hero::before,
.purchaser-hero-section.neden-tedexxa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 17, 19, 0.6);
    z-index: 1;
}
.purchaser-hero-section.nedir-hero .container,
.purchaser-hero-section.kimler-hero .container,
.purchaser-hero-section.neden-tedexxa-hero .container {
    position: relative;
    z-index: 2;
}
@media (max-width: 992px) {
    .purchaser-hero-section.nedir-hero,
    .purchaser-hero-section.kimler-hero,
    .purchaser-hero-section.neden-tedexxa-hero {
        aspect-ratio: auto;
        min-height: 480px;
        padding: 140px 0 80px !important;
    }
}
@media (max-width: 768px) {
    .purchaser-hero-section.nedir-hero,
    .purchaser-hero-section.kimler-hero,
    .purchaser-hero-section.neden-tedexxa-hero {
        aspect-ratio: auto;
        min-height: 420px;
        padding: 120px 0 60px !important;
    }
}
.process-top-header {
    max-width: 800px;
}
.badge-cyan {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px !important; /* Doubled gap between badge and title */
}
.process-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}
.process-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Card Right Border and Slogan Styles */
.white-process-card {
    border-right: 6px solid var(--primary) !important;
}
.process-card-slogan {
    font-size: 0.88rem;
    color: #6c757d;
    margin-top: 4px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Shared Contact Component Styles */
.contact-section-wrapper {
    background-image: linear-gradient(rgba(15, 17, 19, 0.60), rgba(15, 17, 19, 0.70)), url('../images/iletisim-form.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 120px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
    .contact-section-wrapper {
        background-attachment: scroll;
    }
}
.contact-grid-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
    align-items: flex-start;
}
.contact-main-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #00bccd;
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.contact-sub-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 36px;
    line-height: 1.45;
    font-weight: 400;
}
.custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-field label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
}
.form-field input,
.form-field textarea {
    font-family: 'Inter', sans-serif !important;
    background-color: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 13px 16px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: #00bccd;
    box-shadow: 0 0 0 3px rgba(0, 188, 205, 0.25);
}
.form-checkbox-field {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.form-checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00bccd;
    cursor: pointer;
    border-radius: 3px;
}
.form-checkbox-field label {
    font-family: 'Inter', sans-serif;
    font-size: 0.83rem;
    color: #ffffff;
    font-weight: 400;
}
.kvkk-link {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-decoration: underline;
}
.kvkk-link:hover {
    color: #00bccd;
}
.btn-submit-cyan {
    font-family: 'Inter', sans-serif;
    background-color: #00bccd;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    padding: 13px 42px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.2s ease;
    margin-top: 6px;
}
.btn-submit-cyan:hover {
    background-color: #0098a6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 205, 0.4);
}

/* Right Side Contact Info */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 10px;
}
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.info-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.info-cyan-icon {
    width: 26px;
    height: 26px;
    color: #00bccd;
    stroke: #00bccd;
    flex-shrink: 0;
}
.phone-number-cyan {
    font-family: 'Inter', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #00bccd;
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.01em;
}
.phone-number-cyan:hover {
    color: #38bdf8;
}
.email-address-white {
    margin-left: 38px;
}
.email-address-white a {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
    text-decoration: none;
}
.email-address-white a:hover {
    color: #00bccd;
}
.location-title-cyan {
    font-family: 'Inter', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #00bccd;
    margin: 0;
}
.location-title-cyan a {
    color: #00bccd;
    text-decoration: none;
    transition: color 0.2s ease;
}
.location-title-cyan a:hover {
    color: #38bdf8;
}
.address-text-white {
    font-family: 'Inter', sans-serif;
    margin-left: 38px;
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
}
.address-text-white a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}
.address-text-white a:hover {
    color: #00bccd;
}

@media (max-width: 992px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .form-grid-row {
        grid-template-columns: 1fr;
    }
}

/* Solutions CTA 3-Card Section Component */
.solutions-cta-section {
    background-color: #f2f2f2;
    padding: 90px 0 100px;
    border-top: 1px solid #e0e0e0;
}
.solutions-cta-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 56px;
}
.solutions-cta-title {
    font-size: 2.1rem;
    font-weight: 600 !important; /* Thinner font weight */
    color: #111111;
    margin-top: 10px;
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.solutions-cta-title span {
    color: var(--primary);
}
.solutions-cta-desc {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.5;
}
.solutions-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.solutions-cta-card {
    background: transparent;
    border: 1px solid rgba(0, 188, 205, 0.3);
    border-radius: 0 !important;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.solutions-cta-card:hover {
    transform: translateY(-6px);
    border-color: #00bccd;
    box-shadow: 0 10px 30px rgba(0, 188, 205, 0.1);
}
.solutions-cta-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 188, 205, 0.05);
    border: 1px solid rgba(0, 188, 205, 0.3);
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bccd;
    margin: 0 auto 24px;
}
.solutions-cta-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: #00bccd;
    stroke-width: 1.3px !important;
}
.solutions-cta-card h3 {
    font-size: 1.35rem;
    font-weight: 500 !important;
    color: #00bccd !important;
    margin-bottom: 12px;
    text-align: center;
}
.solutions-cta-card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 28px;
    text-align: center;
}
.solutions-cta-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.btn-cta-detail {
    display: block;
    text-align: center;
    background: #00bccd;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 20px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-cta-detail:hover {
    background: #0098a6;
    color: #ffffff;
    transform: translateY(-1px);
}
.btn-cta-pricing {
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid #00bccd;
    color: #00bccd;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 11px 20px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-cta-pricing:hover {
    background: #00bccd;
    color: #ffffff;
}

@media (max-width: 992px) {
    .solutions-cta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =========================================
   Global Standardized Button Rules
   ========================================= */
button,
input[type="submit"],
input[type="button"],
.btn,
.btn-primary,
.btn-outline,
.btn-submit-cyan,
.btn-cta-detail,
.btn-cta-pricing,
.btn-buy-addon,
.btn-addon-outline,
.btn-chatbot {
    border-radius: 2px !important;
}

.btn-primary-custom,
.btn-outline-custom {
    border-radius: 50px !important;
}

/* Enforce white text for all turquoise background buttons */
.btn-primary,
.btn-primary-custom,
.btn-submit-cyan,
.btn-cta-detail,
.btn-buy-addon:hover,
button[class*="cyan"],
a[class*="cyan"] {
    color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary-custom:hover,
.btn-submit-cyan:hover,
.btn-cta-detail:hover {
    color: #ffffff !important;
}

/* Tooltip styles */
[data-tooltip] {
    position: relative;
}
[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}
[data-tooltip]:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Hide Premium Mobile Drawer by default on desktop */
.mobile-drawer {
    display: none !important;
}

/* Premium Mobile Drawer Styles */
@media (max-width: 1024px) {
    .mobile-drawer {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(10, 12, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .mobile-drawer.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: auto !important;
        padding: 12px 24px !important;
        border-bottom: 1px solid var(--border-color);
        box-sizing: border-box;
    }

    .mobile-drawer-logo {
        margin-left: -4px !important;
    }

    .mobile-drawer-logo img {
        height: 26px;
        width: auto;
        filter: brightness(1.25);
        display: block;
    }

    .mobile-drawer-close {
        background: transparent;
        border: none;
        color: var(--text-main);
        cursor: pointer;
        padding: 8px;
        margin-right: -8px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        box-sizing: border-box;
        transition: color 0.3s ease;
    }

    .mobile-drawer-close:hover {
        color: #ffffff;
    }

    .mobile-drawer-content {
        flex: 1;
        overflow-y: auto;
        padding: 24px;
        display: flex;
        flex-direction: column;
    }

    .mobile-drawer-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }

    .mobile-drawer-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-drawer-trigger, .mobile-drawer-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 16px 0;
        background: transparent;
        border: none;
        color: var(--text-main);
        font-size: 1.1rem;
        font-weight: 500;
        text-align: left;
        cursor: pointer;
        font-family: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mobile-drawer-trigger:hover, .mobile-drawer-link:hover {
        color: var(--primary);
    }

    .accordion-icon {
        width: 18px;
        height: 18px;
        color: var(--text-muted);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .mobile-drawer-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }

    .mobile-drawer-item.open .accordion-icon {
        transform: rotate(45deg);
        color: var(--primary);
    }

    .mobile-dropdown-section {
        display: flex;
        flex-direction: column;
        padding: 8px 0 16px 12px;
    }

    .mobile-section-title {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 12px;
        margin-top: 8px;
        display: block;
    }

    .mobile-dropdown-link {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 1rem;
        padding: 10px 0;
        font-weight: 500;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: block;
    }

    .mobile-dropdown-link:hover {
        color: #ffffff;
        padding-left: 6px;
    }

    .mobile-drawer-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: auto;
        padding-top: 20px;
        margin-bottom: 120px;
    }

    .mobile-drawer-actions-row {
        display: flex;
        gap: 12px;
        width: 100%;
    }
    .mobile-drawer-actions-row .mobile-action-btn {
        flex: 1;
    }

    .mobile-action-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        border-radius: 50px !important;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
    }

    .mobile-action-btn.btn-outline {
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-main);
    }

    .mobile-action-btn.btn-outline:hover {
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
    }

    .mobile-action-btn.btn-solid {
        background: var(--primary);
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0, 188, 205, 0.2);
    }

    .mobile-action-btn.btn-solid:hover {
        background: var(--primary-hover);
        box-shadow: 0 6px 16px rgba(0, 188, 205, 0.3);
    }

    .mobile-drawer-lang {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
    }

    .mobile-lang-btn {
        background: transparent;
        border: none;
        color: var(--text-muted);
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        transition: color 0.3s ease;
        padding: 4px 8px;
    }

    .mobile-lang-btn.active {
        color: var(--primary);
    }

    .mobile-lang-separator {
        color: rgba(255, 255, 255, 0.15);
        font-size: 0.9rem;
    }
}

/* Pricing Page Mobile/Tablet Enhancements */
@media (max-width: 768px) {
    .pricing-controls-row {
        flex-direction: column !important;
        gap: 16px !important;
        margin-bottom: 50px !important;
        padding: 0 !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .pricing-controls-row .persona-tabs {
        width: 100% !important;
        max-width: 320px !important;
        display: flex !important;
        justify-content: space-between !important;
        height: 46px !important;
    }
    
    .pricing-controls-row .persona-tabs .tab-btn {
        flex: 1 !important;
        padding: 0 !important;
        font-size: 0.8rem !important;
        justify-content: center !important;
        white-space: nowrap !important;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 16px;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .pricing-card {
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    /* Adjust exchange rate info position on mobile */
    #exchange-rate-info {
        margin-top: -35px !important;
        margin-bottom: 50px !important;
    }
    
    /* Sticky first column in pricing comparison table on mobile */
    .pricing-table-wrapper {
        overflow-x: auto;
        position: relative;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        min-width: 600px !important;
    }

    .pricing-table th.text-left,
    .pricing-table td.text-left {
        position: sticky;
        left: 0;
        z-index: 10;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
        width: 160px !important;
        min-width: 160px !important;
        max-width: 160px !important;
        font-size: 0.85rem !important;
        padding: 12px 10px !important;
        box-sizing: border-box;
    }
    
    .pricing-table th.text-left {
        background-color: #131619 !important;
    }
    
    .pricing-table td.text-left {
        background-color: #171b1e !important;
    }
    
    .pricing-table .category-row td {
        position: sticky;
        left: 0;
        z-index: 11;
        background-color: #152225 !important;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    }
    
    .ai-credit-item {
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        padding: 8px 6px !important;
        text-align: center !important;
    }
    
    .addon-price {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2px !important;
        text-align: center !important;
    }
    
    .addon-price-label {
        margin-left: 0 !important;
    }
}

