/* ============================================================
   AL-KML PROPERTY MANAGEMENT — Dark Cinematic Premium
   Editorial asymmetric design system — RTL-first
   Single source of truth (no per-page <style> blocks)
   ============================================================ */

:root {
  --bg: #0B0D12;
  --bg-deep: #07090D;
  --surface: #131722;
  --surface-2: #1B2130;
  --gold: #C9A45C;
  --gold-bright: #E3C788;
  --gold-dim: #8A6F3C;
  --emerald: #34A776;
  --emerald-soft: rgba(52, 167, 118, 0.14);
  --ivory: #F2EEE3;
  --text: #C9CDD8;
  --muted: #98A0B3;
  --line: rgba(201, 164, 92, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --gold-grad: linear-gradient(135deg, #C9A45C 0%, #E3C788 50%, #C9A45C 100%);
  --font-display: 'Amiri', 'Cairo', serif;
  --font-body: 'Cairo', sans-serif;
  --font-en: 'Playfair Display', serif;
  --section-pad: 120px;
  --radius: 2px;
  --radius-lg: 4px;
  --container: 1240px;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  text-align: right;
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: #0B0D12; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { color: var(--ivory); font-weight: 700; line-height: 1.35; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--surface-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(11, 13, 18, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark { display: flex; align-items: flex-end; gap: 3px; height: 34px; }
.nav-logo-mark span { width: 7px; border-radius: 1px; transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.nav-logo-mark span:nth-child(1) { height: 100%; background: var(--gold); }
.nav-logo-mark span:nth-child(2) { height: 75%; background: rgba(242, 238, 227, 0.5); }
.nav-logo-mark span:nth-child(3) { height: 50%; background: rgba(242, 238, 227, 0.25); }
.nav-logo:hover .nav-logo-mark span:nth-child(1) { height: 60%; }
.nav-logo:hover .nav-logo-mark span:nth-child(2) { height: 100%; }
.nav-logo:hover .nav-logo-mark span:nth-child(3) { height: 80%; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-ar { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ivory); line-height: 1.3; }
.nav-logo-en { font-family: var(--font-en); font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 14px; font-size: 0.92rem; font-weight: 600; color: var(--muted); position: relative; transition: color 0.3s; }
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; right: 14px; left: 14px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover, .nav-link.active { color: var(--ivory); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  margin-inline-start: 10px; padding: 10px 24px; font-size: 0.9rem; font-weight: 700;
  color: #0B0D12; background: var(--gold-grad); background-size: 200%; border-radius: var(--radius);
  transition: all 0.35s;
}
.nav-cta:hover { background-position: 100%; box-shadow: 0 0 24px rgba(201, 164, 92, 0.35); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ivory); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 34px;
  font-size: 0.98rem; font-weight: 700; border-radius: var(--radius);
  border: 1px solid transparent; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary { background: var(--gold-grad); background-size: 200%; color: #0B0D12; }
.btn-primary:hover { background-position: 100%; box-shadow: 0 8px 32px rgba(201, 164, 92, 0.35); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ivory); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(201, 164, 92, 0.06); }

/* ============ HERO (editorial asymmetric) ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 160px 0 100px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(201, 164, 92, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(27, 33, 48, 0.8), transparent 70%),
    var(--bg);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, black 20%, transparent 75%);
}
.hero-geometric { position: absolute; top: 12%; left: 6%; width: 420px; height: 420px; border: 1px solid var(--line); transform: rotate(45deg); opacity: 0.5; }
.hero-geometric::after { content: ''; position: absolute; inset: 40px; border: 1px solid var(--line-soft); }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: center; }
.hero-content { position: relative; }
.hero-content::before {
  content: '٢٠٠٥'; position: absolute; top: -110px; right: -30px;
  font-family: var(--font-display); font-size: clamp(7rem, 14vw, 12rem); font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(201, 164, 92, 0.10); z-index: -1; line-height: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px;
  font-size: 0.82rem; font-weight: 600; color: var(--gold-bright);
  border: 1px solid var(--line); border-radius: 100px; background: rgba(201, 164, 92, 0.05); margin-bottom: 36px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 3px var(--emerald-soft); animation: pulse-dot 2.2s infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 3px var(--emerald-soft); } 50% { box-shadow: 0 0 0 7px rgba(52, 167, 118, 0.05); } }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 6.5vw, 5.4rem); font-weight: 700; line-height: 1.25; color: var(--ivory); margin-bottom: 30px; }
.hero-title span { display: block; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-desc { font-size: 1.12rem; color: var(--muted); max-width: 560px; margin-bottom: 44px; border-right: 2px solid var(--gold); padding-right: 22px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.hero-stat-card { background: var(--surface); padding: 34px 26px; position: relative; transition: background 0.35s; }
.hero-stat-card:hover { background: var(--surface-2); }
.hero-stat-card:nth-child(2) { transform: translateY(28px); }
.hero-stat-card:nth-child(4) { transform: translateY(28px); }
.stat-card-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 12px; position: relative; padding-right: 14px; }
.stat-card-label::before { content: ''; position: absolute; right: 0; top: 50%; width: 6px; height: 1px; background: var(--gold); }
.stat-card-value { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.stat-card-value small { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--muted); }

/* ============ STATS BAR ============ */
.stats-bar { padding: 90px 0 var(--section-pad); }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-item { background: var(--bg); padding: 44px 18px; text-align: center; transition: background 0.35s; }
.stat-item:hover { background: var(--surface); }
.stat-icon { display: inline-flex; color: var(--gold); margin-bottom: 16px; opacity: 0.85; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--ivory); line-height: 1.1; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* ============ SECTIONS ============ */
.section { padding: var(--section-pad) 0; position: relative; }
.section-header { margin-bottom: 70px; max-width: 680px; position: relative; }
.section-header.centered { margin-inline: auto; text-align: center; }
.section-header.centered .section-badge::before { display: none; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 20px; }
.section-badge::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-badge svg { display: none; }
.section-title { font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 700; color: var(--ivory); line-height: 1.3; margin-bottom: 18px; }
.section-subtitle { font-size: 1.05rem; color: var(--muted); max-width: 580px; }

/* ============ HOMEPAGE SERVICES GRID ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); counter-reset: service; }
.service-card { background: var(--bg); padding: 44px 36px; position: relative; overflow: hidden; transition: background 0.4s; counter-increment: service; }
.service-card::before { content: counter(service, decimal-leading-zero); position: absolute; top: 18px; left: 24px; font-family: var(--font-en); font-size: 0.8rem; letter-spacing: 0.15em; color: var(--gold-dim); opacity: 0.7; }
.service-card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 100%; height: 1px; background: var(--gold-grad); transform: scaleX(0); transform-origin: right; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.service-card:hover { background: var(--surface); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; color: var(--gold); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 26px; transition: all 0.4s; }
.service-card:hover .service-icon { background: var(--gold); color: #0B0D12; box-shadow: 0 0 28px rgba(201, 164, 92, 0.3); }
.service-title { font-size: 1.25rem; font-weight: 800; color: var(--ivory); margin-bottom: 12px; }
.service-desc { font-size: 0.95rem; color: var(--muted); }

/* ============ HOMEPAGE PROPERTY CARDS ============ */
.properties-scroll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.property-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.property-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45); }
.property-image { position: relative; height: 230px; background: var(--surface-2); overflow: hidden; }
.property-image img { transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.property-card:hover .property-image img { transform: scale(1.06); }
.property-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11, 13, 18, 0.55) 100%); pointer-events: none; }
.property-image-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--gold-dim); opacity: 0.6; background: radial-gradient(circle at 60% 30%, rgba(201, 164, 92, 0.06), transparent 70%), var(--surface-2); }
.property-roi-badge { position: absolute; top: 14px; right: 14px; z-index: 2; padding: 6px 14px; font-size: 0.78rem; font-weight: 700; border-radius: 100px; backdrop-filter: blur(8px); }
.roi-high { background: rgba(52, 167, 118, 0.18); color: #5BCB97; border: 1px solid rgba(52, 167, 118, 0.4); }
.roi-medium { background: rgba(201, 164, 92, 0.16); color: var(--gold-bright); border: 1px solid var(--line); }
.roi-stable { background: rgba(152, 160, 179, 0.14); color: var(--muted); border: 1px solid var(--line-soft); }
.property-type-badge { position: absolute; bottom: 14px; right: 14px; z-index: 2; padding: 5px 14px; font-size: 0.75rem; font-weight: 700; color: var(--ivory); background: rgba(11, 13, 18, 0.65); border: 1px solid var(--line-soft); border-radius: var(--radius); backdrop-filter: blur(8px); }
.property-body { padding: 26px; }
.property-name { font-size: 1.2rem; font-weight: 800; color: var(--ivory); margin-bottom: 8px; }
.property-location { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.property-location svg { color: var(--gold); }
.property-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); padding-top: 18px; }
.property-stat { text-align: center; }
.property-stat + .property-stat { border-right: 1px solid var(--line-soft); }
.property-stat-value { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--gold-bright); line-height: 1.2; }
.property-stat-label { font-size: 0.75rem; color: var(--muted); }

