/*
Theme Name: БЦ ЗЭТА
Theme URI: https://zta.cc
Author: БЦ ЗЭТА
Description: Официальный сайт бизнес-центра ЗЭТА — премиальные офисные помещения в центре Кемерово.
Version: 1.0.0
Text Domain: zta-astafev
*/

/* =========================================
   DESIGN SYSTEM — CSS Custom Properties
   ========================================= */

:root {
    /* Core palette */
    --za-navy: #0c1222;
    --za-navy-light: #131b2e;
    --za-navy-mid: #1a2540;
    --za-navy-dark: #080e1a;
    --za-gold: #c9a84c;
    --za-gold-light: #dbc278;
    --za-gold-dark: #a88b3a;
    --za-white: #ffffff;
    --za-blue: #2563eb;
    --za-blue-light: #3b82f6;

    /* Neutrals */
    --za-gray-50: #f8f9fb;
    --za-gray-100: #eef0f4;
    --za-gray-200: #dde1e9;
    --za-gray-300: #bcc2d0;
    --za-gray-400: #8b93a7;
    --za-gray-500: #64708d;
    --za-gray-600: #475069;
    --za-gray-700: #2e3650;

    /* Functional */
    --za-text-on-dark: #e2e5ed;
    --za-text-muted: #8b93a7;

    /* Gradients */
    --za-gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e8d48b 50%, #c9a84c 100%);
    --za-gradient-hero: radial-gradient(ellipse at 30% 0%, rgba(37,99,235,0.12) 0%, transparent 60%),
                        radial-gradient(ellipse at 70% 100%, rgba(201,168,76,0.08) 0%, transparent 50%),
                        linear-gradient(180deg, #0c1222 0%, #131b2e 100%);
    --za-gradient-card: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);

    /* Typography */
    --za-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --za-section-py: clamp(64px, 10vw, 120px);
    --za-container-px: clamp(20px, 5vw, 40px);

    /* Effects */
    --za-glass-border: rgba(255, 255, 255, 0.07);
    --za-glass-border-hover: rgba(201, 168, 76, 0.25);
    --za-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    --za-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --za-shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.2);
    --za-radius: 16px;
    --za-radius-sm: 10px;
    --za-radius-xs: 6px;
    --za-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--za-font);
    font-weight: 400;
    line-height: 1.65;
    color: var(--za-text-on-dark);
    background: var(--za-navy);
    overflow-x: hidden;
}

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

a {
    color: var(--za-gold);
    text-decoration: none;
    transition: color var(--za-transition);
}
a:hover { color: var(--za-gold-light); }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--za-white);
}

/* =========================================
   LAYOUT
   ========================================= */

.za-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--za-container-px);
}

.za-section {
    padding: var(--za-section-py) 0;
    position: relative;
}

/* =========================================
   NAVIGATION
   ========================================= */

.za-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--za-transition);
    background: transparent;
}

.za-nav--scrolled {
    background: rgba(12, 18, 34, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(201,168,76,0.1), 0 8px 30px rgba(0,0,0,0.3);
}

.za-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--za-container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.za-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.za-nav__logo-icon {
    width: 36px;
    height: 36px;
    color: var(--za-gold);
}

.za-nav__logo-icon svg {
    width: 100%;
    height: 100%;
}

.za-nav__logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--za-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.za-nav__menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.za-nav__menu li a {
    color: var(--za-gray-300);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--za-transition);
    position: relative;
    padding: 4px 0;
}

.za-nav__menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--za-gold);
    transition: width var(--za-transition);
    border-radius: 1px;
}

.za-nav__menu li a:hover,
.za-nav__menu li.current-menu-item a,
.za-nav__menu li.current_page_item a {
    color: var(--za-gold);
}

.za-nav__menu li a:hover::after,
.za-nav__menu li.current-menu-item a::after,
.za-nav__menu li.current_page_item a::after {
    width: 100%;
}

/* Burger */
.za-nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.za-nav__burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--za-white);
    transition: all var(--za-transition);
    border-radius: 2px;
}

.za-nav__burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.za-nav__burger--active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.za-nav__burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile overlay */
.za-nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--za-transition);
}
.za-nav__overlay--visible {
    display: block;
    opacity: 1;
}

/* =========================================
   HERO SECTION
   ========================================= */

.za-hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--za-gradient-hero);
}

/* Animated grid background */
.za-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating particles */
.za-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.za-hero__particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: za-float 8s infinite ease-in-out;
}

.za-hero__particle--gold {
    width: 3px;
    height: 3px;
    background: var(--za-gold);
}

