﻿

:root {
  --red: #8f1f28;
  --red-dark: #5e1118;
  --red-smooth-dark: #740811;
  --gold: #c79645;
  --teal: #0f766e;
  --ink: #171717;
  --muted: #68625c;
  --line: #e8e1d8;
  --paper: #fffaf3;
  --soft: #f5efe6;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(53, 34, 23, .12);
  --shadow-strong: 0 28px 80px rgba(31, 17, 13, .22);
  --radius: 8px;
  --crimson: #8B1A1A;
  --crimson-op:#8b1a1a93;
  --crimson-light: #B52A2A;
  --crimson-pale: #F9EDED;
  --crimson-deep: #5C0F0F;
  --gold: #C8963E;
  --gold-light: #E8B96A;
  --gold-pale: #FBF4E8;
  --ink: #1A1410;
  --ink-soft: #2D2520;
  --charcoal: #3D3530;
  --warm-gray: #6B6058;
  --warm-mid: #9A9088;
  --warm-light: #C8C0B8;
  --cream: #F8F5F0;
  --cream-deep: #F2EDE6;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(26, 20, 16, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 20, 16, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 20, 16, 0.16);
  --shadow-xl: 0 40px 100px rgba(26, 20, 16, 0.20);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Amiri', serif;
  --font-body: 'Tajawal', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Tajawal", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  direction: rtl;
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: calc(100% - 32px); max-width: 1160px; margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 250, 243, .9);
  border-bottom: 1px solid rgba(143, 31, 40, .08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(30, 20, 15, .08); background: rgba(255, 250, 243, .98); }
.nav { height: 78px; display: flex; align-items: center; gap: 28px; min-width: 0; }
.brand { display: flex; align-items: center; gap: 12px; margin-inline-end: auto; min-width: 0; }
.brand img { width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #8B1A1A #5C0F0F);

  border-bottom-right-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;}
.brand strong, .brand small { display: block; line-height: 1.3; }
.brand strong { font-weight: 900; }
.brand small { color: var(--muted); font-size: 12px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; color: #3d3732; font-weight: 700; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; width: 0; height: 2px; background: var(--red); transition: width .2s ease; }
.desktop-nav a:hover::after { width: 100%; }

.header-cta, .btn { display: inline-flex; align-items: center; 
  justify-content: center; min-height: 48px; border-radius: var(--radius);
   font-weight: 900; }
.header-cta { background: var(--red); color: white; padding: 10px 20px;
   box-shadow: 0 10px 24px rgba(143, 31, 40, .22); }

.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: var(--radius); }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); }
.mobile-nav { padding: 10px 20px 24px; background: var(--paper); border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 12px 0; font-weight: 800; border-bottom: 1px solid var(--line); }
.special li a {
  color:white;
  font-weight: bold;
}


.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  outline: none ;
  border:none;
  flex-shrink: 0;
}

.nav-cta:hover {
   background-image: linear-gradient(135deg, #6f151d, #c36b60);
   transform: translateY(-2px);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}




.hero { position: relative; min-height: 100vh; display: grid; align-items: center; padding: 118px 0 70px; overflow: hidden; color: white; }
.hero-media { position: absolute; inset: 0; background: url("./assets/buillding.jpg") center/cover no-repeat; transform: scale(1.04); animation: heroDrift 18s ease-in-out infinite alternate; will-change: transform; }
.hero-overlay { 
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 15, 15, 0.75) 0%,
    rgba(94, 17, 23, 0.65) 50%,
    rgba(15, 15, 15, 0.75) 100%
  );
  }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 48px; align-items: center; min-width: 0; }
