  :root {
    --black: #0a0a0a;
    --white: #f5f2ec;
    --gold: #c8a96e;
    --gold-light: #e8d5a3;
    --gold-dark: #9a7a40;
    --cream: #f0ebe0;
    --dark: #141414;
    --mid: #1e1e1e;
    --mid-2: #252525;
    --text-muted: #888880;
    --text-soft: #b8b8b0;
    --border: rgba(200, 169, 110, 0.15);
    --success: #4ade80;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
  }

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

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
    backdrop-filter: blur(8px);
  }

  .logo {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
  }
  .logo span { color: var(--gold); }
  .logo .dot { color: var(--gold); }

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

  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 80% 30%, rgba(200, 169, 110, 0.05) 0%, transparent 60%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
  }

  .hero-content {
    position: relative;
    max-width: 820px;
    z-index: 2;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,169,110,0.1);
    border: 1px solid rgba(200,169,110,0.25);
    padding: 7px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.6s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

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

  h1 {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.7s ease 0.1s both;
  }

  h1 .accent {
    color: var(--gold);
    position: relative;
    display: inline-block;
  }

  h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .hero-sub {
    font-size: 1.08rem;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 44px;
    font-weight: 400;
    animation: fadeSlideUp 0.7s ease 0.2s both;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.7s ease 0.3s both;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 15px 34px;
    border: none;
    border-radius: 4px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200,169,110,0.3);
  }

  .btn-ghost {
    color: var(--text-soft);
    padding: 15px 26px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover {
    border-color: rgba(200,169,110,0.3);
    color: var(--white);
  }

  .hero-stats {
    display: flex;
    gap: 44px;
    margin-top: 64px;
    padding-top: 44px;
    border-top: 1px solid var(--border);
    animation: fadeSlideUp 0.7s ease 0.4s both;
    flex-wrap: wrap;
  }

  .stat-item { text-align: right; }

  .stat-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
  }

  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* TRUST BAR */
  .trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(20,20,20,0.8);
    padding: 22px 60px;
    display: flex;
    align-items: center;
    gap: 36px;
    overflow: hidden;
  }

  .trust-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .trust-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
    flex-wrap: wrap;
  }

  .trust-logo {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.28);
    white-space: nowrap;
    transition: color 0.2s;
  }
  .trust-logo:hover { color: rgba(255,255,255,0.55); }

  .logo-slot {
    height: 52px;
    min-width: 128px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.25);
    transition: all 0.2s;
    flex-shrink: 0;
  }
  .logo-slot:hover {
    border-color: rgba(200,169,110,0.35);
    color: rgba(200,169,110,0.55);
  }

  /* عند استبدال الـ placeholder بشعار حقيقي */
  .logo-card {
    height: 60px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 8px;
    transition: all 0.25s;
    flex-shrink: 0;
  }
  .logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,169,110,0.15);
  }

  .client-logo {
    height: 100%;
    max-width: 130px;
    object-fit: contain;
    display: block;
  }

  /* SECTION SHARED */
  section { padding: 100px 60px; position: relative; }

  .section-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }

  .section-sub {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
  }

  /* COURSES */
  .courses-section { background: var(--dark); }

  .courses-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .course-card {
    background: var(--dark);
    padding: 36px;
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
  }

  .course-card:hover { background: var(--mid); }
  .course-card:hover::before { transform: scaleX(1); transform-origin: left; }

  .course-card.soon { opacity: 0.65; cursor: default; }
  .course-card.soon:hover { background: var(--dark); }
  .course-card.soon::before { display: none; }

  .course-icon {
    width: 48px; height: 48px;
    background: rgba(200,169,110,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border: 1px solid rgba(200,169,110,0.15);
  }

  .course-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .course-tag.soon-tag { color: var(--text-muted); }

  .course-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .course-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .course-lessons {
    font-size: 0.78rem;
    color: var(--text-muted);
  }
  .course-lessons span { color: var(--white); font-weight: 600; }

  .course-arrow {
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gold);
    transition: all 0.2s;
  }
  .course-card:hover .course-arrow {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }

  .featured-card {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(200,169,110,0.08) 0%, var(--dark) 60%);
    border-right: 1px solid var(--border);
  }

  /* CURRICULUM */
  .curriculum-section { background: var(--black); }

  .curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .curriculum-visual {
    position: sticky;
    top: 120px;
  }

  .video-card {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px;
    position: relative;
    overflow: hidden;
  }

  .video-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  }

  .video-preview {
    background: var(--black);
    border-radius: 8px;
    height: 200px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .video-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(200,169,110,0.1), transparent);
  }

  .play-btn {
    width: 60px; height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--black);
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .play-btn:hover { transform: scale(1.1); }

  .video-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .video-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 18px;
  }

  .progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    width: 35%;
  }

  .progress-text {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: left;
  }

  .impact-card {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }

  .impact-text { font-size: 0.78rem; color: var(--text-muted); }

  .impact-value {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .impact-value::before {
    content: '↑';
    font-size: 1.1rem;
  }

  .curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
    counter-reset: lesson;
  }

  .curriculum-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    counter-increment: lesson;
    transition: padding 0.2s;
  }

  .curriculum-item:hover { padding-right: 8px; }

  .curriculum-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 28px;
    opacity: 0.7;
  }

  .curriculum-num::before {
    content: "0" counter(lesson);
  }

  .curriculum-text {
    font-size: 0.95rem;
    color: var(--text-soft);
    flex: 1;
  }

  /* RESULTS GALLERY — "حائط النتائج" */
  .results-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .results-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(200,169,110,0.05), transparent 60%);
    pointer-events: none;
  }

  .results-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
  }
  .results-header .section-sub { margin: 0 auto; text-align: center; }

  .results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
  }

  .result-tile {
    aspect-ratio: 1;
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: flex-end;
  }

  .result-tile.tall { aspect-ratio: 1 / 1.4; }
  .result-tile.wide { aspect-ratio: 1.4 / 1; }

  .result-tile:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  }

  .result-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mid-2), var(--mid));
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
    text-align: center;
    padding: 12px;
    gap: 8px;
  }

  .result-placeholder::before {
    content: '📊';
    font-size: 2rem;
    opacity: 0.3;
  }

  .result-caption {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 14px;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 60%, transparent 100%);
    color: var(--white);
  }

  .result-metric {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
  }

  .result-label {
    font-size: 0.72rem;
    color: var(--text-soft);
  }

  .results-cta {
    text-align: center;
    margin-top: 48px;
    color: var(--text-muted);
    font-size: 0.92rem;
  }
  .results-cta a { color: var(--gold); text-decoration: none; font-weight: 600; }

  /* ABOUT LAILA */
  .about-section {
    background: var(--black);
    padding: 100px 60px;
  }

  .about-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
  }

  .about-portrait {
    aspect-ratio: 4/5;
    position: sticky;
    top: 100px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .about-portrait::before {
    content: '';
    position: absolute;
    inset: 10% 5%;
    background: radial-gradient(ellipse at center, rgba(200,169,110,0.12), rgba(200,169,110,0.02) 60%, transparent 80%);
    filter: blur(40px);
    z-index: 0;
    border-radius: 50%;
  }

  .portrait-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.18);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .portrait-placeholder span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 6px;
  }

  /* الصورة الشخصية بخلفية شفافة */
  .about-portrait picture {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
  }
  .about-portrait img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    animation: portraitFloat 6s ease-in-out infinite;
  }

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

  .about-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 32px;
  }

  .credential {
    padding: 22px 20px;
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .credential::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
  }

  .credential:hover {
    background: var(--mid-2);
    border-color: rgba(200,169,110,0.3);
    transform: translateY(-2px);
  }

  .credential:hover::before {
    transform: scaleY(1);
    transform-origin: top;
  }

  .credential-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }

  .credential-text {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.55;
  }

  /* تمييز الأرقام داخل النص */
  .stat-inline {
    color: var(--gold-light);
    font-weight: 700;
    white-space: nowrap;
  }

  /* اقتباس الفلسفة */
  .philosophy-quote {
    margin-top: 28px;
    padding: 28px 32px 28px 28px;
    background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, rgba(200,169,110,0.02) 100%);
    border: 1px solid rgba(200,169,110,0.18);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }

  .philosophy-quote::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }

  .philosophy-mark {
    position: absolute;
    top: 10px;
    left: 22px;
    font-family: 'Tajawal', sans-serif;
    font-size: 4.5rem;
    line-height: 0.7;
    color: rgba(200,169,110,0.15);
    font-weight: 900;
    pointer-events: none;
  }

  .philosophy-quote p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-soft);
    position: relative;
    z-index: 2;
    margin: 0;
  }

  .philosophy-quote strong {
    color: var(--white);
    font-weight: 700;
  }

  .client-list {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .client-list-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
  }

  .client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .client-tag {
    padding: 6px 14px;
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--gold-light);
  }

  /* PRICING */
  .pricing-section { background: var(--dark); }

  .pricing-header { text-align: center; margin-bottom: 60px; }
  .pricing-header .section-sub { margin: 0 auto; text-align: center; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 980px;
    margin: 0 auto;
  }

  .price-card {
    background: var(--dark);
    padding: 44px 32px;
    position: relative;
    overflow: hidden;
  }
  .price-card.featured { background: var(--mid); }

  .price-card.featured::after {
    content: 'الأفضل قيمة';
    position: absolute;
    top: 22px;
    left: -32px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 42px;
    transform: rotate(-45deg);
  }

  .price-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  .price-headline {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
    color: var(--white);
  }

  .price-amount {
    font-family: 'Tajawal', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }

  .price-amount sup {
    font-size: 1.1rem;
    vertical-align: top;
    padding-top: 10px;
    color: var(--gold);
    margin-left: 4px;
  }

  .price-period {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 28px;
  }

  .price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
  }

  .price-features li {
    font-size: 0.86rem;
    color: var(--text-soft);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .price-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .price-btn {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
  }
  .price-btn.primary { background: var(--gold); color: var(--black); }
  .price-btn.primary:hover { background: var(--gold-light); }
  .price-btn.outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
  .price-btn.outline:hover { border-color: var(--gold); color: var(--gold); }

  /* أزرار قريباً */
  .price-btn.coming-soon {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .price-btn.coming-soon::before {
    content: '◷';
    font-size: 1.15rem;
    line-height: 1;
  }

  /* SERVICES */
  .services-section {
    background: var(--dark);
  }

  .services-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
  }
  .services-header .section-sub { margin: 0 auto; text-align: center; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-card {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    border-color: rgba(200,169,110,0.35);
    transform: translateY(-4px);
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover::before { opacity: 1; }

  .service-icon {
    width: 56px;
    height: 56px;
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
  }
  .service-icon svg {
    width: 28px;
    height: 28px;
  }

  .service-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .service-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--white);
    letter-spacing: -0.3px;
  }

  .service-desc {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 28px;
    flex: 1;
  }

  .service-pricing {
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 24px;
  }

  .service-pricing.custom {
    flex-direction: column;
  }

  .price-option {
    flex: 1;
    text-align: center;
  }
  .price-option.full { text-align: right; }

  .price-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .price-value {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
  }
  .price-option.full .price-value { justify-content: flex-start; }

  .price-value span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
  }

  .price-divider {
    width: 1px;
    background: var(--border);
  }

  .features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }

  .features-list span {
    font-size: 0.82rem;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .features-list span::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
  }

  .service-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: 1px solid transparent;
  }

  .service-btn.primary {
    background: var(--gold);
    color: var(--black);
  }
  .service-btn.primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(200,169,110,0.25);
  }

  .service-btn.outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(200,169,110,0.4);
  }
  .service-btn.outline:hover {
    border-color: var(--gold);
    background: rgba(200,169,110,0.05);
  }

  @media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
  }

  /* TESTIMONIALS - EDITORIAL FLOW STYLE */
  .testimonials-section { background: var(--black); }

  .testimonials-flow {
    max-width: 760px;
    margin: 60px auto 0;
    padding: 0 20px;
  }

  .testimonial-item {
    padding: 36px 0;
    border-bottom: 1px solid rgba(200,169,110,0.12);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .testimonial-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .testimonial-item:last-child {
    border-bottom: none;
  }

  .testimonial-item .quote-text {
    font-size: 1.15rem;
    line-height: 1.95;
    color: var(--white);
    font-weight: 400;
    margin: 0 0 20px;
    position: relative;
  }
  .testimonial-item .quote-text::before {
    content: '"';
    font-family: 'Tajawal', sans-serif;
    color: var(--gold);
    font-size: 2rem;
    font-weight: 900;
    line-height: 0;
    position: relative;
    top: 0.6rem;
    margin-left: 8px;
    margin-right: -4px;
  }

  .testimonial-item .attribution {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--text-soft);
  }
  .testimonial-item .attribution .dash {
    color: var(--gold);
    font-weight: 700;
  }
  .testimonial-item .attribution .person-name {
    color: var(--white);
    font-weight: 700;
  }
  .testimonial-item .attribution .person-role {
    color: var(--text-muted);
    font-size: 0.85rem;
  }
  .testimonial-item .attribution .person-context {
    margin-right: auto;
    font-size: 0.72rem;
    color: var(--gold);
    background: rgba(200,169,110,0.08);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(200,169,110,0.2);
    white-space: nowrap;
  }

  /* === Legacy testimonial cards (kept for fallback, but not used) === */
  .testimonials-grid {
    display: none;
  }

  /* FAQ */
  .faq-section { background: var(--dark); }

  .faq-list {
    max-width: 800px;
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .faq-item {
    background: var(--dark);
    padding: 22px 28px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .faq-item:hover { background: var(--mid); }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
  }

  .faq-toggle {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.2s;
  }

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

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.8;
  }

  .faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 14px;
  }

  /* CTA */
  .cta-section {
    background: var(--dark);
    padding: 110px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at center, rgba(200,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-section h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
  }

  .cta-section p {
    color: var(--text-soft);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
  }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 44px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-brand {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
  }
  .footer-brand span { color: var(--gold); }

  .footer-copy { font-size: 0.78rem; color: var(--text-muted); }

  .footer-links {
    display: flex;
    gap: 26px;
    list-style: none;
  }

  .footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }

  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    .hero { padding: 120px 24px 60px; }
    .about-section { padding: 72px 24px; }
    .cta-section { padding: 80px 24px; }
    footer { padding: 32px 24px; }
    .trust-bar { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
    h1 { font-size: 2.1rem; }
    .hero-stats { gap: 24px; }
    .courses-grid { grid-template-columns: 1fr; }
    .featured-card { grid-column: span 1; }
    .curriculum-grid { grid-template-columns: 1fr; gap: 48px; }
    .curriculum-visual { position: static; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .about-portrait { max-width: 320px; margin: 0 auto; position: relative; top: auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .service-card { padding: 32px 24px; }
    footer { flex-direction: column; text-align: center; }
    .trust-logos { flex-wrap: wrap; gap: 20px; }
  }

/* ============================================
   MULTI-PAGE ADDITIONS
   ============================================ */

/* Inner page header (smaller than hero) */
.inner-hero {
  padding: 140px 60px 80px;
  text-align: center;
  position: relative;
}

.inner-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.inner-hero .breadcrumb a { color: var(--text-soft); text-decoration: none; }
.inner-hero .breadcrumb a:hover { color: var(--gold); }
.inner-hero .breadcrumb span { color: var(--gold); margin: 0 8px; }

.inner-hero h1 {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.inner-hero .inner-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Two-column layout for detail pages */
.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
}

.detail-main h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 18px;
  margin-top: 40px;
  letter-spacing: -0.5px;
}
.detail-main h2:first-child { margin-top: 0; }

.detail-main p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.detail-main ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.detail-main ul li {
  padding: 12px 0;
  padding-right: 28px;
  position: relative;
  color: var(--text-soft);
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.detail-main ul li::before {
  content: '←';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-weight: 700;
}
.detail-main ul li:last-child { border-bottom: none; }

/* Sticky purchase card */
.purchase-card {
  position: sticky;
  top: 110px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  align-self: start;
}

.purchase-card .pc-label {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 12px;
}

.purchase-card .pc-price {
  font-family: 'Tajawal', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.purchase-card .pc-price sup {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
  margin-left: 6px;
  position: relative;
  top: -1.4rem;
}

.purchase-card .pc-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.purchase-card .pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.purchase-card .pc-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-soft);
  display: flex;
  gap: 10px;
}
.purchase-card .pc-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.purchase-card .pc-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.purchase-card .pc-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200,169,110,0.3);
}

