:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: rgba(201, 168, 76, 0.12);
  --dark: #0a0a0c;
  --dark2: #111114;
  --dark3: #18181c;
  --surface: #1c1c20;
  --surface2: #232328;
  --text: #f0ede6;
  --text2: #a09a8e;
  --text3: #6b6560;
  --navy: #1a2340;
  --navy2: #151d33;
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.ar {
  font-family: "Cairo", sans-serif;
  direction: rtl;
}

/* NOISE TEXTURE OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark2);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ====== NAV ====== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
  filter: brightness(1.1);
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 24px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.lang-btn:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.cv-btn-nav {
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-size: clamp(11px, 2vw, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 24px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  font-family: inherit;
  text-transform: uppercase;
}

.cv-btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ====== HERO ====== */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 50%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(26, 35, 64, 0.4) 0%,
      transparent 60%
    );
}

.hero-grid-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 100%
  );
}

.hero-left {
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
  animation: fadeInLeft 1s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 24px;
  padding: 6px 16px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-name {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
  padding-bottom: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 15px;
  background: linear-gradient(
    135deg,
    var(--text) 0%,
    var(--gold-light) 50%,
    var(--text) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: clamp(20px, 2.5vw, 23px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.4);
  cursor: pointer;
  font-family: inherit;
}

.btn-outline:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.hero-img-wrap {
  position: relative;
  width: 420px;
  height: 540px;
  animation: fadeInRight 1.2s ease forwards;
}

.hero-img-frame {
  position: absolute;
  inset: 0;
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.2),
    0 0 60px rgba(201, 168, 76, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.6);
  animation: morphShape 8s ease-in-out infinite;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(100% - 65%);
  transition: transform 0.6s ease;
}

.hero-img-frame:hover img {
  transform: scale(1.05);
}

.hero-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 168, 76, 0.15),
    transparent 70%
  );
  filter: blur(20px);
  animation: morphShape 8s ease-in-out infinite;
  z-index: -1;
}

.hero-float-tag {
  position: absolute;
  background: rgba(24, 24, 28, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: float 3s ease-in-out infinite;
}

.hero-float-tag.tag1 {
  bottom: 80px;
  left: -60px;
  animation-delay: 0s;
}

.hero-float-tag.tag2 {
  top: 100px;
  right: -40px;
  animation-delay: 1.5s;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-float-icon.gold-bg {
  background: rgba(201, 168, 76, 0.15);
}
.hero-float-icon.blue-bg {
  background: rgba(26, 35, 64, 0.8);
}

.hero-float-label {
  font-size: 11px;
  color: var(--text2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-float-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ====== SECTION BASE ====== */
section {
  padding: 120px 80px;
  position: relative;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text2);
  max-width: 560px;
  line-height: 1.8;
}

/* ====== ABOUT ====== */
#about {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.about-text p {
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 15.5px;
}

.about-cv-btn {
  margin-top: 32px;
}

.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, 0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

.timeline-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.timeline-sub {
  font-size: 13px;
  color: var(--text3);
}

/* ====== LAWNEX ====== */
#lawnex {
  background: var(--dark2);
  overflow: hidden;
}

.lawnex-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.lawnex-logo-display {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(26, 35, 64, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.lawnex-logo-display img {
  height: 60px;
  width: auto;
}

.lawnex-logo-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, #1a2340, #2d4080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

.mockup-showcase {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 64, 0.4),
    rgba(10, 10, 12, 0.6)
  );
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.mockup-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(26, 35, 64, 0.5), transparent);
  pointer-events: none;
}

.mockup-phones {
  display: flex;
  gap: -20px;
  align-items: center;
  flex-shrink: 0;
}

.mockup-phone {
  width: 160px;
  height: 280px;
  background: linear-gradient(145deg, #1e2a3a, #141c28);
  border-radius: 24px;
  border: 2px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.mockup-phone:hover {
  transform: translateY(-8px) rotate(-2deg);
}

.mockup-phone:nth-child(2) {
  transform: translateX(-20px) translateY(20px);
  z-index: -1;
}

.mockup-phone:nth-child(2):hover {
  transform: translateX(-20px) translateY(12px) rotate(2deg);
}

.phone-notch {
  width: 60px;
  height: 12px;
  background: #0a0f18;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 16px;
}

.phone-screen-content {
  padding: 0 12px;
}

.phone-header-bar {
  background: rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 10px;
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}

.phone-row {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-bottom: 6px;
}

.phone-row.short {
  width: 60%;
}
.phone-row.gold {
  background: rgba(201, 168, 76, 0.2);
  height: 28px;
  border-radius: 8px;
  margin-top: 10px;
}

.mockup-text {
  flex: 1;
}

.mockup-text h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.mockup-text p {
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 15px;
}

.app-store-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.app-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.app-btn-icon {
  font-size: 22px;
}
.app-btn-text .label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.app-btn-text .name {
  font-size: 15px;
  font-weight: 600;
}

/* ====== FIRM ====== */
#firm {
  background: var(--dark);
}

.firm-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.firm-logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.firm-logo-wrap img {
  height: 64px;
  width: auto;
  filter: brightness(1.1);
}

.firm-info p {
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 15px;
}

.firm-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  margin-bottom: 12px;
}

.firm-detail-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.firm-detail-text {
  font-size: 14px;
  color: var(--text2);
}
.firm-detail-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.firm-website-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  margin-top: 8px;
}

.firm-website-link:hover {
  border-color: var(--gold);
}

.references h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}

.ref-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: var(--transition);
}
.ref-content {
  display: flex;
  gap: 15px;
}
.ref-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--surface2);
  transform: translateX(8px);
}

.ref-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ref-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ref-type {
  font-size: 12px;
  color: var(--text3);
}
.ref-arrow {
  color: var(--text3);
  font-size: 16px;
  transition: color 0.2s;
}
.ref-card:hover .ref-arrow {
  color: var(--gold);
}

/* ====== CONTACT ====== */
#contact {
  background: var(--dark2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 64px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  color: var(--text);
}
.contact-value a {
  color: var(--gold);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
}

.form-group select option {
  background: var(--dark2);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.3);
}

/* ====== FOOTER ====== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text3);
}

.footer-gold {
  color: var(--gold);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes morphShape {
  0%,
  100% {
    border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  }
  33% {
    border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
  }
  66% {
    border-radius: 45% 55% 60% 40% / 60% 40% 60% 40%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }

  .hero-left {
    padding: 48px 24px 32px;
  }
  .hero-right {
    height: 400px;
  }
  .hero-img-wrap {
    width: 280px;
    height: 360px;
  }
  .hero-float-tag {
    display: none;
  }

  section {
    padding: 80px 24px;
  }

  .about-grid,
  .firm-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mockup-showcase {
    flex-direction: column;
    padding: 32px 24px;
  }

  footer {
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    text-align: center;
    justify-content: center;
  }
  .contact-form {
    padding: 24px;
  }
}

/* RTL OVERRIDES */
body.ar .hero-divider {
  background: linear-gradient(270deg, var(--gold), transparent);
}

body.ar .timeline::before {
  left: auto;
  right: 0;
}

body.ar .timeline {
  padding-left: 0;
  padding-right: 24px;
}

body.ar .timeline-item::before {
  left: auto;
  right: -29px;
}

body.ar .ref-card:hover {
  transform: translateX(-8px);
}

body.ar .about-grid,
body.ar .firm-grid,
body.ar .contact-grid,
body.ar .lawnex-header,
body.ar .features-grid,
body.ar .hero-ctas,
body.ar .mockup-showcase,
body.ar .app-store-btns,
body.ar .nav-links {
  direction: rtl;
}