.hero-copy { max-width: 720px; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-weight: 900; letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: 64px; line-height: 1.15; margin-bottom: 22px; letter-spacing: 0; overflow-wrap: anywhere; }
h2 { font-size: 42px; line-height: 1.25; margin-bottom: 18px; letter-spacing: 0; overflow-wrap: anywhere; }
h3 { font-size: 21px; line-height: 1.35; margin-bottom: 10px; }
.hero-lead { color: rgba(255,255,255,.86); font-size: 20px; max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn { padding: 13px 24px; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: white; box-shadow: 0 15px 35px rgba(143, 31, 40, .28); }
.btn-secondary { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.38); color: white; backdrop-filter: blur(8px); }
.btn-light { background: white; color: var(--red); }
.btn-outline-light { border-color: rgba(255,255,255,.42); color: white; }
.full { width: 100%; }
.trust-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-line span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); border-radius: var(--radius); color: rgba(255,255,255,.88); font-weight: 700; font-size: 14px; }
.lead-card { background: rgba(255, 250, 243, .96); color: var(--ink); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow-strong); border: 1px solid rgba(255,255,255,.44); animation: softFloat 5.5s ease-in-out infinite; }
.lead-card h2 { font-size: 28px; }
.lead-card p { color: var(--muted); }
.lead-card ul { padding: 0; list-style: none; margin: 20px 0; }
.lead-card li { padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 800; }
.lead-card li::before { content: "✓"; color: var(--teal); margin-left: 8px; font-weight: 900; }