.purchase-card .pc-btn.outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(200,169,110,0.4);
  margin-top: 10px;
}
.purchase-card .pc-btn.outline:hover {
  border-color: var(--gold);
  background: rgba(200,169,110,0.05);
}

.purchase-card .pc-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Listing pages (courses & booklets listings) */
.listing-section { padding: 60px 60px 100px; }
.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.listing-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.listing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.35);
}
.listing-card .lc-tag {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 14px;
}
.listing-card h3 {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.25;
}
.listing-card .lc-desc {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 0.95rem;
  flex: 1;
}
.listing-card .lc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.listing-card .lc-price {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}
.listing-card .lc-price sup {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 4px;
  font-weight: 600;
}
.listing-card .lc-btn {
  padding: 10px 22px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 6px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}
.listing-card .lc-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Support page */
.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px 100px;
}
.support-option {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.support-option:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.35);
}
.support-option-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.support-option-icon svg { width: 28px; height: 28px; }
.support-option h3 {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}
.support-option p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}
.support-option .so-value {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
  direction: ltr;
  display: inline-block;
}

@media (max-width: 900px) {
  .inner-hero { padding: 110px 24px 50px; }
  .detail-grid { grid-template-columns: 1fr; padding: 50px 24px; gap: 40px; }
  .purchase-card { position: static; }
  .listing-section { padding: 40px 24px 70px; }
  .listing-grid { grid-template-columns: 1fr; }
  .support-options { grid-template-columns: 1fr; padding: 0 24px 70px; max-width: 480px; }
}