/* ============ CLIENTS TICKER (homepage) ============ */
.clients-section { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.clients-track-wrapper { overflow: hidden; position: relative; padding: 10px 0; mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.clients-track { display: flex; gap: 18px; width: max-content; animation: ticker 40s linear infinite; }
.clients-track-wrapper:hover .clients-track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(50%); } }
.client-logo-item { display: flex; align-items: center; justify-content: center; padding: 14px 26px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); font-weight: 700; color: var(--muted); white-space: nowrap; transition: all 0.35s; }
.client-logo-item:hover { border-color: var(--line); background: var(--surface-2); }

/* ============ CTA SECTION ============ */
.cta-section { padding: var(--section-pad) 0; position: relative; overflow: hidden; background: radial-gradient(ellipse 50% 80% at 50% 120%, rgba(201, 164, 92, 0.12), transparent 65%), var(--bg-deep); }
.cta-content { max-width: 760px; margin: 0 auto; text-align: center; padding: 80px 48px; border: 1px solid var(--line); position: relative; background: rgba(19, 23, 34, 0.45); backdrop-filter: blur(6px); }
.cta-content::before, .cta-content::after { content: ''; position: absolute; width: 28px; height: 28px; border: 1px solid var(--gold); }
.cta-content::before { top: -1px; right: -1px; border-bottom: none; border-left: none; }
.cta-content::after { bottom: -1px; left: -1px; border-top: none; border-right: none; }
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--ivory); margin-bottom: 18px; }
.cta-desc { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ PAGE HEROES (inner pages) ============ */
.about-hero, .services-hero, .port-hero, .tenants-hero,
.clients-hero, .contact-hero, .calc-hero, .pricing-hero,
.demo-hero, .analysis-hero {
  position: relative; padding: 190px 0 90px; overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: radial-gradient(ellipse 55% 60% at 80% 0%, rgba(201, 164, 92, 0.08), transparent 60%), var(--bg);
}
.about-hero .section-header, .services-hero .section-header, .port-hero .section-header,
.tenants-hero .section-header, .clients-hero .section-header, .contact-hero .section-header,
.calc-hero .section-header, .pricing-hero .section-header, .demo-hero .section-header,
.analysis-hero .section-header {
  text-align: center; max-width: 800px; margin: 0 auto;
}
.about-hero .section-badge, .services-hero .section-badge, .port-hero .section-badge,
.tenants-hero .section-badge, .clients-hero .section-badge, .contact-hero .section-badge,
.calc-hero .section-badge, .pricing-hero .section-badge, .demo-hero .section-badge,
.analysis-hero .section-badge { justify-content: center; }
.about-hero .section-title, .services-hero .section-title, .port-hero .section-title,
.tenants-hero .section-title, .clients-hero .section-title, .contact-hero .section-title,
.calc-hero .section-title, .pricing-hero .section-title, .demo-hero .section-title,
.analysis-hero .section-title { font-size: clamp(2.6rem, 5vw, 4rem); }
.about-hero .section-subtitle, .services-hero .section-subtitle, .port-hero .section-subtitle,
.tenants-hero .section-subtitle, .clients-hero .section-subtitle, .contact-hero .section-subtitle,
.calc-hero .section-subtitle, .pricing-hero .section-subtitle, .demo-hero .section-subtitle,
.analysis-hero .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============ ABOUT — STORY ============ */
.story-section { padding: var(--section-pad) 0; }
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.story-text h3 { font-family: var(--font-display); font-size: 1.9rem; color: var(--ivory); margin-bottom: 22px; line-height: 1.4; }
.story-text h3 span { color: var(--gold-bright); }
.story-text p { color: var(--muted); margin-bottom: 18px; font-size: 1.02rem; }
.story-visual { display: flex; flex-direction: column; gap: 1px; }
.story-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.story-stat-box { background: var(--surface); padding: 30px 26px; text-align: center; transition: background 0.3s; }
.story-stat-box:hover { background: var(--surface-2); }
.story-stat-box .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.story-stat-box .num span { color: var(--gold); font-size: 0.5em; }
.story-stat-box .lbl { font-size: 0.85rem; color: var(--muted); margin-top: 8px; }

/* Vision / Mission */
.vm-section { padding: var(--section-pad) 0; border-top: 1px solid var(--line-soft); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { background: var(--surface); border: 1px solid var(--line-soft); padding: 48px 40px; position: relative; transition: all 0.4s; }
.vm-card:hover { border-color: var(--line); transform: translateY(-4px); }
.vm-card::before { content: ''; position: absolute; top: 0; right: 0; width: 56px; height: 2px; background: var(--gold-grad); }
.vm-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--gold); margin-bottom: 22px; }
.vm-card:last-child .vm-card-icon { color: var(--emerald); border-color: rgba(52, 167, 118, 0.3); }
.vm-card-icon svg { width: 24px; height: 24px; }
.vm-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.vm-card p { color: var(--muted); }

