/* ============================================================
 officespaces.ae — gemeinsames Stylesheet
 1:1 aus index.html extrahiert, damit Unterseiten identisch aussehen.
 Die Startseite behaelt ihre Inline-Fassung; diese Datei versorgt
 /blog/ und kuenftige Unterseiten. Bei Designaenderungen BEIDE pflegen.
 ============================================================ */

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --navy: #0A2647;
  --navy-light: #0E3366;
  --navy-dark: #061B33;
  --gold: #D4A843;
  --gold-light: #E8C975;
  --gold-dark: #B8912E;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #EEF1F5;
  --mid-gray: #9AA5B4;
  --dark-gray: #4A5568;
  --text-dark: #1A202C;
  --text-body: #374151;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5A;
  --shadow-sm: 0 1px 3px rgba(10,38,71,0.08);
  --shadow-md: 0 4px 16px rgba(10,38,71,0.10);
  --shadow-lg: 0 8px 32px rgba(10,38,71,0.12);
  --shadow-xl: 0 16px 48px rgba(10,38,71,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --section-padding: 100px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 38, 71, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 38, 71, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.nav-wa-btn:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.nav-wa-btn::after { display: none !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  /* Hero background image is set inline on .hero-bg-img */
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A2647 0%, #0E3366 40%, #14467A 70%, #1A5A94 100%);
  background-size: cover;
  background-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,38,71,0.92) 0%, rgba(10,38,71,0.75) 50%, rgba(10,38,71,0.6) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212,168,67,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,168,67,0.04) 0%, transparent 50%);
}

.hero-geometric {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(212,168,67,0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-geometric::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  right: 15%;
  bottom: 15%;
  border: 1px solid rgba(212,168,67,0.06);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  letter-spacing: 0.2px;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

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

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Hero Form */
.hero-form-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  animation: slideInRight 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-form-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.hero-form-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-select,
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-select:focus,
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}

.team-size-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.team-size-btn {
  padding: 12px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.team-size-btn:hover,
.team-size-btn.active {
  background: rgba(212,168,67,0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================
   TRUST CHIPS
   ============================================ */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(212,168,67,0.15);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212,168,67,0.03), rgba(212,168,67,0.06), rgba(212,168,67,0.03));
}

.trust-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  position: relative;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.trust-chip:hover {
  background: rgba(212,168,67,0.1);
  border-color: rgba(212,168,67,0.25);
  color: var(--gold-light);
}

.trust-chip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-dark h2 {
  color: var(--white);
}

.section-intro {
  font-size: 17px;
  color: var(--dark-gray);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-dark .section-intro {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   SECTION 1: YOUR IDEAL WORKSPACE
   ============================================ */
.workspace-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.workspace-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.workspace-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.6;
}

.workspace-list li .icon-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.workspace-list li .icon-check svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.workspace-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.workspace-img-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold), transparent);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
}

.workspace-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Placeholder for when no image is uploaded */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  gap: 12px;
}

.img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

/* ============================================
   SECTION 2: WHY RAK
   ============================================ */
.why-rak-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,168,67,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.why-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

/* ============================================
   SECTION 3: OFFICE TYPES
   ============================================ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.type-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.type-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
}

.type-card-img .img-placeholder {
  min-height: 220px;
}

.type-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 2;
}

.type-card-body {
  padding: 28px;
}

.type-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.type-card p {
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.type-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.type-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}

.type-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.type-card-best {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--dark-gray);
  margin-bottom: 24px;
}

.type-card-best strong {
  color: var(--navy);
  font-weight: 700;
}

.type-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 14px 24px;
}

/* ============================================
   SECTION 4: LOCATIONS
   ============================================ */
.locations-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}

.location-card-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.location-card-img .img-placeholder {
  min-height: 220px;
}

.location-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.location-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.location-card p {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.location-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-service-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ============================================
   SECTION 5: PRICING
   ============================================ */
.pricing-table-wrap {
  overflow-x: auto;
  margin: 40px 0;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 20px 28px;
  text-align: left;
}

.pricing-table tbody td {
  padding: 20px 28px;
  font-size: 15px;
  border-bottom: 1px solid var(--light-gray);
  background: var(--white);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover td {
  background: var(--off-white);
}

.pricing-table .price-cell {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}

.pricing-table .type-cell {
  font-weight: 600;
  color: var(--navy);
}

.pricing-note {
  font-size: 13px;
  color: var(--mid-gray);
  margin-top: 16px;
  font-style: italic;
}

/* ============================================
   SECTION 6: BUSINESS SETUP
   ============================================ */
.setup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.setup-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 20px;
}

.setup-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.setup-features li .arrow-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.setup-highlight {
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.03));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px;
  margin: 28px 0;
}

