@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

/* ═══════════════════════════════════════
   AG EST. LAW FIRM — PREMIUM STYLESHEET
   Colors extracted from logo:
   Gold primary  : #C8A44A
   Gold light    : #E2C170
   Gold dark     : #8A6820
   Black deep    : #060504
   Black mid     : #0E0C08
   Black soft    : #1A1710
   Black border  : #2A2518
   ═══════════════════════════════════════ */

:root {
  --gold:        #C8A44A;
  --gold-light:  #E2C170;
  --gold-dark:   #8A6820;
  --gold-glow:   rgba(200,164,74,.12);
  --black:       #060504;
  --black-mid:   #0E0C08;
  --black-soft:  #1A1710;
  --black-card:  #131109;
  --black-border:#2A2518;
  --text:        #EEE0BC;
  --text-muted:  #7A6D4A;
  --text-dim:    #3D3520;
  --navy:        #110F09;
  --navy2:       #1A1710;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--black);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ══════════════ SCROLLBAR ══════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ══════════════ BUTTONS ══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 14px 32px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
}
.btn:hover { opacity: .85; }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(200,164,74,.4);
  color: var(--gold);
  padding: 13px 30px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-glow); }

/* ══════════════ HEADER / NAV ══════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(6,5,4,.97);
  border-bottom: 1px solid var(--black-border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.nav-logo-text span {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.2;
}
.nav-logo-text small {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { opacity: .85; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: .3s;
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-left {
  flex: 1;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 64px 100px 48px;
  overflow: hidden;
}

/* no pattern - pure black */
.hero-left::before { display: none; }

/* diagonal cut */
.hero-left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: var(--black);
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-left-content { position: relative; z-index: 2; max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,164,74,.08);
  border: 1px solid rgba(200,164,74,.25);
  padding: 8px 18px;
  margin-bottom: 30px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero-badge span { font-size: 11px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }

.hero-h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.hero-h1 em { color: var(--gold); font-style: normal; }

