/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

html[dir="rtl"] body {
  font-family: var(--font-arabic);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font-family: inherit;
}

/* Container */
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

/* Section Headers */
.section-header {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--primary);
  background: rgba(79, 147, 156, 0.12);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

html[dir="rtl"] .section-title {
  letter-spacing: 0;
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--ease);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(31, 79, 87, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(31, 79, 87, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--light);
  border-color: var(--secondary);
  transform: translateY(-3px);
}