.za-hero__particle--blue {
    width: 2px;
    height: 2px;
    background: var(--za-blue-light);
}

.za-hero__particle:nth-child(1)  { left: 8%;  top: 15%; animation-delay: 0s;   animation-duration: 7s; }
.za-hero__particle:nth-child(2)  { left: 22%; top: 55%; animation-delay: 1.2s; animation-duration: 6s; }
.za-hero__particle:nth-child(3)  { left: 38%; top: 25%; animation-delay: 2.4s; animation-duration: 9s; }
.za-hero__particle:nth-child(4)  { left: 52%; top: 65%; animation-delay: 0.6s; animation-duration: 7s; }
.za-hero__particle:nth-child(5)  { left: 68%; top: 20%; animation-delay: 3.1s; animation-duration: 8s; }
.za-hero__particle:nth-child(6)  { left: 78%; top: 50%; animation-delay: 1.8s; animation-duration: 6s; }
.za-hero__particle:nth-child(7)  { left: 88%; top: 35%; animation-delay: 2.8s; animation-duration: 7s; }
.za-hero__particle:nth-child(8)  { left: 45%; top: 80%; animation-delay: 4.0s; animation-duration: 9s; }
.za-hero__particle:nth-child(9)  { left: 15%; top: 75%; animation-delay: 0.9s; animation-duration: 6s; }
.za-hero__particle:nth-child(10) { left: 92%; top: 72%; animation-delay: 3.5s; animation-duration: 8s; }
.za-hero__particle:nth-child(11) { left: 60%; top: 10%; animation-delay: 2.0s; animation-duration: 7s; }
.za-hero__particle:nth-child(12) { left: 32%; top: 42%; animation-delay: 4.5s; animation-duration: 6s; }

@keyframes za-float {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.8); }
    20% { opacity: 0.7; }
    50% { opacity: 1; transform: translateY(-50px) scale(1.3); }
    80% { opacity: 0.5; }
}

/* Building silhouette */
.za-hero__skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    opacity: 0.05;
}

.za-hero__skyline svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hero content */
.za-hero__content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 var(--za-container-px);
}

.za-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--za-gold);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: za-fade-up 0.7s 0.2s forwards;
}

.za-hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--za-gold);
    border-radius: 50%;
    animation: za-pulse-dot 2s infinite;
}

@keyframes za-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.za-hero__title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--za-white);
    margin-bottom: 8px;
    letter-spacing: -1px;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(30px);
    animation: za-fade-up 0.8s 0.4s forwards;
}

.za-hero__title-accent {
    display: inline-block;
    background: var(--za-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.za-hero__subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: var(--za-gray-400);
    margin-bottom: 44px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: za-fade-up 0.8s 0.6s forwards;
}

.za-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: za-fade-up 0.8s 0.8s forwards;
}

.za-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    font-family: var(--za-font);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--za-transition);
    text-decoration: none;
    border: none;
}

.za-btn--primary {
    background: var(--za-gold);
    color: var(--za-navy);
}
.za-btn--primary:hover {
    background: var(--za-gold-light);
    color: var(--za-navy);
    box-shadow: var(--za-shadow-gold);
    transform: translateY(-2px);
}

.za-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--za-white);
}
.za-btn--outline:hover {
    border-color: var(--za-gold);
    color: var(--za-gold);
    transform: translateY(-2px);
}

.za-btn svg {
    width: 16px;
    height: 16px;
}

/* Scroll indicator */
.za-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: za-fade-up 0.7s 1.2s forwards;
}

.za-hero__scroll-text {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--za-gray-500);
}

.za-hero__scroll-line {
    width: 1px;
    height: 36px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}

.za-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--za-gold);
    animation: za-scroll-move 2s infinite;
}

@keyframes za-scroll-move {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes za-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   STATS BAR (between hero and about)
   ========================================= */

.za-stats-bar {
    background: var(--za-navy-dark);
    border-top: 1px solid var(--za-glass-border);
    border-bottom: 1px solid var(--za-glass-border);
    padding: 40px 0;
    position: relative;
}

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

.za-stat {
    text-align: center;
    position: relative;
}

.za-stat + .za-stat::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--za-glass-border);
}

.za-stat__number {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    background: var(--za-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.za-stat__label {
    font-size: 0.8rem;
    color: var(--za-gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 6px;
}

/* =========================================
   ABOUT / INTRO SECTION
   ========================================= */

.za-about {
    background: var(--za-navy-light);
}

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

.za-section__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--za-gold);
    margin-bottom: 16px;
}

.za-section__label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--za-gold);
    border-radius: 1px;
}

.za-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--za-white);
    line-height: 1.15;
}

