/* ========================================
   HukukAI Marketing Site — Sayfa-spesifik stiller
   Design system: design-system.css (import edilir)
   ======================================== */
@import url('design-system.css');

/* ---- Container ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section ---- */
.section {
    padding: 40px 0;
}

.section-alt,
.section-dark {
    background: transparent;
}

/* ---- Section Card Wrapper ---- */
.section-card {
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-card-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.section-card-dark {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    color: var(--text-primary);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.section-card-dark .section-header h2 {
    color: var(--text-primary);
}

.section-card-dark .section-header p {
    color: var(--text-secondary);
}

.section-card-dark .stat-item p {
    color: var(--text-secondary);
}

.section-card-accent {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.section-card-warm {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-gold);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(212, 175, 55, 0.04),
        inset 0 1px 0 rgba(212, 175, 55, 0.06);
    position: relative;
    overflow: hidden;
}

/* ---- Section Badge ---- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.06);
    color: #F0DB93;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.06);
}

.section-card-dark .section-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border-color: rgba(212, 175, 55, 0.2);
}

.section-badge svg {
    width: 16px;
    height: 16px;
}

/* ---- Section Header ---- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar-custom.scrolled {
    box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    border-bottom-color: var(--border-gold);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--gold-primary);
}

.navbar-nav-custom {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.navbar-nav-custom a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}

.navbar-nav-custom a:hover {
    color: var(--text-primary);
}

.navbar-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.navbar-cta .btn-signin {
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    transition: color 0.2s;
}

.navbar-cta .btn-signin:hover {
    color: var(--text-primary);
}

.navbar-cta .btn-try {
    padding: 10px 24px;
    color: #161004;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 220, 140, 0.18);
    background: linear-gradient(
        135deg,
        #7A5A17 0%,
        #C9A227 22%,
        #F3D67A 48%,
        #B8891F 72%,
        #7A5A17 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(80, 50, 10, 0.18),
        0 4px 14px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(212, 175, 55, 0.14);
    transition: transform 0.18s ease, box-shadow 0.22s ease, filter 0.22s ease;
    animation: goldBreath 3s ease-in-out infinite;
}

.navbar-cta .btn-try:hover {
    animation: none;
}

.navbar-cta .btn-try::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -35%;
    width: 28%;
    height: 140%;
    transform: rotate(18deg);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 248, 220, 0.10) 35%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(255, 240, 180, 0.14) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    pointer-events: none;
}

.navbar-cta .btn-try:hover {
    color: #161004;
    transform: translateY(-1px) scale(1.02);
    filter: brightness(1.04) saturate(1.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(80, 50, 10, 0.22),
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(212, 175, 55, 0.22),
        0 0 24px rgba(212, 175, 55, 0.1);
}

.navbar-cta .btn-try:hover::before {
    animation: sheen 0.72s ease forwards;
}

/* Mobile hamburger */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: transparent;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes heroGlow {
    0%   { opacity: 0.7; transform: translateX(-50%) scale(1); }
    25%  { opacity: 0.9; transform: translateX(-35%) scale(1.05); }
    50%  { opacity: 1;   transform: translateX(-50%) scale(1.1); }
    75%  { opacity: 0.9; transform: translateX(-65%) scale(1.05); }
    100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 4px;
    margin-bottom: 32px;
}

.hero-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: none;
}

.hero-tab.active {
    color: #1A1405;
    border: 1px solid rgba(255, 220, 140, 0.18);
    background: linear-gradient(135deg, #9A751F, #D7B54A 55%, #B7841D);
    box-shadow:
        0 4px 14px rgba(212, 175, 55, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-mockup {
    position: relative;
    z-index: 1;
}

/* Hero App Preview */
.hero-app-preview {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-app-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-app-dots {
    display: flex;
    gap: 6px;
}

.hero-app-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.hero-app-dots span:first-child { background: #ff5f57; }
.hero-app-dots span:nth-child(2) { background: #ffbd2e; }
.hero-app-dots span:nth-child(3) { background: #28c840; }

.hero-app-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-chat-msg {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 90%;
}

.hero-chat-user {
    background: rgba(212, 175, 55, 0.15);
    color: var(--text-primary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.hero-chat-ai {
    background: rgba(34, 211, 238, 0.08);
    color: var(--text-primary);
    border-left: 3px solid var(--cyan-primary);
    border-bottom-left-radius: 4px;
}

.hero-chat-disclaimer {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
    padding-top: 4px;
}

/* Chat demo animation helpers */
.hero-chat-msg {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-chat-msg.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-chat-disclaimer {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-chat-disclaimer.visible {
    opacity: 1;
}

/* Typing indicator — 3 bouncing dots */
.hero-chat-thinking {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(34, 211, 238, 0.08);
    border-left: 3px solid var(--cyan-primary);
    border-bottom-left-radius: 4px;
    max-width: 90%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-chat-thinking.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-chat-thinking-label {
    font-size: 0.85rem;
    color: var(--cyan-primary);
    font-weight: 500;
}

.hero-chat-thinking-dots {
    display: flex;
    gap: 4px;
}

.hero-chat-thinking-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan-primary);
    opacity: 0.4;
    animation: thinkBounce 1.4s ease-in-out infinite;
}

.hero-chat-thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.hero-chat-thinking-dots span:nth-child(3) { animation-delay: 0.4s; }

/* thinkBounce & cursorBlink keyframes in design-system.css */

/* Typing cursor blink */
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--text-primary);
    margin-left: 1px;
    animation: cursorBlink 0.7s step-end infinite;
    vertical-align: text-bottom;
}

.hero-chat-ai .typing-cursor {
    background: var(--cyan-primary);
}

/* Trust Logos */
.trust-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-logos > span {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

.trust-logo-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.trust-logo-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
}

/* ========================================
   FEATURES — Bento-style cards
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.06),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-card-visual {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.features-right {
    display: grid;
    gap: 24px;
}

/* Mock file list */
.mock-file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s;
}

.mock-file-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.mock-file-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.mock-file-info { flex: 1; }

.mock-file-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mock-file-meta {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.mock-file-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.mock-badge-active { background: rgba(48, 209, 88, 0.15); color: #30d158; }
.mock-badge-pending { background: rgba(212, 175, 55, 0.15); color: var(--gold-primary); }
.mock-badge-done { background: rgba(34, 211, 238, 0.15); color: var(--cyan-primary); }

/* ========================================
   TARGET AUDIENCE
   ======================================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.audience-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.audience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.06),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.audience-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.audience-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    font-size: 1.25rem;
}

/* ========================================
   BENTO GRID — Advantages
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.06),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.bento-card-wide { grid-column: span 2; }
.bento-card-full { grid-column: 1 / -1; }

.bento-security-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bento-security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.bento-card-visual {
    margin-top: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 16px;
}

.bento-metric {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.how-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.how-step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.how-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.how-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   STATS
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.06),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.pricing-card.featured {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.08),
        0 0 80px rgba(212, 175, 55, 0.04),
        inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: #161004;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 220, 140, 0.18);
    background: linear-gradient(135deg, #9A751F, #D7B54A 55%, #B7841D);
    box-shadow:
        0 4px 14px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 16px 0 8px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: 700;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.04),
        inset 0 1px 0 rgba(212, 175, 55, 0.08);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ========================================
   APP DOWNLOAD
   ======================================== */
.app-download { text-align: center; }

.app-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(180deg, #181818, #121212);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.22s ease;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.app-badge:hover {
    border-color: rgba(34, 211, 238, 0.35);
    color: var(--text-primary);
    box-shadow:
        0 0 0 1px rgba(34, 211, 238, 0.18),
        0 0 18px rgba(34, 211, 238, 0.09);
}

.app-badge.coming-soon {
    opacity: 0.4;
    cursor: default;
}

/* ========================================
   USE CASES
   ======================================== */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.usecase-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.usecase-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.05);
}

.usecase-card-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.usecase-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================================
   FAQ — Accordion
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    font-family: var(--font-body);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--gold-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   CTA FOOTER
   ======================================== */
.cta-footer { text-align: center; }

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-badge-item svg {
    color: var(--gold-primary);
}

.cta-footer h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-footer p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: transparent;
    color: var(--text-secondary);
    padding: 0 0 40px;
}

.footer-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 60px 30px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-brand .logo-accent {
    color: var(--gold-primary);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
    color: var(--text-secondary);
}

.footer h4 {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }

.footer ul a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer ul a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.75rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { padding: 60px 40px; }
    .section-card { padding: 60px 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card-wide { grid-column: span 2; }
    .bento-card-full { grid-column: span 2; }
    .how-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .usecases-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 20px 0; }
    .hero { padding: 80px 0 20px; }
    .hero-card { padding: 40px 24px; border-radius: 20px; }
    .section-card { padding: 40px 24px; border-radius: 20px; }
    .hero h1 { font-size: 2.25rem; }
    .hero-cta { flex-direction: column; }
    .audience-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card-wide { grid-column: span 1; }
    .bento-card-full { grid-column: span 1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item h3 { font-size: 2.25rem; }
    .section-header h2 { font-size: 2rem; }
    .usecases-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-card { padding: 40px 24px 24px; border-radius: 20px; }

    /* Mobile nav */
    .navbar-nav-custom { display: none; }
    .navbar-toggle { display: block; }
    .navbar-cta .btn-signin { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .hero-tabs { flex-direction: column; }
    .trust-logos { justify-content: center; }
    .cta-badges { flex-direction: column; align-items: center; }
}

/* ========================================
   EXTRACTED INLINE STYLES
   ======================================== */

/* ---- Hero Section ---- */
.btn-outline-hero {
    border-color: var(--border);
    color: var(--text-primary);
}

.hero-chat-list {
    margin: 8px 0 0 16px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---- Features Section ---- */
.mock-icon-blue { background: rgba(34, 211, 238, 0.1); }
.mock-icon-pink { background: rgba(212, 175, 55, 0.1); }
.mock-icon-green { background: rgba(48, 209, 88, 0.1); }

.mock-chat-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-chat-bubble-user {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 12px 12px 12px 4px;
    font-size: 0.85rem;
    max-width: 85%;
}

.mock-chat-bubble-ai {
    background: var(--cyan-subtle);
    border-left: 2px solid var(--cyan-primary);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 12px 12px 4px 12px;
    font-size: 0.85rem;
    align-self: flex-end;
    max-width: 85%;
}

/* Feature Chat Demo — typing animation */
.mock-chat-bubble-user,
.mock-chat-bubble-ai {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mock-chat-bubble-user.visible,
.mock-chat-bubble-ai.visible {
    opacity: 1;
    transform: translateY(0);
}

.mock-chat-thinking {
    display: flex;
    gap: 4px;
    align-self: flex-end;
    padding: 10px 18px;
    background: var(--cyan-subtle);
    border-left: 2px solid var(--cyan-primary);
    border-radius: 12px 12px 4px 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.mock-chat-thinking.visible {
    opacity: 1;
    transform: translateY(0);
}
.mock-chat-thinking span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan-primary);
    animation: thinkBounce 1.2s ease-in-out infinite;
}
.mock-chat-thinking span:nth-child(2) { animation-delay: 0.15s; }
.mock-chat-thinking span:nth-child(3) { animation-delay: 0.3s; }

.mock-chat-disclaimer {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: right;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 2px;
}
.mock-chat-disclaimer.visible {
    opacity: 0.6;
}

.feature-card-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ---- Bento Grid: UYAP Sync Card ---- */
.bento-sync-grid {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bento-sync-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bento-sync-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.bento-sync-icon-success { color: var(--color-success); }
.bento-sync-icon-accent { color: var(--cyan-primary); }

/* ---- Bento Grid: Fast Analysis Card ---- */
.bento-pdf-progress {
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bento-pdf-icon {
    width: 36px;
    height: 36px;
    background: var(--cyan-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
}

.bento-pdf-info { flex: 1; }

.bento-pdf-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.bento-pdf-status {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ---- Bento Grid: 7/24 Chat Card ---- */
.bento-chat-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-chat-bubble-user {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 12px 12px 12px 4px;
    font-size: 0.85rem;
    max-width: 80%;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bento-chat-bubble-ai {
    background: var(--cyan-subtle);
    border-left: 2px solid var(--cyan-primary);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 12px 12px 4px 12px;
    font-size: 0.85rem;
    align-self: flex-end;
    max-width: 80%;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bento-chat-bubble-user.visible,
.bento-chat-bubble-ai.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bento thinking indicator */
.bento-chat-thinking {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--cyan-subtle);
    border-left: 2px solid var(--cyan-primary);
    border-radius: 12px 12px 4px 12px;
    align-self: flex-end;
    max-width: 80%;
    font-size: 0.8rem;
    color: var(--cyan-primary);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bento-chat-thinking.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-chat-thinking-dots {
    display: flex;
    gap: 3px;
}

.bento-chat-thinking-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan-primary);
    opacity: 0.4;
    animation: thinkBounce 1.4s ease-in-out infinite;
}

.bento-chat-thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.bento-chat-thinking-dots span:nth-child(3) { animation-delay: 0.4s; }

/* ---- Bento Grid: Cost Card ---- */
.bento-cost-chart {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    justify-content: center;
    padding: 8px 0;
}

.bento-cost-bar { text-align: center; }

.bento-cost-bar-tall {
    width: 40px;
    height: 100px;
    background: var(--border);
    border-radius: 6px 6px 0 0;
}

.bento-cost-bar-short {
    width: 40px;
    height: 20px;
    background: var(--gold-gradient);
    border-radius: 6px 6px 0 0;
}

.bento-cost-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 6px;
}

/* ---- Bento Grid: Prediction Card ---- */
.bento-prediction-grid {
    display: flex;
    gap: 24px;
    align-items: center;
}

.bento-prediction-col { flex: 1; }

.bento-progress-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.bento-progress-track {
    background: var(--border);
    border-radius: 8px;
    height: 12px;
    overflow: hidden;
}

.bento-progress-fill {
    background: var(--gold-gradient);
    height: 100%;
    width: 78%;
    border-radius: 8px;
}

.bento-progress-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.bento-progress-value {
    color: var(--gold-primary);
    font-weight: 700;
}

.bento-info-item {
    padding: 8px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.bento-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ---- How It Works Section ---- */
.app-preview-dark {
    background: var(--bg-primary);
    border: 1px solid var(--border);
}

.mock-tab-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.mock-tab {
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.8rem;
}

.mock-tab-active {
    padding: 8px 16px;
    color: #1A1405;
    border: 1px solid rgba(255, 220, 140, 0.18);
    background: linear-gradient(135deg, #9A751F, #D7B54A 55%, #B7841D);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow:
        0 2px 8px rgba(212, 175, 55, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mock-case-card {
    background: rgba(255,255,255,0.03);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 6px;
}

.mock-case-card:last-child { margin-bottom: 0; }

.mock-case-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.mock-case-meta {
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-top: 4px;
}

/* ---- Pricing Section ---- */
.pricing-price-free {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

.token-packages {
    text-align: center;
    margin-top: 48px;
}

.token-packages-label {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.token-packages-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.token-package-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.token-package-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.05);
}

.token-package-amount {
    font-weight: 700;
    color: var(--text-primary);
}

.token-package-price {
    color: var(--gold-primary);
    font-weight: 600;
}

/* ---- Privacy / Terms Pages ---- */
.section-page {
    padding-top: 140px;
}

.container-narrow {
    max-width: 800px;
}

.page-title {
    font-family: var(--font-heading);
    margin-bottom: 32px;
    color: var(--text-primary);
}

.text-muted-custom {
    color: var(--text-secondary);
}

/* ========================================
   PREMIUM EFFECTS — Gold Glow & Glass
   ======================================== */

/* Gold top glow beam + accent line on hero */
.hero-card > .hero-gold-beam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 120px;
    background: radial-gradient(ellipse at top center, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    animation: beamDrift 10s ease-in-out infinite;
}

@keyframes beamDrift {
    0%   { transform: translateX(-50%); }
    25%  { transform: translateX(-35%); }
    50%  { transform: translateX(-50%); }
    75%  { transform: translateX(-65%); }
    100% { transform: translateX(-50%); }
}

.hero-card > .hero-gold-beam::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Subtle gold separator line between sections */
.section-card-warm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    z-index: 2;
}

/* How-step number glow */
.how-step-number {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Audience icon glow */
.audience-card-icon {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
}

/* Featured pricing card gold beam */
.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse at top center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Section card inner ambient light */
.section-card-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Logo accent glow */
.logo-accent {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Hero h1 "AI" text glow */
.hero h1 span {
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.25));
}

/* ========================================
   IDLE ANIMATIONS — "nefes alan arayüz"
   Kural: yavaş, düşük kontrast, hissedilir ama fark edilmez
   ======================================== */

/* ---- IDLE #3: AI Pulse (keyframes in design-system.css) ---- */
.hero-chat-ai,
.hero-app-preview {
    animation: aiPulse 4s ease-in-out infinite;
}

/* AI pulse on the bento chat bubbles (staggered) */
.bento-chat-bubble-ai {
    animation: aiPulse 4s ease-in-out infinite;
    animation-delay: 0.8s;
}

.mock-chat-bubble-ai {
    animation: aiPulse 4s ease-in-out infinite;
    animation-delay: 1.6s;
}

/* Gold breathing on stat numbers (keyframes in design-system.css) */
.stat-item h3,
.bento-metric {
    animation: goldTextBreath 4s ease-in-out infinite;
}

/* Logo accent subtle breathing (keyframes in design-system.css) */
.logo-accent {
    animation: logoBreath 4s ease-in-out infinite;
}