/* Differentiators */
.diff-section { padding: var(--section-pad) 0; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.diff-card { background: var(--bg); padding: 40px 32px; text-align: center; transition: background 0.35s; }
.diff-card:hover { background: var(--surface); }
.diff-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--gold); margin: 0 auto 18px; }
.diff-icon svg { width: 24px; height: 24px; }
.diff-card h3, .diff-card h4 { font-size: 1.05rem; color: var(--ivory); margin-bottom: 10px; }
.diff-card p { font-size: 0.9rem; color: var(--muted); }

/* Timeline (vertical) */
.timeline-section { padding: var(--section-pad) 0; border-top: 1px solid var(--line-soft); }
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-right: 40px; }
.timeline::before { content: ''; position: absolute; right: 7px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(180deg, var(--gold), var(--line-soft)); }
.tl-item { position: relative; padding-bottom: 44px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; right: -40px; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--bg); border: 2px solid var(--gold); box-shadow: 0 0 0 5px rgba(201, 164, 92, 0.1); }
.tl-year { font-family: var(--font-en); font-size: 1.5rem; font-weight: 700; color: var(--gold-bright); margin-bottom: 6px; }
.tl-text { color: var(--muted); }

/* Licenses */
.licenses-section { padding: var(--section-pad) 0; border-top: 1px solid var(--line-soft); }
.licenses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 880px; margin: 0 auto; }
.license-card { display: flex; align-items: center; gap: 22px; background: var(--surface); border: 1px solid var(--line); padding: 32px; transition: all 0.35s; }
.license-card:hover { box-shadow: 0 0 32px rgba(201, 164, 92, 0.08); }
.license-icon { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; flex-shrink: 0; color: #0B0D12; background: var(--gold-grad); border-radius: var(--radius); }
.license-icon svg { width: 28px; height: 28px; }
.license-info h3, .license-info h4 { font-size: 1rem; color: var(--ivory); margin-bottom: 4px; }
.license-info .num { font-family: var(--font-en); font-size: 1.1rem; font-weight: 700; color: var(--gold-bright); direction: ltr; text-align: right; letter-spacing: 0.05em; }
.license-info .exp { font-size: 0.8rem; color: var(--emerald); margin-top: 4px; }

/* ============ SERVICES PAGE ============ */
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); counter-reset: sfull; }
.service-full-card { display: block; background: var(--bg); padding: 44px 34px; position: relative; overflow: hidden; transition: background 0.4s; }
.service-full-card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 100%; height: 1px; background: var(--gold-grad); transform: scaleX(0); transform-origin: right; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.service-full-card:hover { background: var(--surface); }
.service-full-card:hover::after { transform: scaleX(1); }
.service-full-num { position: absolute; top: 18px; left: 26px; font-family: var(--font-en); font-size: 0.85rem; letter-spacing: 0.15em; color: var(--gold-dim); opacity: 0.7; }
.service-full-icon { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; color: var(--gold); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 24px; transition: all 0.4s; }
.service-full-icon svg { width: 26px; height: 26px; }
.service-full-card:hover .service-full-icon { background: var(--gold); color: #0B0D12; box-shadow: 0 0 28px rgba(201, 164, 92, 0.3); }
.service-full-title { font-size: 1.3rem; color: var(--ivory); margin-bottom: 4px; }
.service-full-title-en { display: block; font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.service-full-desc { font-size: 0.95rem; color: var(--muted); }
.services-cta-bar { margin-top: 60px; padding: 44px 52px; border: 1px solid var(--line); background: var(--surface); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.services-cta-text h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 6px; }
.services-cta-text p { color: var(--muted); }

/* ============ PORTFOLIO ============ */
.port-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line); margin-bottom: 56px; }
.port-sum-card { background: var(--bg); padding: 34px 22px; text-align: center; transition: background 0.3s; }
.port-sum-card:hover { background: var(--surface); }
.port-sum-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold-bright); line-height: 1.15; }
.port-sum-lbl { font-size: 0.86rem; color: var(--muted); }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.filter-btn { padding: 10px 26px; font-size: 0.9rem; font-weight: 700; color: var(--muted); background: transparent; border: 1px solid var(--line-soft); border-radius: 100px; transition: all 0.3s; }
.filter-btn:hover { color: var(--ivory); border-color: var(--line); }
.filter-btn.active { color: #0B0D12; background: var(--gold-grad); border-color: transparent; }
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.port-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.port-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45); }
.port-img { position: relative; height: 215px; background: radial-gradient(circle at 60% 30%, rgba(201, 164, 92, 0.07), transparent 70%), var(--surface-2); display: flex; align-items: center; justify-content: center; color: var(--gold-dim); overflow: hidden; }
.port-img img { transition: transform 0.7s; }
.port-card:hover .port-img img { transform: scale(1.06); }
.port-roi { position: absolute; top: 14px; right: 14px; left: auto; bottom: auto; z-index: 2; padding: 6px 14px; font-size: 0.76rem; font-weight: 700; border-radius: 100px; backdrop-filter: blur(8px); }
.port-type { position: absolute; top: 14px; left: 14px; right: auto; bottom: auto; z-index: 2; padding: 5px 14px; font-size: 0.74rem; font-weight: 700; color: var(--ivory); background: rgba(11, 13, 18, 0.7); border: 1px solid var(--line-soft); border-radius: var(--radius); backdrop-filter: blur(8px); }
.port-status-sale { color: #FF8A80 !important; background: rgba(239, 68, 68, 0.18) !important; border-color: rgba(239, 68, 68, 0.4) !important; }
.port-body { padding: 24px; }
.port-name { font-size: 1.18rem; font-weight: 800; color: var(--ivory); margin-bottom: 6px; }
.port-loc { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.port-loc svg { width: 14px; height: 14px; color: var(--gold); }
.port-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); padding-top: 16px; }
.port-metric { text-align: center; }
.port-metric + .port-metric { border-right: 1px solid var(--line-soft); }
.port-metric-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold-bright); }
.port-metric-lbl { font-size: 0.72rem; color: var(--muted); }