.za-about__text {
    font-size: 1.05rem;
    color: var(--za-gray-400);
    line-height: 1.85;
}

.za-about__text p + p {
    margin-top: 16px;
}

.za-about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.za-highlight {
    padding: 24px;
    background: var(--za-gradient-card);
    border: 1px solid var(--za-glass-border);
    border-radius: var(--za-radius-sm);
    transition: all var(--za-transition);
}

.za-highlight:hover {
    border-color: var(--za-glass-border-hover);
    transform: translateY(-3px);
}

.za-highlight__icon {
    width: 36px;
    height: 36px;
    color: var(--za-gold);
    margin-bottom: 12px;
}

.za-highlight__icon svg {
    width: 100%;
    height: 100%;
}

.za-highlight__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.za-highlight__text {
    font-size: 0.85rem;
    color: var(--za-gray-500);
    line-height: 1.5;
}

/* =========================================
   FEATURES / ADVANTAGES SECTION
   ========================================= */

.za-features {
    background: var(--za-navy);
}

.za-features__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.za-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.za-fcard {
    padding: 36px 28px;
    background: var(--za-gradient-card);
    border: 1px solid var(--za-glass-border);
    border-radius: var(--za-radius);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.za-fcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--za-gradient-gold);
    opacity: 0;
    transition: opacity var(--za-transition);
}

.za-fcard:hover {
    border-color: var(--za-glass-border-hover);
    transform: translateY(-6px);
    box-shadow: var(--za-shadow);
}

.za-fcard:hover::before {
    opacity: 1;
}

.za-fcard__icon {
    width: 44px;
    height: 44px;
    color: var(--za-gold);
    margin-bottom: 20px;
}

.za-fcard__icon svg {
    width: 100%;
    height: 100%;
}

.za-fcard__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.za-fcard__text {
    font-size: 0.9rem;
    color: var(--za-gray-400);
    line-height: 1.7;
}

.za-fcard__list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.za-fcard__list li {
    font-size: 0.85rem;
    color: var(--za-gray-400);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.za-fcard__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--za-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* =========================================
   LOCATION / MAP SECTION
   ========================================= */

.za-location {
    background: var(--za-navy-dark);
    position: relative;
}

.za-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--za-gold), transparent);
    opacity: 0.15;
}

.za-location__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
}

.za-location__text {
    font-size: 1.05rem;
    color: var(--za-gray-400);
    line-height: 1.85;
}

.za-location__text p + p {
    margin-top: 16px;
}

.za-location__address {
    margin-top: 28px;
    padding: 20px 24px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--za-radius-sm);
    display: flex;
    align-items: center;
    gap: 14px;
}

.za-location__address-icon {
    width: 24px;
    height: 24px;
    color: var(--za-gold);
    flex-shrink: 0;
}

.za-location__address-icon svg {
    width: 100%;
    height: 100%;
}

.za-location__address-text {
    color: var(--za-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.za-location__map {
    border-radius: var(--za-radius);
    overflow: hidden;
    border: 1px solid var(--za-glass-border);
    aspect-ratio: 16/11;
    box-shadow: var(--za-shadow);
}

.za-location__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =========================================
   DOCUMENTS SECTION (homepage mini)
   ========================================= */

.za-docs-section {
    background: var(--za-navy-light);
}

.za-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.za-doc-card {
    background: var(--za-gradient-card);
    border: 1px solid var(--za-glass-border);
    border-radius: var(--za-radius);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--za-transition);
    text-decoration: none;
    color: inherit;
}

.za-doc-card:hover {
    border-color: var(--za-glass-border-hover);
    transform: translateY(-3px);
    box-shadow: var(--za-shadow-gold);
    color: inherit;
}

.za-doc-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--za-gold);
}

.za-doc-card__icon svg {
    width: 100%;
    height: 100%;
}

.za-doc-card__info {
    flex: 1;
    min-width: 0;
}

.za-doc-card__title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--za-white);
    margin-bottom: 4px;
    line-height: 1.3;
}

.za-doc-card__format {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--za-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =========================================
   CTA SECTION
   ========================================= */

.za-cta {
    background: var(--za-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.za-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--za-gold), transparent);
    opacity: 0.2;
}

.za-cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.za-cta__content {
    position: relative;
    z-index: 1;
}

.za-cta__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.za-cta__subtitle {
    font-size: 1.05rem;
    color: var(--za-gray-400);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.za-cta__contacts {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.za-cta__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--za-gray-300);
    font-size: 1.05rem;
    text-decoration: none;
    transition: color var(--za-transition);
}

.za-cta__item:hover {
    color: var(--za-gold);
}

