:root {
  --tc-theme-secondary-2: #FF4300 !important; /* global scope */
}

/* ── HERO GRID ARKA PLAN ── */
.hero-grid-bg {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

/* ── MANİFESTO CÜMLESİ ── */
.hero-manifesto {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.01em;
}

.hero-manifesto-dot {
    color: #FF4300;
    font-size: 10px;
    flex-shrink: 0;
}

.hero-manifesto-text {
    font-family: inherit;
    font-weight: 400;
}

/* ── ANA SLOGAN ── */
.hero-title {
    font-size: clamp(32px, 5vw, 55px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #ffffff;
}

/* Admin panelden gelen  veya  tagları serif italik turuncu */
.hero-title em,
.hero-title i {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    color: #FF4300;
}

/* ── AÇIKLAMA ── */
.hero-description {
    font-size: 16px;
    color: rgba(255,255,255,0.60);
    line-height: 1.7;
    max-width: 520px;
}

/* Açıklamadaki vurgular (web, mobil, otomasyon) */
.hero-description span,
.hero-description strong {
    color: #FF4300;
    font-weight: 500;
}

/* ── BİRİNCİL BUTON ── */
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF4300;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 22px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: background 150ms ease, transform 150ms ease;
}

.btn-primary-hero:hover {
    background: #E63A00;
    transform: translateY(-1px);
}

.btn-primary-hero:active {
    transform: scale(0.98);
}

.btn-primary-hero .btn-arrow {
    display: inline-block;
    transition: transform 150ms ease;
}

.btn-primary-hero:hover .btn-arrow {
    transform: translate(2px, -2px);
}

/* ── İKİNCİL BUTON ── */
.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 22px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: border-color 150ms ease, background 150ms ease;
}

.btn-secondary-hero:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.07);
}