/* ============ TENANTS ============ */
.tenant-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line); margin-bottom: 0; }
.tenant-stat-card { background: var(--bg); padding: 34px 18px; text-align: center; transition: background 0.3s; }
.tenant-stat-card:hover { background: var(--surface); }
.tenant-stat-number { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--gold-bright); line-height: 1.1; margin-bottom: 6px; }
.tenant-stat-label { font-size: 0.84rem; color: var(--muted); }
/* Sectors */
.sectors-section { padding: var(--section-pad) 0; border-top: 1px solid var(--line-soft); }
.sectors-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.sector-bars { display: flex; flex-direction: column; gap: 16px; }
.sector-bar-item { display: flex; align-items: center; gap: 16px; }
.sector-bar-label { min-width: 130px; font-size: 0.88rem; font-weight: 600; color: var(--text); text-align: right; }
.sector-bar-track { flex: 1; height: 26px; background: var(--surface-2); border-radius: 100px; overflow: hidden; }
.sector-bar-fill { height: 100%; border-radius: 100px; transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; align-items: center; justify-content: flex-end; padding: 0 12px; font-size: 0.74rem; font-weight: 700; color: #0B0D12; }
.sector-visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.sector-donut { width: 260px; height: 260px; border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; }
.sector-donut-center { width: 150px; height: 150px; background: var(--bg); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; }
.sector-donut-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.sector-donut-label { font-size: 0.8rem; color: var(--muted); }
/* Tenants grid */
.tenants-grid-section { padding: var(--section-pad) 0; }
.tenants-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tenant-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; transition: all 0.4s; }
.tenant-card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4); }
.tenant-logo-img { width: 80px; height: 80px; border-radius: 12px; margin: 0 auto 16px; object-fit: contain; background: #fff; padding: 8px; }
.tenant-logo { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-weight: 800; font-size: 1.1rem; color: #fff; }
.tenant-name { font-size: 0.95rem; font-weight: 800; color: var(--ivory); margin-bottom: 4px; line-height: 1.4; }
.tenant-name-en { font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 10px; }
.tenant-sector { display: inline-block; font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: rgba(201, 164, 92, 0.1); color: var(--gold-bright); border: 1px solid var(--line); }
/* Residential summary */
.residential-card { background: linear-gradient(135deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); padding: 48px; display: flex; align-items: center; gap: 40px; margin-top: 40px; }
.residential-icon { display: flex; align-items: center; justify-content: center; width: 100px; height: 100px; flex-shrink: 0; color: var(--gold); border: 1px solid var(--line); border-radius: 50%; }
.residential-number { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.residential-label { font-size: 1.15rem; font-weight: 700; color: var(--ivory); margin: 6px 0 10px; }
.residential-desc { font-size: 0.92rem; color: var(--muted); }

/* ============ CLIENTS PAGE ============ */
.clients-intro { max-width: 820px; margin: 0 auto 70px; text-align: center; background: var(--surface); border: 1px solid var(--line); padding: 48px; }
.clients-intro h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory); margin-bottom: 12px; }
.clients-intro p { font-size: 0.98rem; color: var(--muted); max-width: 700px; margin: 0 auto; }
.trust-section { padding: var(--section-pad) 0; border-top: 1px solid var(--line-soft); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.trust-card { background: var(--bg); padding: 44px 32px; text-align: center; transition: background 0.35s; }
.trust-card:hover { background: var(--surface); }
.trust-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); margin: 0 auto 20px; }
.trust-icon svg { width: 26px; height: 26px; }
.trust-card h3, .trust-card h4 { font-size: 1.05rem; color: var(--ivory); margin-bottom: 10px; }
.trust-card p { font-size: 0.9rem; color: var(--muted); }
.testimonials-section { padding: var(--section-pad) 0; border-top: 1px solid var(--line-soft); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--line-soft); padding: 38px 34px; position: relative; transition: all 0.4s; }
.testimonial-card:hover { border-color: var(--line); transform: translateY(-4px); }
.testimonial-quote { font-family: var(--font-en); font-size: 3.4rem; line-height: 1; color: var(--gold); opacity: 0.35; margin-bottom: 4px; }
.testimonial-text { font-size: 0.97rem; color: var(--text); line-height: 1.9; margin-bottom: 22px; }
.testimonial-author { font-weight: 800; color: var(--ivory); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gold); }