/* ============================================
   MOBILE NAVIGATION (HAMBURGER MENU)
   ============================================ */

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  position: relative;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}
.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); }

@media (max-width: 900px) {
  nav {
    padding: 16px 24px !important;
  }
  .nav-toggle { 
    display: flex !important; 
  }
  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    width: 280px !important;
    flex-direction: column !important;
    background: #161616 !important;
    border-left: 1px solid rgba(200,169,110,0.15);
    padding: 90px 30px 30px !important;
    margin: 0 !important;
    gap: 0 !important;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -20px 0 60px rgba(0,0,0,0.6);
    list-style: none !important;
    pointer-events: auto !important;
  }
  .nav-links.open { 
    transform: translateX(0) !important; 
  }
  .nav-links li { 
    width: 100% !important;
    pointer-events: auto !important;
  }
  .nav-links li a {
    display: block !important;
    padding: 18px 4px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #f5f2ec !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s;
    text-decoration: none !important;
    -webkit-tap-highlight-color: rgba(200,169,110,0.2);
    touch-action: manipulation;
    position: relative;
    z-index: 1;
  }
  .nav-links li a:active {
    color: var(--gold) !important;
    background: rgba(200,169,110,0.05);
  }
  .nav-links li a.nav-cta {
    margin-top: 20px;
    background: var(--gold) !important;
    color: #0a0a0a !important;
    text-align: center;
    border-radius: 8px;
    border: none;
    padding: 16px !important;
    font-weight: 800 !important;
  }
  .nav-links li a.nav-cta:active {
    background: var(--gold-light) !important;
  }
  /* dim background when menu is open — using box-shadow trick instead of overlay */
  body.menu-open {
    overflow: hidden;
  }
}

/* ============================================
   FOOTER SOCIAL ICONS (replaces text links)
   ============================================ */
.footer-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: all 0.25s;
  text-decoration: none;
  background: rgba(255,255,255,0.02);
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  background: rgba(200,169,110,0.05);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Hide the old footer-links (text-based) wherever it appears */
footer .footer-links { display: none; }

@media (max-width: 768px) {
  .footer-social { gap: 16px; margin-top: 16px; }
  .footer-social a { width: 44px; height: 44px; }
}