.section { position: relative; padding: 96px 0; overflow: hidden; }
.soft { background: var(--soft); }
.band-dark { background: #161212; color: white; font-family: none !important;}
.intro::before, .why::before, .success::before, .ideas::before, .final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.intro::before {
  background: linear-gradient(90deg, rgba(255,250,243,.96), rgba(255,250,243,.78)), url("./assets/مرنة وقابلة للتكيف4.jpg") left center / 60% auto no-repeat;
  opacity: .72;
  @media (max-width :980px) {
      background: linear-gradient(90deg, rgba(255,250,243,.96), rgba(255,250,243,.78)), url("./assets/مرنة وقابلة للتكيف4.jpg") left center / 100% auto no-repeat !important;

  }
  @media (max-width :700px) {
      background: linear-gradient(90deg, rgba(255,250,243,.96), rgba(255,250,243,.78)), url("./assets/مرنة وقابلة للتكيف4.jpg") left center / 0% auto no-repeat !important;

  }
}
.intro > .container, .why > .container, .success > .container, .ideas > .container, .final-cta > .container { position: relative; z-index: 1; }
.stats { padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.stats-grid div { padding: 30px 22px; text-align: center; background: rgba(255,255,255,.035); }
.stats-grid strong { display: block; font-size: 46px; line-height: 1; color: var(--gold); }
.stats-grid strong::after { content: "+"; }
.stats-grid span { color: rgba(255,255,255,.72); font-weight: 700; }

.button-cta{
  width: 40%;
  margin-top: 5%;
  text-align: center;
  justify-self: center;
  display: block !important;
}

.two-col, .split, .founder-grid, .faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.section-head { position: sticky; top: 110px; }
.rich-copy { font-size: 19px; color: #3e3833; font-weight: bold;}
.center-head { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.center-head p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.cards { display: grid; gap: 22px; }
.three { grid-template-columns: repeat(3, 1fr); }
.four { grid-template-columns: repeat(4, 1fr); }
.service-card, .mini-card, .benefit, .process-step, .quote-card {
  background: white;
  border: 1px solid rgba(143,31,40,.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(53, 34, 23, .07);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover, .mini-card:hover, .benefit:hover, .process-step:hover, .quote-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143,31,40,.18);
  box-shadow: 0 22px 48px rgba(53, 34, 23, .12);
}
.service-card { display: flex; flex-direction: column; }
.service-card img { width: 100%; height: 190px; object-fit: cover; }
.service-card:hover img { transform: scale(1.04); }
.service-card img { transition: transform .45s ease; }
.service-card div { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card p, .mini-card p, .benefit p, .process-step p { color: var(--muted); margin-bottom: 0; }
.service-card p { padding-bottom: 18px; }
.service-card .btn { width: 100%; height: 46px; margin-top: auto; font-size: 15px; flex-shrink: 0; }
.icon { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; background: #f4e8d7; color: var(--red); border-radius: var(--radius); font-weight: 900; margin-bottom: 16px; }

.process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.65) 45%, transparent 70%);
  transform: translateX(120%);
  transition: transform .65s ease;
}
.process-step:hover::before { transform: translateX(-120%); }
.process-step { position: relative; padding: 24px; display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; }
.process-step > * { position: relative; z-index: 1; }
.process-step span { width: 58px; height: 58px; display: grid; place-items: center; background: var(--red); color: white; border-radius: var(--radius); font-size: 24px; font-weight: 900; }
.highlight-step { background: #192f2b; color: white; border-color: #192f2b; }
.highlight-step span { background: var(--gold); color: #1a120b; }
.highlight-step p { color: rgba(255,255,255,.75); }

.why { background: linear-gradient(135deg, #fff 0%, #fff 50%, #f0f7f5 50%, #f0f7f5 100%); }
.why::before {
  background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.72)), url("./assets/buildings-bg.webp") left center / min(34vw, 420px) auto no-repeat;
  opacity: .9;
}
.split { grid-template-columns: .9fr 1.1fr; align-items: center; }
.why-panel { background: var(--red-dark); color: white; padding: clamp(30px, 5vw, 54px); border-radius: var(--radius); box-shadow: var(--shadow); }
.why-panel p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.benefit { padding: 24px; }
.benefit strong { color: var(--teal); font-size: 18px; }

.compact .mini-card { min-height: 220px; padding: 24px; }

.funding-carousel {
  position: relative;
  --funding-gap: 22px;
  --funding-per-view: 4;
  padding: 4px 54px 48px;
}

.funding-viewport {
  overflow: hidden;
  padding: 18px 3px 26px;
  cursor: grab;
  direction: ltr;
  touch-action: pan-y;
}

.funding-viewport:active {
  cursor: grabbing;
}

.funding-track {
  display: flex;
  gap: var(--funding-gap);
  will-change: transform;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.funding-track.is-dragging {
  transition: none;
}

.funding-slide {
  position: relative;
  flex: 0 0 calc((100% - (var(--funding-gap) * (var(--funding-per-view) - 1))) / var(--funding-per-view));
  /* min-height: 265px; */
  padding: 10px 10px 24px;
  background: var(--white);
  border: 1px solid rgba(199, 150, 69, .22);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(53, 34, 23, .09);
  text-align: center;
  direction: rtl;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  align-content: center;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.funding-slide::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: .95;
}

.funding-slide:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 150, 69, .48);
  box-shadow: 0 24px 58px rgba(53, 34, 23, .14);
}

.funding-slide img {
  margin: auto;
  
  padding: 8px;
  border-radius: var(--radius);
  background: #fff;
  filter: saturate(.96) contrast(1.03);
  text-align: center;
  align-self: center;
}

.funding-slide h3 {
  min-height: 58px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.funding-slide p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.funding-arrow {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(199, 150, 69, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--red);
  box-shadow: 0 12px 30px rgba(53, 34, 23, .12);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.funding-arrow:hover,
.funding-arrow:focus-visible {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
  outline: none;
}

.funding-arrow span {
  display: block;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-2px);
}

.funding-arrow-next {
  left: 0;
}

.funding-arrow-prev {
  right: 0;
}

.funding-dots {
  position: absolute;
  right: 50%;
  bottom: 0;
  display: flex;
  gap: 9px;
  transform: translateX(50%);
}

.funding-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(143, 31, 40, .22);
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
}

.funding-dot.is-active {
  width: 28px;
  background: var(--gold);
}

.success { background: white; }
.success::before {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.88)), url("./assets/success-bg.jpg") center / cover no-repeat;
}
.chips, .idea-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chips span, .idea-list span { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 14px; font-weight: 800; box-shadow: 0 8px 20px rgba(53, 34, 23, .05); }
.idea-list { justify-content: flex-start; }
.ideas::before {
 background: radial-gradient(circle at 88% 22%, rgba(199,150,69,.2), transparent 28%), linear-gradient(90deg, rgba(255,250,243,.96), rgba(255,250,243,.86));
  opacity: .9;
}
.idea-list span { background: #f9fbfa; border-color: #dfece9; color: #244a45; }

.founder { background: white; }
.founder-grid { grid-template-columns: 360px 1fr; align-items: center; }
.founder-photo img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: var(--radius); box-shadow: var(--shadow); }
blockquote { margin: 26px 0 0; padding: 22px; border-right: 4px solid var(--gold); background: var(--soft); border-radius: var(--radius); font-weight: 900; }
.quote-card { padding: 28px; min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; }
.quote-card p { font-size: 19px; color: #3e3833; }
.quote-card strong { color: var(--red); }

.faq-grid { grid-template-columns: 340px 1fr; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: white; padding: 20px 22px; text-align: right; font: inherit; font-weight: 900; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; gap: 20px; }
.faq-question::after { content: "+"; color: var(--red); font-size: 24px; line-height: 1; }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 22px 22px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.final-cta { position: relative; padding: 96px 0; background: #b05a55; color: white; overflow: hidden; }
.final-cta::before {
  background: linear-gradient(90deg, rgba(85, 31, 31, .64), rgba(154, 51, 55, .58)), url("./assets/contact-bg.webp") center / cover no-repeat;
  opacity: .86;
}
.final-card { padding: clamp(34px, 6vw, 66px); border-radius: var(--radius);

      background: linear-gradient(135deg, #6f151d 0%, #6f151d 54%, rgb(121, 44, 34) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.616) !important;
  border: 1px solid rgba(255,255,255,.18);}
.final-card p:not(.eyebrow) { color: rgba(255,255,255,.9); max-width: 780px; }

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-18px, 12px, 0); }
}

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

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(37, 211, 102, .34); }
  50% { box-shadow: 0 16px 40px rgba(37, 211, 102, .5), 0 0 0 10px rgba(37, 211, 102, .12); }
}

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

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
   .button-cta{
    .header-cta {
  display: inline-block !important;
font-size: 12px !important;}
svg{
  display: none !important;
}
}
  .menu-toggle { display: block; }
  .nav { height: 70px; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .hero-grid, .two-col, .split, .founder-grid, .faq-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .hero-copy, .lead-card { width: 100%; max-width: 100%; min-width: 0; }
  .hero-copy, .hero-lead { text-align: center; margin-inline: auto; }
  .hero-actions, .trust-line { justify-content: center; }
  .section-head { position: static; }
  .three, .four, .process, .benefits, .stats-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .funding-carousel {
    --funding-per-view: 2;
    padding-inline: 48px;
  }
  .hero { min-height: auto; padding-top: 116px; }
}