.setup-highlight h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.setup-highlight p {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.7;
}

.setup-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.setup-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.setup-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ============================================
   SECTION 7: HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212,168,67,0.3), var(--gold));
}

.step-card {
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   SECTION 8: FAQ
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212,168,67,0.3);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.open .faq-toggle {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  stroke-width: 2;
  fill: none;
}

.faq-item.open .faq-toggle svg {
  stroke: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.8;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(212,168,67,0.1), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(212,168,67,0.06), transparent 40%);
}

.final-cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(212,168,67,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   STICKY WHATSAPP (Mobile)
   ============================================ */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.35s ease;
  animation: pulse 3s ease-in-out infinite;
}

.sticky-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
  animation-name: none;
}

.sticky-wa svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-form-card {
    max-width: 480px;
  }

  .workspace-grid,
  .setup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .types-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-rak-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding: 32px 24px 48px;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-num {
    font-size: 26px;
  }

  .team-size-btns {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-chips {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .trust-chip {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .section h2 {
    font-size: 26px;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 14px 16px;
    font-size: 13px;
  }
}
/* ============================================
   GLOWING SNAKE — WhatsApp CTAs
   Lichtband (::before, mask-composite-Ring) + pulsierender Schein (box-shadow).
   Ring liegt bei inset:0 und wird daher von overflow:hidden der Karten NICHT beschnitten.
   Halo-Reichweite bleibt unter 28px (= .type-card-body padding), sonst Guillotine.
   ============================================ */
@property --wa-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes wa-snake {
  to { --wa-angle: 360deg; }
}

@keyframes wa-halo {
  0%, 100% { box-shadow: 0 4px 12px rgba(var(--wa-halo-rgb, 37, 211, 102), 0.32); }
  50%      { box-shadow: 0 4px 18px rgba(var(--wa-halo-rgb, 37, 211, 102), 0.52); }
}

@keyframes wa-halo-strong {
  0%, 100% { box-shadow: 0 5px 16px rgba(var(--wa-halo-rgb, 37, 211, 102), 0.45); }
  50%      { box-shadow: 0 6px 22px rgba(var(--wa-halo-rgb, 37, 211, 102), 0.65); }
}

.wa-glow {
  position: relative;
  /* Fallback ohne @property-Support: gueltiger Gradient, statischer Schimmer statt leerem Ring */
  --wa-angle: 0deg;
  animation: wa-halo 2.8s ease-in-out infinite;
}

.wa-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--wa-angle),
    rgba(255, 255, 255, 0)    0deg,
    rgba(255, 255, 255, 0)    248deg,
    rgba(255, 255, 255, 0.28) 302deg,
    rgba(255, 255, 255, 0.95) 340deg,
    rgba(255, 255, 255, 0.28) 352deg,
    rgba(255, 255, 255, 0)    360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  animation: wa-snake 3.2s linear infinite;
  /* ohne dies schluckt das Overlay jeden Klick auf den Button */
  pointer-events: none;
  z-index: 1;
}

.wa-glow:hover,
.wa-glow:focus-visible {
  animation-name: wa-halo-strong;
}

/* Halo-Farbe je Button-Variante — gruener Schein auf Gold/Navy saehe kaputt aus */
.btn-gold.wa-glow { --wa-halo-rgb: 212, 168, 67; }
.btn-navy.wa-glow { --wa-halo-rgb: 10, 38, 71; }

/* .sticky-wa hat bereits pulse — explizite Komma-Liste, sonst stirbt eine der beiden */
.sticky-wa.wa-glow {
  /* .wa-glow setzt position:relative bei gleicher Spezifitaet und wuerde fixed sonst kippen */
  position: fixed;
  animation: pulse 3s ease-in-out infinite, wa-halo 2.8s ease-in-out infinite;
}

.sticky-wa.wa-glow:hover,
.sticky-wa.wa-glow:focus-visible {
  animation-name: none, wa-halo-strong;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
