/* ===== PAGE HERO BASE ===== */
.page-hero {
    padding: 108px 0 72px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 20px;
}
.page-hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 40px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span[aria-current] { color: #0f172a; font-weight: 500; }

/* ===== HERO ===== */
.ab-hero {
    padding-bottom: 56px;
    text-align: left;
}
.ab-hero .breadcrumb { justify-content: flex-start; }
.ab-hero .page-hero-content { max-width: none; margin: 0; text-align: left; }
.ab-hero .page-hero-title { text-align: left; }
.ab-hero .page-hero-sub {
    max-width: 560px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    text-align: left;
}
.ab-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 56px;
    align-items: center;
}
.ab-hero-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Phone block */
.ab-big-phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 28px;
    background: rgba(245,158,11,0.07);
    border: 1.5px solid rgba(245,158,11,0.32);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(245,158,11,0.10);
    text-decoration: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ab-big-phone::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, transparent 60%);
    pointer-events: none;
}
@media (min-width: 641px) { .ab-big-phone { cursor: default; pointer-events: none; } }
@media (max-width: 640px) { .ab-big-phone:hover { transform: translateY(-2px); } }
.ab-phone-info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.ab-phone-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b45309;
}
.ab-phone-number {
    font-size: 1.55rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #92400e;
    line-height: 1;
    white-space: nowrap;
}
.ab-phone-hint { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }
.ab-phone-status {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 0.74rem;
    font-weight: 600;
    color: #b45309;
}
.ab-phone-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d97706;
    box-shadow: 0 0 0 0 rgba(217,119,6,0.5);
    animation: ab-pulse 2.2s ease infinite;
    flex-shrink: 0;
}
@keyframes ab-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(217,119,6,0.5); }
    65%  { box-shadow: 0 0 0 10px rgba(217,119,6,0); }
    100% { box-shadow: 0 0 0 0 rgba(217,119,6,0); }
}
.ab-hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}
.ab-hero-actions .btn-primary,
.ab-hero-actions .btn-ghost {
    min-height: 54px;
    justify-content: center;
}

/* ===== STORY ===== */
.ab-story-section { padding: 72px 0 56px; }
.ab-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.ab-story-text h2 { margin-bottom: 16px; }
.ab-story-text p {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 16px;
}
.ab-story-text p:last-child { margin-bottom: 0; }

/* Facts card */
.ab-facts {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ab-fact {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.ab-fact:last-child { padding-bottom: 0; border-bottom: none; }
.ab-fact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #0f766e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.ab-fact-text { display: flex; flex-direction: column; gap: 2px; }
.ab-fact-text strong { font-size: 0.92rem; font-weight: 700; color: #0f172a; }
.ab-fact-text span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.ab-fact-text a {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== VALUES ===== */
.ab-values-section { padding: 0 0 72px; }
.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

/* ===== CTA ===== */
.ab-cta-section { padding: 0 0 80px; }
.ab-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.ab-cta-text h2 {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.ab-cta-text p { color: var(--muted); font-size: 0.92rem; }
.ab-cta-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* ===== TABLET ===== */
@media (max-width: 900px) {
    .ab-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .ab-hero .breadcrumb { justify-content: center; }
    .ab-hero .page-hero-sub { max-width: 100%; }
    .ab-story-inner { grid-template-columns: 1fr; gap: 40px; }
    .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-cta-box { flex-direction: column; align-items: flex-start; padding: 32px 28px; }
}
@media (max-width: 560px) {
    .ab-values-grid { grid-template-columns: 1fr; }
    .ab-cta-actions { flex-direction: column; width: 100%; }
    .ab-cta-actions .btn-primary,
    .ab-cta-actions .btn-ghost { width: 100%; justify-content: center; }
    .ab-hero-actions { grid-template-columns: 1fr; }
}