@media (max-width: 640px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  body { direction: ltr; }
  .site-header, main, footer { direction: rtl; }
  body, .site-header, main, section, footer { max-width: 100vw; }
  .container { width: calc(100% - 24px); max-width: calc(100vw - 24px); margin-inline: 12px; }
  .nav { position: relative; gap: 12px; justify-content: space-between; overflow: hidden; }
  /* .site-header::after { content: ""; position: absolute; left: 66px; top: 14px; width: 42px; height: 42px; background: url("./assets/logo.JPG") center/contain no-repeat; z-index: 2; } */
  /* .brand { display: none; } */
  /* .nav::after { content: none; } */
  /* .brand img { width: 42px; height: 42px; } */
  .brand strong { font-size: 14px; }
  .menu-toggle { position: absolute; left: 0; top: 50%; transform: translateY(-50%); flex: 0 0 44px; }
  .hero, .stats, .section, .final-cta, .footer { overflow: hidden; }
  .hero { padding-bottom: 46px; }
  /* .hero-overlay { 
    background: linear-gradient(180deg, rgba(94, 17, 24, .82), rgba(23, 23, 23, .72)); 

  } */

  /* .hero-overlay {
  background: linear-gradient(
    100deg,
    rgba(18, 8, 8, .8) 0%,
    rgba(94, 17, 24, .82) 45%,
    rgba(143, 31, 40, .5) 100%
  );
} */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(18, 8, 8, .85) 0%,
      rgba(94, 17, 24, .88) 55%,
      rgba(18, 8, 8, .78) 100%
    );}

  .intro::before, .why::before, .success::before, .ideas::before, .final-cta::before { background-size: cover; background-position: center; }
  .intro::before, .why::before, .ideas::before { opacity: .38; }
  .brand span { display: none; }
  h1 { max-width: 310px; margin-inline: auto; font-size: 25px; line-height: 1.32; word-break: break-all; }
  h2 { font-size: 27px; }
  h1, h2, h3, p, a, button, span, li { overflow-wrap: anywhere; word-break: break-word; }
  .hero-grid, .hero-copy, .lead-card, .hero-actions, .trust-line { min-width: 0; max-width: 100%; }
  .hero-grid > *, .cards > *, .process > *, .benefits > *, .stats-grid > *, .footer-grid > * { min-width: 0; max-width: 100%; }
  .hero-lead { max-width: 330px; font-size: 16px; }
  .lead-card { padding: 22px; text-align: center; }
  .lead-card h2 { max-width: 300px; margin-inline: auto; font-size: 25px; }
  .lead-card li { text-align: center; font-size: 15px; }
  .section { padding: 68px 0; }
  .three, .four, .process, .benefits, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .funding-carousel {
    --funding-gap: 14px;
    --funding-per-view: 1;
    padding: 0 42px 42px;
  }
  .funding-viewport {
    padding-top: 12px;
  }
  .funding-slide {
    min-height: 250px;
    padding-inline: 18px;
  }
  .funding-slide img {
    width: 118px;
    height: 78px;
  }
  .funding-slide h3 {
    min-height: auto;
    font-size: 17px;
  }
  .funding-arrow {
    width: 38px;
    height: 38px;
  }
  .funding-arrow span {
    font-size: 29px;
  }
  .process-step { grid-template-columns: 48px 1fr; padding: 18px; }
  .process-step span { width: 48px; height: 48px; font-size: 20px; }
  .hero-actions .btn { width: 100%; }
  .trust-line span { flex: 1 1 100%; text-align: center; }
  .stats-grid strong { font-size: 38px; }
  .brand small { display: none; }
 .founder-photo img {display: none;}
  /* .founder-photo img { aspect-ratio: 1 / 1; object-position: center; } */
}