/* ============ FORM FIELDS (shared: contact + analysis) ============ */
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--ivory); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 18px; font-size: 0.95rem; color: var(--ivory); background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: all 0.3s; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(152, 160, 179, 0.5); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.12); }
.form-select { color: var(--ivory); }
.form-select option { background: var(--surface); color: var(--ivory); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: start; }
.contact-form-card { background: var(--surface); border: 1px solid var(--line); padding: 48px 44px; }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 24px; }
.contact-info-side { display: flex; flex-direction: column; gap: 18px; }
.contact-card { display: flex; align-items: center; gap: 20px; background: var(--surface); border: 1px solid var(--line-soft); padding: 24px 26px; transition: all 0.35s; }
.contact-card:hover { border-color: var(--line); transform: translateX(-4px); }
.contact-card-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; flex-shrink: 0; color: var(--gold); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-icon.phone { color: var(--emerald); border-color: rgba(52, 167, 118, 0.3); }
.contact-card-icon.wa { color: #25D366; border-color: rgba(37, 211, 102, 0.3); }
.contact-card-icon.location { color: #7AA2E3; border-color: rgba(122, 162, 227, 0.3); }
.contact-card-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 2px; }
.contact-card-value { font-weight: 700; color: var(--ivory); }
.contact-card-icon.phone + * .contact-card-value, .contact-card-icon.email + * .contact-card-value { direction: ltr; text-align: right; }
.working-hours { background: var(--surface); border: 1px solid var(--line-soft); padding: 26px 28px; }
.working-hours h3, .working-hours h4 { font-size: 1.05rem; margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.9rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--muted); }
.hours-time { color: var(--ivory); font-weight: 600; }
.map-container { margin-top: 70px; border: 1px solid var(--line); overflow: hidden; min-height: 220px; background: var(--surface); }
.map-container iframe { display: block; width: 100%; filter: grayscale(1) invert(0.92) contrast(0.9); }