.za-cta__item-icon {
    width: 20px;
    height: 20px;
    color: var(--za-gold);
}

.za-cta__item-icon svg {
    width: 100%;
    height: 100%;
}

/* =========================================
   FOOTER
   ========================================= */

.za-footer {
    background: var(--za-navy-dark);
    padding: 56px 0 28px;
    border-top: 1px solid var(--za-glass-border);
}

.za-footer__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}

.za-footer__logo {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--za-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.za-footer__tagline {
    color: var(--za-gray-600);
    font-size: 0.85rem;
    margin-top: 8px;
}

.za-footer__links {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.za-footer__links a {
    color: var(--za-gray-400);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--za-transition);
}

.za-footer__links a:hover {
    color: var(--za-gold);
}

.za-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.za-footer__contact a {
    color: var(--za-gray-400);
    font-size: 0.88rem;
    transition: color var(--za-transition);
}

.za-footer__contact a:hover {
    color: var(--za-gold);
}

.za-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--za-glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.za-footer__bottom p {
    color: var(--za-gray-600);
    font-size: 0.78rem;
}

.za-footer__bottom a {
    color: var(--za-gray-600);
    font-size: 0.78rem;
    transition: color var(--za-transition);
}

.za-footer__bottom a:hover {
    color: var(--za-gold);
}

/* =========================================
   SCROLL REVEAL
   ========================================= */

.za-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.za-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

.za-reveal--delay-1 { transition-delay: 0.1s; }
.za-reveal--delay-2 { transition-delay: 0.2s; }
.za-reveal--delay-3 { transition-delay: 0.3s; }
.za-reveal--delay-4 { transition-delay: 0.4s; }
.za-reveal--delay-5 { transition-delay: 0.5s; }

/* =========================================
   INTERNAL PAGES
   ========================================= */

.za-page-hero {
    padding: 150px 0 72px;
    background: var(--za-gradient-hero);
    text-align: center;
    position: relative;
}

.za-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--za-gold), transparent);
    opacity: 0.2;
}

.za-page-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 10px;
}

.za-page-hero__subtitle {
    color: var(--za-gray-400);
    font-size: 1.05rem;
}

/* Page content wrapper */
.za-page-content {
    padding: var(--za-section-py) 0;
    background: var(--za-navy-light);
}

.za-page-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 48px;
    color: var(--za-gold);
}

.za-page-content h2:first-child {
    margin-top: 0;
}

.za-page-content p {
    color: var(--za-gray-400);
    line-height: 1.85;
    margin-bottom: 14px;
}

.za-page-content ul, .za-page-content ol {
    color: var(--za-gray-400);
    line-height: 1.85;
    margin-bottom: 16px;
    padding-left: 24px;
}

.za-page-content li {
    margin-bottom: 6px;
}

.za-page-content a {
    color: var(--za-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(201,168,76,0.3);
}

.za-page-content a:hover {
    color: var(--za-gold-light);
    text-decoration-color: var(--za-gold-light);
}

/* =========================================
   FEATURES PAGE — Cards grid
   ========================================= */

.za-features-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.za-fp-card {
    background: var(--za-gradient-card);
    border: 1px solid var(--za-glass-border);
    border-radius: var(--za-radius);
    padding: 32px 28px;
    transition: all var(--za-transition);
}

.za-fp-card:hover {
    border-color: var(--za-glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--za-shadow-sm);
}

.za-fp-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.za-fp-card__icon {
    width: 40px;
    height: 40px;
    color: var(--za-gold);
    flex-shrink: 0;
}

.za-fp-card__icon svg {
    width: 100%;
    height: 100%;
}

.za-fp-card__title {
    font-size: 1.1rem;
    font-weight: 700;
}

.za-fp-card__text {
    font-size: 0.92rem;
    color: var(--za-gray-400);
    line-height: 1.7;
    margin-bottom: 14px;
}

.za-fp-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.za-fp-card__list li {
    font-size: 0.88rem;
    color: var(--za-gray-400);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.za-fp-card__list li:last-child {
    border-bottom: none;
}

.za-fp-card__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--za-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Providers grid (sublist with links) */
.za-fp-providers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.za-fp-providers a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--za-gray-400);
    text-decoration: none;
    padding: 8px 12px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--za-radius-xs);
    transition: all var(--za-transition);
}

.za-fp-providers a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--za-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.za-fp-providers a:hover {
    background: rgba(201,168,76,0.08);
    color: var(--za-gold);
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.za-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.za-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.za-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--za-gradient-card);
    border: 1px solid var(--za-glass-border);
    border-radius: var(--za-radius-sm);
    transition: all var(--za-transition);
}