.hero-p {
  font-size: 15px;
  color: rgba(238,224,188,.55);
  line-height: 1.9;
  margin-bottom: 38px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust {
  display: flex;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200,164,74,.1);
  border: 1px solid rgba(200,164,74,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 15px; height: 15px; stroke: var(--gold); }
.trust-num { font-size: 16px; font-weight: 700; color: var(--gold); line-height: 1; }
.trust-lbl { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }

/* hero right */
.hero-right {
  width: 44%;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-right-bg { display: none; }

.hero-right-bg svg { display: none; }

.hero-emblem {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-emblem img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float {
  position: absolute;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200,164,74,.1);
  border: 1px solid rgba(200,164,74,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon svg { width: 14px; height: 14px; stroke: var(--gold); }
.hero-float strong { display: block; font-size: 14px; color: var(--gold); font-weight: 700; }
.hero-float span { font-size: 10px; color: var(--text-muted); }
.hero-float-1 { top: 22%; right: -20px; }
.hero-float-2 { bottom: 22%; left: -20px; }

/* ══════════════ TICKER ══════════════ */
.ticker {
  background: var(--gold);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(6,5,4,.35);
  flex-shrink: 0;
}

/* ══════════════ STATS BAR ══════════════ */
.stats-bar { background: var(--black-mid); border-bottom: 1px solid var(--black-border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-cell {
  padding: 32px 20px;
  text-align: center;
  border-left: 1px solid var(--black-border);
  position: relative;
  transition: background .2s;
}
.stat-cell:last-child { border-left: none; }
.stat-cell:hover { background: rgba(200,164,74,.03); }
.stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s;
}
.stat-cell:hover::after { width: 50%; }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ══════════════ SECTION SHARED ══════════════ */
.section { padding: 96px 0; }
.section-alt { background: var(--black-mid); }

.section-head { text-align: center; margin-bottom: 72px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.eyebrow span { font-size: 10px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; }
.section-title { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 14px; }
.section-sub { font-size: 15px; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.85; }

.gold-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(200,164,74,.3), transparent); }

/* ══════════════ SERVICES ══════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--black-border);
}

.srv-card {
  background: var(--black);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.srv-card:hover { background: var(--black-soft); }

.srv-card::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height .35s;
}
.srv-card:hover::before { height: 100%; }

.srv-bg-num {
  position: absolute;
  bottom: 16px;
  left: 24px;
  font-size: 72px;
  font-weight: 900;
  color: var(--black-border);
  line-height: 1;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}

.srv-icon {
  width: 56px;
  height: 56px;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: border-color .3s;
}
.srv-card:hover .srv-icon { border-color: rgba(200,164,74,.4); }
.srv-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.srv-title { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.srv-desc { font-size: 13px; color: var(--text-muted); line-height: 1.85; margin-bottom: 22px; }

.srv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.srv-tag {
  font-size: 11px;
  border: 1px solid var(--black-border);
  color: var(--text-dim);
  padding: 4px 12px;
  letter-spacing: .5px;
  transition: all .2s;
}
.srv-card:hover .srv-tag { border-color: rgba(200,164,74,.2); color: var(--text-muted); }

.srv-link {
  font-size: 12px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

/* ══════════════ ABOUT SPLIT ══════════════ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-left {
  background: var(--black-soft);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.about-left::before { display: none; }

.about-right { background: var(--black-soft); padding: 80px 64px; }

.about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

.about-h {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.about-h em { color: var(--gold); font-style: normal; }

.about-quote {
  background: rgba(200,164,74,.06);
  border-right: 3px solid var(--gold);
  padding: 18px 22px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.about-quote p { font-size: 14px; color: var(--text); line-height: 1.85; font-style: italic; }

.about-body {
  font-size: 14px;
  color: rgba(238,224,188,.5);
  line-height: 1.9;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
}
.sig-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black-border);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}
.sig-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.sig-role { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }

/* values */
.vals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.val-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s;
}
.val-card:hover { border-color: rgba(200,164,74,.25); }
.val-ico {
  width: 38px;
  height: 38px;
  background: rgba(200,164,74,.07);
  border: 1px solid rgba(200,164,74,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.val-ico svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.val-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.val-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.vision-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 24px 22px;
  margin-top: 6px;
}
.vision-label { font-size: 10px; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; text-transform: uppercase; }
.vision-text { font-size: 14px; color: var(--text-muted); line-height: 1.85; }

/* ══════════════ TOOLS (Features) ══════════════ */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.tool-card {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  padding: 34px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: border-color .25s, background .25s;
  text-decoration: none;
  color: inherit;
}
.tool-card:hover { border-color: rgba(200,164,74,.3); background: var(--black-card); }

.tool-ico {
  width: 54px;
  height: 54px;
  background: var(--black-soft);
  border: 1px solid rgba(200,164,74,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tool-ico svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.tool-badge {
  display: inline-block;
  font-size: 9px;
  background: var(--gold);
  color: var(--black);
  padding: 3px 10px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.tool-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.tool-desc { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ══════════════ PROCESS ══════════════ */
.process-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-wrap::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 18px);
  opacity: .2;
}

.proc-step { padding: 36px 28px; text-align: center; }
.proc-num-ring {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(200,164,74,.35);
  background: var(--black-card);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.proc-num-ring span { font-size: 16px; font-weight: 900; color: var(--gold); }
.proc-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.proc-desc { font-size: 12px; color: var(--text-muted); line-height: 1.75; }

/* ══════════════ TESTIMONIALS ══════════════ */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.test-card {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  padding: 30px 26px;
  position: relative;
  transition: border-color .2s;
}
.test-card:hover { border-color: rgba(200,164,74,.2); }
.test-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 22px;
  font-size: 64px;
  color: var(--black-border);
  font-family: serif;
  line-height: 1;
}
.test-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star {
  width: 13px;
  height: 13px;
  background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.test-text {
  font-size: 13px;
  color: rgba(238,224,188,.6);
  line-height: 1.85;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.test-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--black-border);
}
.test-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black-soft);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.test-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.test-case { font-size: 10px; color: var(--text-muted); }

/* ══════════════ CTA BANNER ══════════════ */
.cta-banner {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.cta-banner::before { display: none; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.cta-title { font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-title em { color: var(--gold); font-style: normal; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.85; }
.cta-form { display: flex; flex-direction: column; gap: 12px; min-width: 300px; }

/* ══════════════ FORM INPUTS ══════════════ */
.form-input, .form-select, .form-textarea {
  background: rgba(6,5,4,.8);
  border: 1px solid var(--black-border);
  color: var(--text);
  padding: 13px 16px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  width: 100%;
  outline: none;
  direction: rtl;
  transition: border-color .2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(200,164,74,.5);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; color: var(--text-muted); letter-spacing: .5px; }

/* ══════════════ CONTACT PAGE ══════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
}
.contact-left {
  background: var(--black-soft);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.contact-left::before { display: none; }
.contact-right { background: var(--black-soft); padding: 72px 64px; }

.contact-info { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(200,164,74,.04);
  border: 1px solid rgba(200,164,74,.1);
}
.c-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,164,74,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.c-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 2px; }
.c-value { font-size: 14px; font-weight: 600; color: var(--text); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1DA851;
  color: #fff;
  padding: 14px 28px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 28px;
  transition: opacity .2s;
  position: relative;
  z-index: 1;
}
.whatsapp-btn:hover { opacity: .88; }
.whatsapp-btn svg { width: 20px; height: 20px; fill: #fff; }

/* ══════════════ PAGE HERO (inner pages) ══════════════ */
.page-hero {
  background: var(--black-soft);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--black-border);
}
.page-hero::before { display: none; }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: var(--text-dim); }
.page-title { font-size: 38px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.page-title em { color: var(--gold); font-style: normal; }
.page-sub { font-size: 15px; color: rgba(238,224,188,.5); max-width: 480px; line-height: 1.85; }

/* ══════════════ FOOTER ══════════════ */
.site-footer {
  background: #030202;
  padding: 64px 0 28px;
  border-top: 1px solid var(--black-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #100F0A;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo img { width: 44px; height: 44px; object-fit: contain; }
.footer-logo-name { font-size: 15px; font-weight: 900; color: var(--gold); letter-spacing: 1px; }
.footer-desc { font-size: 12px; color: var(--text-dim); line-height: 1.85; max-width: 280px; }

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 11px; color: #2A2318; }
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  font-size: 10px;
  border: 1px solid #1A1710;
  color: #2A2318;
  padding: 5px 12px;
  letter-spacing: .5px;
}

/* ══════════════ ALERT / FLASH ══════════════ */
.alert {
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}
.alert-success {
  background: rgba(29,168,81,.1);
  border: 1px solid rgba(29,168,81,.3);
  color: #5DBD7A;
}
.alert-error {
  background: rgba(200,74,74,.1);
  border: 1px solid rgba(200,74,74,.3);
  color: #D4706E;
}

/* ══════════════ FLOATING WHATSAPP ══════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1DA851;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(29,168,81,.35);
  transition: transform .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-left { padding: 60px 32px; }
  .hero-left::after { display: none; }
  .hero-right { width: 100%; min-height: 400px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 52px 32px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 48px 32px; }
  .tools-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .process-wrap { grid-template-columns: repeat(2, 1fr); }
  .process-wrap::before { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background: var(--black);
    border-bottom: 1px solid var(--black-border);
    padding: 20px;
    gap: 16px;
    z-index: 100;
  }
  .hero-h1 { font-size: 30px; }
  .section-title { font-size: 24px; }
  .page-title { font-size: 26px; }
  .test-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vals-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}