/* ============ CALCULATOR ============ */
.calc-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: start; }
.calc-form-card { background: var(--surface); border: 1px solid var(--line); padding: 44px 40px; }
.calc-form-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 24px; }
.calc-input-group { margin-bottom: 22px; }
.calc-label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--ivory); margin-bottom: 10px; }
.calc-input-wrap { display: flex; align-items: center; background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.calc-input-wrap:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.12); }
.calc-input { flex: 1; padding: 14px 16px; border: none; background: transparent; font-size: 1.05rem; font-weight: 700; color: var(--gold-bright); outline: none; direction: ltr; text-align: left; }
.calc-input::placeholder { color: rgba(152, 160, 179, 0.5); font-weight: 400; }
.calc-suffix { padding: 14px 16px; background: var(--surface-2); color: var(--muted); font-size: 0.82rem; font-weight: 600; white-space: nowrap; border-right: 1px solid var(--line-soft); }
.calc-btn { width: 100%; justify-content: center; margin-top: 8px; }
.calc-results { background: var(--surface); border: 1px solid var(--line); padding: 44px 40px; }
.calc-results h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 20px; }
.calc-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 320px; text-align: center; gap: 16px; color: var(--muted); }
.calc-empty svg { width: 60px; height: 60px; color: var(--gold-dim); }
.calc-empty p { font-size: 0.92rem; max-width: 280px; }
.result-main { background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(201, 164, 92, 0.14), transparent 70%), var(--bg); border: 1px solid var(--line); padding: 40px; text-align: center; margin-bottom: 20px; }
.result-main-label { font-size: 0.9rem; color: var(--muted); margin-bottom: 8px; }
.result-main-value { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: var(--gold-bright); line-height: 1.1; }
.result-main-value small { font-size: 1.4rem; }
.result-rating { padding: 12px 20px; border-radius: var(--radius); text-align: center; font-size: 0.92rem; font-weight: 700; margin-bottom: 20px; }
.rating-excellent { background: var(--emerald-soft); color: #5BCB97; border: 1px solid rgba(52, 167, 118, 0.35); }
.rating-good { background: rgba(201, 164, 92, 0.12); color: var(--gold-bright); border: 1px solid var(--line); }
.rating-fair { background: rgba(239, 68, 68, 0.12); color: #FF8A80; border: 1px solid rgba(239, 68, 68, 0.35); }
.result-gauge { background: var(--bg); border: 1px solid var(--line-soft); padding: 24px; margin-bottom: 20px; }
.gauge-bar { width: 100%; height: 8px; background: var(--surface-2); border-radius: 100px; overflow: hidden; margin: 12px 0 8px; }
.gauge-fill { height: 100%; border-radius: 100px; transition: width 1s ease; background: linear-gradient(90deg, #DC2626, #D97706, #16A34A); }
.gauge-labels { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--muted); }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.result-item { background: var(--bg); padding: 22px 18px; text-align: center; }
.result-item-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 4px; }
.result-item-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--ivory); }
.calc-note { background: rgba(201, 164, 92, 0.06); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; font-size: 0.85rem; color: var(--muted); line-height: 1.8; margin-top: 24px; }
.calc-note strong { color: var(--gold-bright); }
.calc-note a { color: var(--gold-bright); font-weight: 600; }