@media (max-width:980px) {
   .founder-photo img {display: none;}
}

/* ======= FOOTER ======= */
.footer {
  background: var(--ink-soft);
  padding: 68px 0 28px;
  /* color: rgba(255, 255, 255, 0.65); */
  color :white
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 38px;
  height: 38px;
  /* border-radius: var(--radius-sm); */
  border-bottom-right-radius: var(--radius-md);
  /* object-fit: contain; */
  /* background: white; */
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.footer-logo-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-about-text {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 20px;
  /* background: var(--crimson); */
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  width: fit-content;
  align-items: center;
  margin-top: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  color: var(--gold);
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
}

.social-link:hover {
  color: var(--gold-light);
  background: transparent;
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 15px;
  /* color: rgba(255, 255, 255, 0.5); */
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.footer-contact-text {
  font-size: 12px;
  /* color: rgba(255, 255, 255, 0.5); */
  color: white;
   font-weight: bold;
  line-height: 1.5;
}

.footer-contact-text a {
  /* color: rgba(255, 255, 255, 0.7); */
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.footer-contact-text a:hover {
  color: white;
}

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

.footer-copy {
  font-size: 12px;
}

.footer-keywords {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
  max-width: 580px;
  text-align: left;
  line-height: 1.6;
}

/* ======= STICKY WHATSAPP ======= */
.sticky-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.sticky-wa-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6);
  }
}

.sticky-wa-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.5);
}

.sticky-wa-btn svg {
  width: 28px;
  height: 28px;
  color: white;
}

.sticky-wa-label {
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 1s ease 2s both;
  transition: opacity 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
  /* .button-cta{
  display: block !important;
} */
    .button-cta{
    .header-cta {
  display: inline-block !important;
font-size: 12px !important;}
svg{
  display: none !important;
}
}
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  
}



@media (max-width: 768px) {
 
   .button-cta{
    .header-cta {
  display: inline-block !important;
font-size: 12px !important;}
svg{
  display: none !important;
}
}
  .footer-col-title {
text-align: center;
  }
  .footer-inner {
  grid-template-columns: 1fr;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  align-items: center;
}

.footer-contact-items {
  align-items: center;
}

.footer-contact-item {
  justify-content: center;
  text-align: center;
}

.footer-contact-icon {
  margin: 0 auto;
}

.footer-contact-text {
  text-align: center;
}

.footer-keywords {
  text-align: center;
}

.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-copy {
  text-align: center;
}
.footer-about,
 .footer-logo-text,
.footer-description {
  text-align: center;
}
/* .footer-logo, */
.footer-brand,
/* .footer-brand img, */
.footer-logo-text {
  /* margin-left: auto; */
  margin-right: auto;
}

  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-brand p {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
 

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

  .footer-keywords {
    text-align: center;
  }

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


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

  .sticky-wa-label {
    display: none;
  }
}