.za-contact-card:hover {
    border-color: var(--za-glass-border-hover);
}

.za-contact-card__icon {
    width: 22px;
    height: 22px;
    color: var(--za-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.za-contact-card__icon svg {
    width: 100%;
    height: 100%;
}

.za-contact-card__label {
    font-size: 0.72rem;
    color: var(--za-gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.za-contact-card__value {
    color: var(--za-white);
    font-size: 1rem;
    font-weight: 500;
}

.za-contact-card__value a {
    color: var(--za-white);
    text-decoration: none;
}

.za-contact-card__value a:hover {
    color: var(--za-gold);
}

.za-contact-map {
    border-radius: var(--za-radius);
    overflow: hidden;
    border: 1px solid var(--za-glass-border);
    aspect-ratio: 1;
    box-shadow: var(--za-shadow-sm);
}

.za-contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =========================================
   WAIT-LIST PAGE — CF7 form styling
   ========================================= */

.za-waitlist-intro {
    max-width: 680px;
    margin-bottom: 40px;
}

.za-waitlist-intro p {
    color: var(--za-gray-400);
    line-height: 1.85;
    margin-bottom: 12px;
}

.za-note-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--za-radius-sm);
    margin-top: 24px;
}

.za-note-box__icon {
    width: 20px;
    height: 20px;
    color: var(--za-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.za-note-box__icon svg {
    width: 100%;
    height: 100%;
}

.za-note-box p {
    color: var(--za-gray-300);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* CF7 form overrides */
.wpcf7 {
    max-width: 580px;
}

.wpcf7 p {
    margin-bottom: 4px;
}

.wpcf7 label {
    display: block;
    margin-bottom: 14px;
    color: var(--za-gray-400);
    font-size: 0.88rem;
    font-weight: 500;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--za-glass-border);
    border-radius: var(--za-radius-xs);
    color: var(--za-white);
    font-family: var(--za-font);
    font-size: 0.92rem;
    transition: border-color var(--za-transition), box-shadow var(--za-transition);
    outline: none;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--za-gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: var(--za-gray-600);
}

.wpcf7 select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b93a7' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.wpcf7 select option {
    background: var(--za-navy);
    color: var(--za-white);
}

.wpcf7 input[type="submit"] {
    padding: 14px 36px;
    background: var(--za-gold);
    color: var(--za-navy);
    font-family: var(--za-font);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--za-transition);
    margin-top: 8px;
}

.wpcf7 input[type="submit"]:hover {
    background: var(--za-gold-light);
    box-shadow: var(--za-shadow-gold);
    transform: translateY(-2px);
}

.wpcf7-response-output {
    border-radius: var(--za-radius-xs) !important;
    border-color: rgba(201,168,76,0.3) !important;
    color: var(--za-gray-300) !important;
    padding: 12px 16px !important;
    margin-top: 16px !important;
}

/* =========================================
   404 PAGE
   ========================================= */

.za-404 {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--za-gradient-hero);
    padding: 40px var(--za-container-px);
}

.za-404__code {
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 900;
    background: var(--za-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.5;
}

.za-404__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.za-404__text {
    color: var(--za-gray-400);
    margin-bottom: 36px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 1024px) {
    .za-about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .za-location__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .za-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .za-contact-grid {
        grid-template-columns: 1fr;
    }

    .za-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .za-footer__contact {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .za-nav__burger {
        display: flex;
    }

    .za-nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(12, 18, 34, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px 32px;
        transition: right var(--za-transition);
        border-left: 1px solid var(--za-glass-border);
    }

    .za-nav__menu--open {
        right: 0;
    }

    .za-nav__menu li a {
        font-size: 1.05rem;
    }

    .za-stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .za-stat + .za-stat::before {
        display: none;
    }

    .za-about__highlights {
        grid-template-columns: 1fr;
    }

    .za-features__grid {
        grid-template-columns: 1fr;
    }

    .za-cta__contacts {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .za-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .za-footer__links {
        flex-direction: column;
        gap: 14px;
    }

    .za-footer__contact {
        text-align: center;
    }

    .za-footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .za-features-page-grid {
        grid-template-columns: 1fr;
    }

    .za-fp-providers {
        grid-template-columns: 1fr;
    }

    .za-docs-grid {
        grid-template-columns: 1fr;
    }

    .za-hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .za-stats-bar__grid {
        grid-template-columns: 1fr 1fr;
    }

    .za-hero__title {
        font-size: 2.4rem;
    }

    .za-btn {
        padding: 13px 26px;
        font-size: 0.82rem;
        width: 100%;
        justify-content: center;
    }
}