/* ============ PRICING ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card { background: var(--surface); border: 1px solid var(--line-soft); padding: 52px 40px; position: relative; display: flex; flex-direction: column; transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.price-card:hover { transform: translateY(-6px); border-color: var(--line); }
.price-card.featured { background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201, 164, 92, 0.12), transparent 70%), var(--surface-2); border: 1px solid var(--gold); box-shadow: 0 0 48px rgba(201, 164, 92, 0.12); }
.price-flag { position: absolute; top: -14px; right: 50%; transform: translateX(50%); padding: 5px 20px; font-size: 0.75rem; font-weight: 800; color: #0B0D12; background: var(--gold-grad); border-radius: 100px; white-space: nowrap; }
.price-tier-name { font-size: 1.15rem; font-weight: 800; color: var(--ivory); margin-bottom: 4px; }
.price-tier-en { font-family: var(--font-en); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 28px; }
.price-value { font-family: var(--font-display); font-size: 3.6rem; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.price-value small { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-payer { display: inline-block; margin: 14px 0 30px; padding: 6px 16px; font-size: 0.8rem; font-weight: 700; color: #5BCB97; background: var(--emerald-soft); border: 1px solid rgba(52, 167, 118, 0.35); border-radius: 100px; width: fit-content; }
.price-features { flex: 1; margin-bottom: 34px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 0.92rem; color: var(--text); border-bottom: 1px solid var(--line-soft); }
.price-features li:last-child { border-bottom: none; }
.price-features li svg { color: var(--gold); flex-shrink: 0; margin-top: 5px; }
.price-features li.off { color: rgba(152, 160, 179, 0.45); }
.price-features li.off svg { color: rgba(152, 160, 179, 0.3); }
.pricing-note { margin-top: 60px; padding: 36px 44px; border: 1px solid var(--line); background: var(--surface); display: flex; align-items: center; gap: 24px; }
.pricing-note svg { color: var(--gold); flex-shrink: 0; }
.pricing-note h4 { font-size: 1.1rem; margin-bottom: 4px; }
.pricing-note p { font-size: 0.92rem; color: var(--muted); }

/* ============ OWNER DEMO ============ */
.demo-window { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5); }
.demo-titlebar { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: var(--bg-deep); border-bottom: 1px solid var(--line-soft); }
.demo-titlebar .dot { width: 11px; height: 11px; border-radius: 50%; }
.demo-titlebar .dot:nth-child(1) { background: #E0584F; }
.demo-titlebar .dot:nth-child(2) { background: var(--gold); }
.demo-titlebar .dot:nth-child(3) { background: var(--emerald); }
.demo-title-text { margin-inline-start: 12px; font-size: 0.8rem; color: var(--muted); }
.demo-body { padding: 36px; }
.demo-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-bottom: 32px; }
.demo-kpi { background: var(--bg); padding: 26px 22px; }
.demo-kpi-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 8px; }
.demo-kpi-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--ivory); line-height: 1.1; }
.demo-kpi-value.gold { color: var(--gold-bright); }
.demo-kpi-value.green { color: #5BCB97; }
.demo-kpi-delta { font-size: 0.75rem; font-weight: 700; margin-top: 4px; }
.demo-kpi-delta.up { color: #5BCB97; }
.demo-kpi-delta.down { color: #E0584F; }
.demo-panel { background: var(--bg); border: 1px solid var(--line-soft); padding: 28px; margin-bottom: 28px; }
.demo-panel h3 { font-size: 1rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.demo-panel h3 svg { color: var(--gold); }
.demo-chart { display: flex; align-items: flex-end; gap: 10px; height: 180px; padding-top: 10px; margin-bottom: 30px; }
.demo-bar { flex: 1; background: linear-gradient(180deg, var(--gold), var(--gold-dim)); border-radius: 2px 2px 0 0; min-height: 8px; position: relative; opacity: 0.85; transition: opacity 0.3s; }
.demo-bar:hover { opacity: 1; }
.demo-bar span { position: absolute; bottom: -26px; right: 50%; transform: translateX(50%); font-size: 0.68rem; color: var(--muted); white-space: nowrap; }
.demo-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.demo-table th { text-align: right; padding: 10px 14px; color: var(--muted); font-weight: 600; border-bottom: 1px solid var(--line); font-size: 0.78rem; }
.demo-table td { padding: 12px 14px; border-bottom: 1px solid var(--line-soft); color: var(--text); }
.demo-table tr:last-child td { border-bottom: none; }
.demo-status { display: inline-block; padding: 3px 12px; font-size: 0.72rem; font-weight: 700; border-radius: 100px; }
.demo-status.paid { color: #5BCB97; background: var(--emerald-soft); }
.demo-status.pending { color: var(--gold-bright); background: rgba(201, 164, 92, 0.12); }
.demo-status.late { color: #FF8A80; background: rgba(239, 68, 68, 0.12); }
.demo-note { text-align: center; margin-top: 28px; font-size: 0.85rem; color: var(--muted); }
.demo-grid-2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; }

/* ============ ANALYSIS ============ */
.analysis-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.analysis-points { display: flex; flex-direction: column; margin-top: 10px; }
.analysis-point { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.analysis-point:last-child { border-bottom: none; }
.analysis-point-num { font-family: var(--font-en); font-size: 1.1rem; color: var(--gold); flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; }
.analysis-point h3 { font-size: 1.05rem; margin-bottom: 4px; }
.analysis-point p { font-size: 0.9rem; color: var(--muted); }
.analysis-form-card { background: var(--surface); border: 1px solid var(--line); padding: 48px 44px; position: relative; }
.analysis-form-card::before { content: ''; position: absolute; top: 0; right: 0; width: 64px; height: 2px; background: var(--gold-grad); }
.analysis-form-card h2 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 8px; }
.analysis-form-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 32px; }

/* ============ 404 ============ */
.error-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 160px 24px 80px; position: relative; overflow: hidden; }
.error-section::before { content: '404'; position: absolute; top: 50%; right: 50%; transform: translate(50%, -50%); font-family: var(--font-en); font-size: clamp(14rem, 36vw, 26rem); font-weight: 700; color: transparent; -webkit-text-stroke: 1px rgba(201, 164, 92, 0.08); z-index: -1; line-height: 1; }
.error-code { font-family: var(--font-en); font-size: 1rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 18px; }
.error-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.error-desc { color: var(--muted); max-width: 440px; margin: 0 auto 40px; }
.error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 90px 0 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; right: 10%; left: 10%; height: 1px; background: var(--gold-grad); opacity: 0.4; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 56px; padding-bottom: 70px; }
.footer-brand-desc { font-size: 0.92rem; color: var(--muted); margin: 18px 0 24px; max-width: 380px; }
.footer-licenses { display: flex; flex-direction: column; gap: 10px; }
.license-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: var(--gold-bright); padding: 7px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(201, 164, 92, 0.04); width: fit-content; }
.footer-heading { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; right: 0; width: 28px; height: 1px; background: var(--gold); }
.footer-link { display: block; padding: 7px 0; font-size: 0.92rem; color: var(--muted); transition: all 0.3s; }
.footer-link:hover { color: var(--gold-bright); transform: translateX(-4px); }
.footer-contact-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 0.92rem; color: var(--muted); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 28px 0; border-top: 1px solid var(--line-soft); font-size: 0.8rem; color: var(--muted); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float { position: fixed; bottom: 28px; left: 28px; z-index: 900; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: #25D366; color: #fff; border-radius: 50%; box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35); transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr; gap: 60px; }
  .hero-content::before { right: 0; }
  .hero-stat-card:nth-child(2), .hero-stat-card:nth-child(4) { transform: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid, .services-full-grid, .diff-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-scroll, .port-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .tenants-grid { grid-template-columns: repeat(3, 1fr); }
  .tenant-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .story-grid, .sectors-grid, .contact-grid, .calc-grid, .analysis-grid, .demo-grid-2, .testimonial-grid { grid-template-columns: 1fr; gap: 50px; }
  .calc-results { position: static; }
  .residential-card { flex-direction: column; text-align: center; gap: 24px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 20px; }
  .nav-links {
    position: fixed; top: 0; right: 0; width: min(320px, 84vw); height: 100vh;
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px;
    padding: 110px 32px 40px; background: rgba(11, 13, 18, 0.97); backdrop-filter: blur(20px);
    border-left: 1px solid var(--line); transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-link { width: 100%; padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .nav-link::after { display: none; }
  .nav-cta { margin: 18px 0 0; width: 100%; text-align: center; }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero { padding: 140px 0 70px; min-height: auto; }
  .hero-desc { font-size: 1rem; }
  .stat-card-value { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .services-full-grid, .diff-grid, .trust-grid,
  .properties-scroll, .port-grid, .pricing-grid, .vm-grid, .licenses-grid,
  .tenants-grid, .tenant-stats-grid, .port-summary { grid-template-columns: 1fr; }
  .story-stat-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .demo-kpis { grid-template-columns: repeat(2, 1fr); }
  .demo-body { padding: 20px; }
  .services-cta-bar { flex-direction: column; text-align: center; padding: 36px 28px; }
  .cta-content { padding: 56px 24px; }
  .contact-form-card, .analysis-form-card, .calc-form-card, .calc-results { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-hero, .services-hero, .port-hero, .tenants-hero, .clients-hero,
  .contact-hero, .calc-hero, .pricing-hero, .demo-hero, .analysis-hero { padding: 140px 0 60px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; left: 20px; }
}
@media (max-width: 480px) {
  .tenants-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
