/* ========================
   CSS Variables & Reset
   ======================== */
:root {
    --bg-main: #0A0A0A;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --bg-section-alt: #060606;
    --green: #00E3AA;
    --green-bright: #00F5C0;
    --green-dark: #00B080;
    --red: #E53E3E;
    --red-dark: #CC2222;
    --text-primary: #FFFFFF;
    --text-secondary: #C0C0C0;
    --text-muted: #666666;
    --border: #1A1A1A;
    --border-light: #262626;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px; /* Base font size for mobile to prevent zoom */
}

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

/* ========================
   Navigation
   ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 56px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-brand-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
}

.nav-brand-sub {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
    padding-left: 36px;
}

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

.nav-links {
    display: flex;
    gap: 28px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.2s;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
    font-weight: 500;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

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

.nav-cta {
    background: var(--green);
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-cta:hover {
    background: var(--green-bright);
}

/* ========================
   Hero
   ======================== */
.hero {
    padding: 100px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb-active {
    color: var(--green);
    font-weight: 600;
    background: rgba(0, 212, 170, 0.1);
    padding: 2px 10px;
    border-radius: 4px;
}

.breadcrumb-arrow {
    color: var(--text-muted);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.green {
    color: var(--green);
}

.red {
    color: #e53e3e;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--green);
    color: #000;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    min-height: 44px;
    text-align: center;
}

.btn-primary:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
    min-height: 44px;
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.play-icon {
    font-size: 10px;
}

.btn-outline {
    display: inline-block;
    color: var(--green);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--green);
    transition: all 0.2s;
    cursor: pointer;
    background: transparent;
    text-align: center;
    min-height: 44px;
}

.btn-outline:hover {
    background: rgba(0, 212, 170, 0.1);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
}

/* ========================
   Call Simulator Widget
   ======================== */
.hero-widget {
    overflow: hidden;
    min-width: 0;
}

.call-simulator {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 16px;
}

.phone-frame {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-caller {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.phone-cost {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
}

.waveform-canvas {
    width: 100%;
    height: 60px;
    border-radius: 8px;
}

.phone-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.phone-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
}

.phone-btn:hover {
    transform: scale(1.1);
}

.phone-btn-end {
    background: var(--red);
}

.phone-btn-accept {
    background: var(--green);
}

.phone-timer {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

.terminal-frame {
    min-width: 0;
    background: #0C0C0C;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #141414;
    border-bottom: 1px solid var(--border);
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.terminal-body {
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.8;
    overflow: hidden;
}

.terminal-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    white-space: normal;
    word-break: break-word;
}

.msg-avatar {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    margin-top: 1px;
}

.terminal-prompt {
    color: var(--green);
    flex-shrink: 0;
}

.terminal-text {
    color: var(--green);
    opacity: 0.9;
}

.terminal-cursor {
    color: var(--green);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ========================
   Before/After Slider
   ======================== */
.ba-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    height: 440px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    user-select: none;
    touch-action: none;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.ba-before {
    left: 0;
    width: 50%;
    background: #080808;
}

.ba-after {
    right: 0;
    width: 50%;
    background: #080808;
}

.ba-panel {
    width: 700px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-panel-before {
    position: absolute;
    left: 0;
}

.ba-panel-after {
    position: absolute;
    right: 0;
}

.ba-label {
    position: absolute;
    top: 16px;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}

.ba-label-before {
    left: 16px;
    background: rgba(255, 59, 59, 0.15);
    color: var(--red);
    border: 1px solid rgba(255, 59, 59, 0.25);
}

.ba-label-after {
    right: 16px;
    background: rgba(0, 212, 170, 0.15);
    color: var(--green);
    border: 1px solid rgba(0, 212, 170, 0.25);
}

.ba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    cursor: ew-resize;
}

.ba-arrow-left,
.ba-arrow-right {
    font-size: 10px;
    color: #333;
    line-height: 1;
}

/* Phone frames */
.ba-phone-frame {
    width: 280px;
    border-radius: 24px;
    padding: 12px 16px 20px;
    position: relative;
}

.ba-phone-before {
    background: #000;
    border: 2px solid #2a2a2a;
    box-shadow: 0 0 0 1px #111, 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ba-phone-after {
    background: #000;
    border: 2px solid #2a2a2a;
    box-shadow: 0 0 0 1px #111, 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ba-notch {
    width: 90px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    margin: 0 auto 10px;
    border: 1px solid #1a1a1a;
    position: relative;
}

.ba-notch::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
}

/* Before screen */
.ba-screen-before {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ba-time-bar {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 2px;
}

.ba-battery {
    color: var(--red);
}

.ba-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
    padding: 4px 0;
}

.ba-app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    position: relative;
}

.ba-icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ba-icon-bg svg {
    display: block;
}

.ba-icon-telegram { background: linear-gradient(135deg, #37AEE2, #1E96C8); }
.ba-icon-slack { background: linear-gradient(135deg, #611f69, #4A154B); }
.ba-icon-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.ba-icon-imessage { background: linear-gradient(135deg, #5BF675, #34C759); }
.ba-icon-discord { background: linear-gradient(135deg, #7289DA, #5865F2); }
.ba-icon-email { background: linear-gradient(135deg, #FF6B6B, #1A8CFF); }

.ba-badge {
    position: absolute;
    top: -5px;
    right: 4px;
    background: #E53E3E;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #000;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.ba-app-name {
    font-size: 9px;
    color: var(--text-muted);
}

.ba-notif-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ba-notif-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ba-notif-card.ba-notif-faded {
    opacity: 0.5;
}

.ba-notif-app {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.ba-notif-msg {
    font-size: 11px;
    color: var(--text-secondary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ba-status-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 0;
}

.ba-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.ba-dot-red {
    background: var(--red);
    box-shadow: 0 0 6px rgba(255, 59, 59, 0.5);
}

.ba-dot-green {
    background: var(--green);
    box-shadow: 0 0 6px rgba(0, 212, 170, 0.5);
}

.ba-status-text {
    font-size: 11px;
    color: var(--text-muted);
}

/* After screen */
.ba-screen-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.ba-call-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ba-call-icon {
    font-size: 20px;
}

.ba-call-info {
    display: flex;
    flex-direction: column;
}

.ba-call-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

.ba-call-time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.ba-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
}

.ba-wave {
    width: 3px;
    background: var(--green);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.ba-wave:nth-child(1) { height: 12px; animation-delay: 0s; }
.ba-wave:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.ba-wave:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.ba-wave:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.ba-wave:nth-child(5) { height: 32px; animation-delay: 0.4s; }
.ba-wave:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.ba-wave:nth-child(7) { height: 28px; animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.ba-voice-bubble {
    font-size: 13px;
    font-style: italic;
    color: var(--text-primary);
    text-align: center;
    padding: 10px 14px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 12px;
    line-height: 1.5;
}

.ba-done-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ba-done-check {
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
}

.ba-done-text {
    font-size: 12px;
    color: var(--green);
    font-family: var(--font-mono);
}

/* ========================
   Sections Common
   ======================== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-section-alt);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.section-note {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 32px;
    line-height: 1.7;
    max-width: 700px;
}

/* ========================
   Architecture Diagram
   ======================== */
.architecture-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.arch-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px 28px;
    text-align: center;
    min-width: 160px;
    flex: 1;
    max-width: 200px;
}

.arch-box-highlight {
    border-color: var(--green);
    background: rgba(0, 212, 170, 0.05);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.1);
}

.arch-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.arch-label {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.arch-desc {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.arch-connector {
    display: flex;
    gap: 6px;
}

.arch-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: flowDot 1.5s infinite;
}

.arch-dot:nth-child(2) { animation-delay: 0.3s; }
.arch-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes flowDot {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* ========================
   Code Blocks
   ======================== */
.code-blocks {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
}

.code-block {
    background: #0C0C0C;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}

.code-block-title {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: #111111;
    border-bottom: 1px solid var(--border);
}

.code-content {
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.8;
    overflow: hidden;
}

.code-key { color: #7C8EF5; }
.code-string { color: var(--green); }
.code-number { color: #F5A623; }

/* ========================
   Features Grid
   ======================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.2s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 14px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.feature-code {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 10px;
    border-radius: 6px;
    overflow: hidden;
}

/* ========================
   Number Display
   ======================== */
.number-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 48px 0;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    flex-wrap: wrap;
}

.number-pin, .number-phone {
    text-align: center;
}

.number-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pin-value {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--green);
    text-shadow: 0 0 40px rgba(0, 212, 170, 0.3);
}

.phone-value {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

a.phone-value:hover {
    color: var(--green);
    text-shadow: 0 0 40px rgba(0, 212, 170, 0.3);
}

.number-divider {
    font-size: 32px;
    color: var(--text-muted);
    font-weight: 300;
}

.number-dialpad {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 28px auto 32px;
    flex-wrap: wrap;
}

.dialpad-key {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 64px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.dialpad-key small {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.dialpad-key:hover {
    border-color: var(--green);
    box-shadow: 0 0 12px rgba(0, 212, 170, 0.15);
}

.number-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.number-subnote {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================
   Pricing
   ======================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 32px 28px;
}

.pricing-card-pro {
    border-color: var(--green);
    background: rgba(0, 212, 170, 0.03);
}

.pricing-tier {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-period {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* ========================
   Quick Start Terminal
   ======================== */
.quickstart-terminal {
    background: #0C0C0C;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.quickstart-body {
    padding: 20px 24px;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 2;
    overflow: hidden;
}

.qs-prompt {
    color: var(--green);
}

.qs-cmd {
    color: var(--text-primary);
}

.qs-comment {
    color: var(--text-muted);
}

/* ========================
   Before/After Slider
   ======================== */
.ba-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    height: 440px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    user-select: none;
    touch-action: none;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.ba-before {
    left: 0;
    width: 50%;
    background: #080808;
}

.ba-after {
    right: 0;
    width: 50%;
    background: #080808;
}

.ba-panel {
    width: 700px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-panel-before {
    position: absolute;
    left: 0;
}

.ba-panel-after {
    position: absolute;
    right: 0;
}

.ba-label {
    position: absolute;
    top: 16px;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}

.ba-label-before {
    left: 16px;
    background: rgba(255, 59, 59, 0.15);
    color: var(--red);
    border: 1px solid rgba(255, 59, 59, 0.25);
}

.ba-label-after {
    right: 16px;
    background: rgba(0, 212, 170, 0.15);
    color: var(--green);
    border: 1px solid rgba(0, 212, 170, 0.25);
}

.ba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    cursor: ew-resize;
}

.ba-arrow-left,
.ba-arrow-right {
    font-size: 10px;
    color: #333;
    line-height: 1;
}

/* Phone frames */
.ba-phone-frame {
    width: 280px;
    border-radius: 24px;
    padding: 12px 16px 20px;
    position: relative;
}

.ba-phone-before {
    background: #000;
    border: 2px solid #2a2a2a;
    box-shadow: 0 0 0 1px #111, 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ba-phone-after {
    background: #000;
    border: 2px solid #2a2a2a;
    box-shadow: 0 0 0 1px #111, 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ba-notch {
    width: 90px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    margin: 0 auto 10px;
    border: 1px solid #1a1a1a;
    position: relative;
}

.ba-notch::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
}

/* Before screen */
.ba-screen-before {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ba-time-bar {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 2px;
}

.ba-battery {
    color: var(--red);
}

.ba-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
    padding: 4px 0;
}

.ba-app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    position: relative;
}

.ba-icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ba-icon-bg svg {
    display: block;
}

.ba-icon-telegram { background: linear-gradient(135deg, #37AEE2, #1E96C8); }
.ba-icon-slack { background: linear-gradient(135deg, #611f69, #4A154B); }
.ba-icon-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.ba-icon-imessage { background: linear-gradient(135deg, #5BF675, #34C759); }
.ba-icon-discord { background: linear-gradient(135deg, #7289DA, #5865F2); }
.ba-icon-email { background: linear-gradient(135deg, #FF6B6B, #1A8CFF); }

.ba-badge {
    position: absolute;
    top: -5px;
    right: 4px;
    background: #E53E3E;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #000;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.ba-app-name {
    font-size: 9px;
    color: var(--text-muted);
}

.ba-notif-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ba-notif-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ba-notif-card.ba-notif-faded {
    opacity: 0.5;
}

.ba-notif-app {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.ba-notif-msg {
    font-size: 11px;
    color: var(--text-secondary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ba-status-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 0;
}

.ba-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.ba-dot-red {
    background: var(--red);
    box-shadow: 0 0 6px rgba(255, 59, 59, 0.5);
}

.ba-dot-green {
    background: var(--green);
    box-shadow: 0 0 6px rgba(0, 212, 170, 0.5);
}

.ba-status-text {
    font-size: 11px;
    color: var(--text-muted);
}

/* After screen */
.ba-screen-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.ba-call-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ba-call-icon {
    font-size: 20px;
}

.ba-call-info {
    display: flex;
    flex-direction: column;
}

.ba-call-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

.ba-call-time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.ba-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
}

.ba-wave {
    width: 3px;
    background: var(--green);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.ba-wave:nth-child(1) { height: 12px; animation-delay: 0s; }
.ba-wave:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.ba-wave:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.ba-wave:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.ba-wave:nth-child(5) { height: 32px; animation-delay: 0.4s; }
.ba-wave:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.ba-wave:nth-child(7) { height: 28px; animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.ba-voice-bubble {
    font-size: 13px;
    font-style: italic;
    color: var(--text-primary);
    text-align: center;
    padding: 10px 14px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 12px;
    line-height: 1.5;
}

.ba-done-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ba-done-check {
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
}

.ba-done-text {
    font-size: 12px;
    color: var(--green);
    font-family: var(--font-mono);
}


   Use Cases Carousel
   ======================== */
.carousel-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.carousel-tab {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.carousel-tab:hover {
    border-color: var(--green);
    color: var(--text-primary);
}

.carousel-tab.active {
    background: var(--green);
    border-color: var(--green);
    color: #000;
}

.carousel-track {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    min-height: 480px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s, transform 0.35s;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.phone-mockup-carousel {
    background: #0D0D0D;
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 12px 16px 24px;
    position: relative;
    overflow: hidden;
}

.phone-notch {
    width: 120px;
    height: 6px;
    background: #222;
    border-radius: 3px;
    margin: 4px auto 16px;
}

.phone-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 4px 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.phone-caller {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

.phone-duration {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 4px;
}

.bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.bubble-user {
    align-self: flex-end;
    background: #1A1A1A;
    color: var(--text-primary);
    border-bottom-right-radius: 4px;
}

.bubble-bot {
    align-self: flex-start;
    background: rgba(0, 212, 170, 0.1);
    color: var(--green-bright);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-bottom-left-radius: 4px;
}

/* ========================
   FAQ
   ======================== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

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

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: color 0.2s;
    min-height: 60px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-question::after {
    content: '−';
    color: var(--green);
}

.faq-item[open] .faq-question {
    color: var(--green);
}

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

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding: 0 0 20px 0;
}

/* ========================
   Final CTA
   ======================== */
.section-cta {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(0, 212, 170, 0.03) 100%);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.cta-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.cta-powered-name {
    font-weight: 600;
    color: var(--green);
}

/* ========================
   Footer
   ======================== */
.footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
}

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

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-sub-powered {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    flex-wrap: wrap;
}

.footer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    min-height: 44px;
    display: flex;
    align-items: center;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-powered-label {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-powered-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================
   Scroll Animations
   ======================== */
.fade-in {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Registration Form Styles */
.registration-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.registration-form {
    margin-bottom: 2rem;
}

.form-step {
    display: block;
}

.form-step h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-color);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s;
    min-height: 44px;
}

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

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.verification-step {
    text-align: center;
    padding: 2rem 1rem;
}

.verification-step .step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.verification-step h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.verification-step p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.verification-status {
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.status-pending {
    color: var(--text-muted);
}

.status-success {
    color: var(--green);
    background: rgba(0, 227, 170, 0.1);
}

.status-error {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.phone-verification-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.success-step {
    background: rgba(0, 227, 170, 0.05);
    border: 1px solid rgba(0, 227, 170, 0.2);
    border-radius: 8px;
}

.api-key-display {
    margin: 2rem 0;
    text-align: left;
}

.api-key-display label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.api-key-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.api-key-value code {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--green);
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    min-width: 44px;
    min-height: 44px;
}

.copy-btn:hover {
    background: var(--border-color);
}

.next-steps {
    text-align: left;
    margin-top: 2rem;
}

.next-steps h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.error-message {
    padding: 1rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 6px;
    color: #ff4444;
    margin: 1rem 0;
}

.section-divider {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 3rem 0;
}

.alternative-flow {
    text-align: center;
    padding-top: 2rem;
}

.alternative-flow h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.alternative-flow p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.magic-link-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1rem;
    align-items: flex-end;
}

.magic-link-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.magic-link-status {
    min-height: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-spinner svg {
    animation: spin 1s linear infinite;
}

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

/* Installation Section */
.installation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.installation-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.2s ease;
    position: relative;
}

.installation-card:hover {
    border-color: var(--accent-muted);
    box-shadow: 0 4px 20px var(--shadow-subtle);
}

.installation-card-highlight {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--surface-elevated) 0%, rgba(229, 62, 62, 0.02) 100%);
}

.installation-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.installation-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.installation-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.code-block {
    background: var(--surface-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-family: var(--font-mono);
    overflow: hidden;
}

.code-block code {
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: pre;
}

.code-comment {
    color: var(--text-muted);
    opacity: 0.8;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 1rem 0;
}

.installation-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.installation-features {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.installation-features h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--surface-elevated);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.feature-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================
   MOBILE RESPONSIVE STYLES
   ======================== */

/* Large Tablets and Small Laptops */
@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

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

    .hero-title {
        font-size: 38px;
    }

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

    .architecture-diagram {
        flex-direction: column;
        gap: 20px;
    }

    .arch-connector {
        transform: rotate(90deg);
    }

    .code-blocks {
        grid-template-columns: 1fr;
    }

    .number-display {
        flex-direction: column;
        gap: 20px;
        padding: 32px;
    }

    .pin-value, .phone-value {
        font-size: 36px;
    }

    .section {
        padding: 60px 0;
    }

    .call-simulator {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Tablets */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Ensure minimum readable size */
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-container {
        padding: 0 16px;
        gap: 32px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .call-simulator {
        grid-template-columns: 1fr;
    }

    .terminal-body {
        font-size: 12px;
        padding: 12px;
    }

    .terminal-line {
        white-space: normal;
    }

    .phone-frame {
        padding: 16px;
    }

    .ba-slider {
        height: 380px;
        max-width: 100%;
    }

    .ba-phone-frame {
        width: 220px;
        padding: 8px 10px 14px;
    }

    .ba-panel {
        width: 100vw;
    }

    .ba-voice-bubble {
        font-size: 12px;
        padding: 8px 12px;
    }

    .ba-label {
        font-size: 10px;
        padding: 4px 8px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .architecture-diagram {
        gap: 16px;
    }

    .arch-box {
        min-width: 140px;
        padding: 18px 20px;
    }

    .arch-icon {
        font-size: 24px;
    }

    .code-content {
        font-size: 12px;
        padding: 12px;
    }

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

    .pricing-card {
        padding: 24px 20px;
    }

    .number-display {
        padding: 24px 16px;
        gap: 16px;
    }

    .pin-value, .phone-value {
        font-size: 32px;
    }

    .number-dialpad {
        gap: 8px;
    }

    .dialpad-key {
        width: 48px;
        height: 56px;
        font-size: 20px;
    }

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

    .cta-title {
        font-size: 36px;
    }

    .carousel-tabs {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }

    .carousel-tab {
        font-size: 13px;
        padding: 8px 16px;
        margin: 2px;
    }

    .carousel-track {
        min-height: 400px;
        max-width: 300px;
    }

    .footer-top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .installation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .installation-card {
        padding: 1.5rem;
    }

    .code-block {
        padding: 1rem;
    }

    .code-block code {
        font-size: 0.8rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 0;
    }
}

/* Large Phones */
@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .nav-brand-sub {
        display: none;
    }

    .ba-slider {
        height: 320px;
    }

    .ba-phone-frame {
        width: 180px;
        padding: 6px 8px 12px;
    }

    .ba-notch {
        width: 60px;
        height: 4px;
        margin-bottom: 6px;
    }

    .ba-time-bar {
        font-size: 9px;
    }

    .ba-app-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 6px;
    }

    .ba-icon-bg {
        width: 32px;
        height: 32px;
    }

    .ba-badge {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: -4px;
        right: 2px;
    }

    .ba-app-name {
        font-size: 8px;
    }

    .ba-voice-bubble {
        font-size: 10px;
        padding: 6px 10px;
    }

    .section {
        padding: 40px 0;
    }

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

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

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

    .cta-subtitle {
        font-size: 16px;
    }

    .phone-frame {
        padding: 12px;
    }

    .phone-caller {
        font-size: 16px;
    }

    .waveform-canvas {
        height: 50px;
    }

    .number-display {
        padding: 20px 12px;
    }

    .pin-value, .phone-value {
        font-size: 24px;
    }

    .quickstart-body {
        font-size: 12px;
        padding: 16px;
    }

    .carousel-track {
        max-width: 280px;
        min-height: 360px;
    }

    .registration-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .phone-verification-actions {
        flex-direction: column;
        align-items: center;
    }

    .magic-link-form {
        flex-direction: column;
        align-items: stretch;
    }

    .magic-link-form button {
        margin-top: 1rem;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .hero-container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .breadcrumb {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .nav-brand-top {
        font-size: 16px;
    }

    .logo-icon {
        font-size: 18px;
    }

    .btn-primary, .btn-secondary, .btn-outline {
        padding: 14px 20px;
        font-size: 14px;
    }

    .phone-frame {
        padding: 10px;
        border-radius: 12px;
    }

    .phone-caller {
        font-size: 14px;
    }

    .phone-cost {
        font-size: 12px;
    }

    .terminal-body {
        font-size: 11px;
        padding: 10px;
        line-height: 1.6;
    }

    .terminal-header {
        padding: 8px 10px;
    }

    .terminal-title {
        font-size: 10px;
    }

    .ba-slider {
        height: 280px;
        border-radius: 12px;
    }

    .ba-phone-frame {
        width: 140px;
        padding: 4px 6px 8px;
        border-radius: 16px;
    }

    .ba-notch {
        width: 40px;
        height: 3px;
        margin-bottom: 4px;
    }

    .ba-time-bar {
        font-size: 8px;
    }

    .ba-app-grid {
        gap: 6px 4px;
    }

    .ba-icon-bg {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

    .ba-badge {
        min-width: 14px;
        height: 14px;
        font-size: 8px;
    }

    .ba-app-name {
        font-size: 7px;
    }

    .ba-voice-bubble {
        font-size: 9px;
        padding: 5px 8px;
    }

    .ba-label {
        font-size: 9px;
        padding: 3px 6px;
    }

    .section {
        padding: 32px 0;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .feature-card {
        padding: 16px 12px;
    }

    .feature-icon {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .feature-code {
        font-size: 10px;
    }

    .arch-box {
        min-width: 120px;
        padding: 14px 16px;
    }

    .arch-icon {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .arch-label {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .arch-desc {
        font-size: 10px;
    }

    .code-content {
        font-size: 11px;
        padding: 10px;
    }

    .code-block-title {
        font-size: 11px;
        padding: 8px 12px;
    }

    .pricing-card {
        padding: 20px 16px;
    }

    .pricing-tier {
        font-size: 12px;
    }

    .pricing-price {
        font-size: 24px;
    }

    .number-display {
        padding: 16px 10px;
        flex-direction: column;
        gap: 12px;
    }

    .pin-value, .phone-value {
        font-size: 20px;
    }

    .number-dialpad {
        gap: 6px;
        justify-content: center;
    }

    .dialpad-key {
        width: 40px;
        height: 48px;
        font-size: 16px;
    }

    .dialpad-key small {
        font-size: 9px;
    }

    .number-note {
        font-size: 14px;
    }

    .number-subnote {
        font-size: 12px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .section-cta {
        padding: 60px 0;
    }

    .quickstart-terminal {
        border-radius: 8px;
    }

    .quickstart-body {
        font-size: 11px;
        padding: 12px;
        line-height: 1.8;
    }

    .carousel-tabs {
        gap: 4px;
    }

    .carousel-tab {
        font-size: 11px;
        padding: 6px 12px;
    }

    .carousel-track {
        max-width: 240px;
        min-height: 320px;
    }

    .phone-mockup-carousel {
        border-radius: 24px;
        padding: 8px 12px 16px;
    }

    .phone-notch {
        width: 80px;
        height: 4px;
        margin-bottom: 12px;
    }

    .phone-header-bar {
        padding: 6px 2px 12px;
        margin-bottom: 12px;
    }

    .phone-caller {
        font-size: 12px;
    }

    .phone-duration {
        font-size: 10px;
    }

    .bubble {
        font-size: 12px;
        padding: 8px 12px;
    }

    .footer {
        padding: 32px 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .footer-brand {
        font-size: 16px;
        justify-content: center;
        text-align: center;
    }

    .footer-tagline {
        text-align: center;
        max-width: 100%;
    }

    .footer-col {
        text-align: center;
    }

    .footer-bottom {
        padding-top: 16px;
    }

    .footer-powered-label {
        font-size: 11px;
    }

    .footer-powered-name {
        font-size: 12px;
    }

    .footer-copy {
        font-size: 11px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 0;
    }

    .faq-answer {
        font-size: 13px;
        padding-bottom: 16px;
    }

    .registration-container {
        padding: 1rem;
    }

    .form-group input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Touch Improvements for All Mobile Devices */
@media (max-width: 900px) {
    /* Ensure all interactive elements have proper touch targets */
    button, a, .phone-btn, .carousel-tab, .nav-links a, .faq-question {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better touch feedback */
    .btn-primary:active, .btn-secondary:active, .btn-outline:active {
        transform: translateY(1px);
    }
    
    .phone-btn:active {
        transform: scale(0.95);
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Better tap handling for iOS */
    a, button, input, textarea, select {
        -webkit-tap-highlight-color: rgba(0, 227, 170, 0.2);
    }
    
    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }
}
/* ========================
   Updated Navigation with Auth
   ======================== */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    padding: 8px 12px;
    border-radius: 6px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-login:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ========================
   Hero Phone CTA
   ======================== */
.hero-phone {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 24px;
    background: rgba(0, 227, 170, 0.05);
    border: 1px solid rgba(0, 227, 170, 0.15);
    border-radius: 12px;
    max-width: 300px;
}

.phone-cta-text {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.phone-number {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s;
}

.phone-number:hover {
    color: var(--green-bright);
}

/* ========================
   Fixed Before/After Comparison
   ======================== */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.comparison-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(229, 62, 62, 0.15);
    color: var(--red);
    border: 1px solid rgba(229, 62, 62, 0.25);
}

.comparison-after .comparison-label {
    background: rgba(0, 227, 170, 0.15);
    color: var(--green);
    border: 1px solid rgba(0, 227, 170, 0.25);
}

.comparison-phone {
    width: 280px;
    background: #000;
    border: 2px solid #2a2a2a;
    border-radius: 32px;
    padding: 12px 16px 24px;
    box-shadow: 0 0 0 1px #111, 0 8px 32px rgba(0, 0, 0, 0.5);
}

.phone-notch {
    width: 100px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
    margin: 4px auto 16px;
}

.phone-screen {
    min-height: 380px;
    background: #000;
    border-radius: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-bar {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 4px 0;
}

.battery-low {
    color: var(--red);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
    margin-bottom: 16px;
}

.app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.icon-bg.telegram { background: linear-gradient(135deg, #37AEE2, #1E96C8); }
.icon-bg.slack { background: linear-gradient(135deg, #611f69, #4A154B); }
.icon-bg.discord { background: linear-gradient(135deg, #7289DA, #5865F2); }
.icon-bg.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.icon-bg.email { background: linear-gradient(135deg, #FF6B6B, #1A8CFF); }
.icon-bg.imessage { background: linear-gradient(135deg, #5BF675, #34C759); }

.badge {
    position: absolute;
    top: -6px;
    right: -2px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #000;
}

.notification-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.notification {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.notif-app {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.notif-text {
    font-size: 11px;
    color: var(--text-secondary);
    display: block;
    line-height: 1.4;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.red {
    background: var(--red);
    box-shadow: 0 0 6px rgba(229, 62, 62, 0.5);
}

.status-dot.green {
    background: var(--green);
    box-shadow: 0 0 6px rgba(0, 227, 170, 0.5);
}

.status-text {
    font-size: 11px;
    color: var(--text-muted);
}

.comparison-divider {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Call screen styles */
.call-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 20px 8px;
}

.call-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.call-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.call-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

.call-time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
}

.wave {
    width: 3px;
    background: var(--green);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave:nth-child(1) { height: 12px; animation-delay: 0s; }
.wave:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.wave:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.wave:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.wave:nth-child(5) { height: 32px; animation-delay: 0.4s; }
.wave:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.wave:nth-child(7) { height: 28px; animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.voice-bubble {
    font-size: 13px;
    font-style: italic;
    color: var(--text-primary);
    text-align: center;
    padding: 12px 16px;
    background: rgba(0, 227, 170, 0.08);
    border: 1px solid rgba(0, 227, 170, 0.15);
    border-radius: 12px;
    line-height: 1.5;
    max-width: 200px;
}

.done-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.done-text {
    font-size: 12px;
    color: var(--green);
    font-family: var(--font-mono);
}

/* ========================
   Updated Pricing with Pro Tier
   ======================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card-pro {
    border-color: var(--green);
    background: rgba(0, 227, 170, 0.03);
    position: relative;
    transform: scale(1.05);
}

.recommended-badge {
    font-size: 11px;
    color: var(--green);
    background: rgba(0, 227, 170, 0.15);
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 500;
}

/* ========================
   Skill Install Section
   ======================== */
.skill-install-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.install-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.2s;
}

.install-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.install-card-highlight {
    border-color: var(--green);
    background: rgba(0, 227, 170, 0.03);
}

.install-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 227, 170, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--green);
}

.install-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.setup-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.install-note {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
}

.skill-features {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.skill-features h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.skill-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.skill-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.skill-feature .feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* ========================
   Updated CTA Section
   ======================== */
.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: rgba(0, 227, 170, 0.05);
    border: 1px solid rgba(0, 227, 170, 0.15);
    border-radius: 12px;
}

.cta-phone span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-phone-number {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-phone-number:hover {
    color: var(--green-bright);
}

/* ========================
   Auth Pages
   ======================== */
/* ========================
   Premium Auth Pages
   ======================== */

/* Auth Body - Dark background */
.auth-body {
    background-color: #0A0A0A;
    margin: 0;
    padding: 0;
    font-family: var(--font-text, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main auth container */
.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
}

/* Auth card - centered premium card */
.auth-card {
    background-color: #111111;
    border: 1px solid #232323;
    border-radius: 12px;
    padding: 48px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* Logo section */
.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
}

.auth-logo svg {
    flex-shrink: 0;
}

/* Auth header */
.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    letter-spacing: -0.5px;
}

.auth-header p {
    font-size: 16px;
    color: #a1a1aa;
    margin: 0;
    line-height: 1.5;
}

/* Google OAuth Button */
.btn-oauth {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-bottom: 24px;
    min-height: 48px;
}

.btn-oauth:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-oauth:active {
    transform: translateY(1px);
}

.btn-oauth svg {
    flex-shrink: 0;
}

/* Divider */
.auth-divider {
    position: relative;
    margin: 24px 0;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #323232;
}

.auth-divider span {
    background: #111111;
    color: #6b7280;
    padding: 0 16px;
    font-size: 14px;
    position: relative;
    font-weight: 500;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #f3f4f6;
    line-height: 1.5;
}

/* Input fields */
.form-group input {
    background: #1a1a1a;
    border: 1px solid #323232;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.15s ease;
    min-height: 48px;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #6b7280;
}

.form-group input:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-group input:hover {
    border-color: #404040;
}

/* Form extras (remember me, forgot password) */
.form-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -8px 0 8px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #d1d5db;
}

.checkbox-label input[type="checkbox"] {
    min-height: auto;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #00d4aa;
}

.forgot-link {
    font-size: 14px;
    color: #00d4aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

.forgot-link:hover {
    color: #00c49e;
}

/* Primary button */
.btn-primary {
    width: 100%;
    background: #e53e3e;
    border: 1px solid #e53e3e;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.15s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 2px 4px 0 rgba(229, 62, 62, 0.3);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-spinner {
    animation: spin 1s linear infinite;
}

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

/* Auth footer links */
.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #232323;
}

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

.auth-footer a {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

.auth-footer a:hover {
    color: #00c49e;
}

/* Page footer */
.auth-page-footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #232323;
}

.auth-page-footer p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .auth-main {
        padding: 20px 16px;
        min-height: calc(100vh - 60px);
    }
    
    .auth-card {
        padding: 32px 24px;
        border-radius: 8px;
        border: none;
        box-shadow: none;
        background: #111111;
    }
    
    .auth-header h1 {
        font-size: 24px;
    }
    
    .auth-header p {
        font-size: 15px;
    }
    
    .auth-logo a {
        font-size: 20px;
    }
    
    .auth-logo svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 360px) {
    .auth-card {
        padding: 24px 20px;
    }
    
    .form-extras {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
