/* ============================================================
   HOME-NEW.CSS — Digital Advengers Redesign
   Dark theme | Poppins | Purple-Pink CTA pill | Production
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --da-bg:          #0a0a0a;
  --da-bg-nav:      #0d0d0d;
  --da-purple:      #7c3aed;
  --da-purple-lt:   #a855f7;
  --da-pink:        #c026d3;
  --da-red:         #e11d48;
  --da-white:       #ffffff;
  --da-grey:        #a0aec0;
  --da-grey-lt:     #cbd5e1;
  --da-border:      rgba(124, 58, 237, 0.18);
  --da-font:        'Poppins', sans-serif;
  --da-nav-h:       78px;
  --da-mob-h:       64px;
  --da-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --da-h2-size:     clamp(2rem, 3.6vw, 4.2rem);
  --da-body-size:   clamp(0.875rem, 1vw, 0.9375rem);
   --da-crt-bleed:   clamp(72px, 8.5vw, 108px);
}
@media (max-width: 900px)  { :root { --da-h2-size: clamp(1.85rem, 5.5vw, 2.6rem); } }
@media (max-width: 640px)  { :root { --da-h2-size: clamp(1.65rem, 7vw, 2.2rem); --da-body-size: 0.875rem; } }
@media (max-width: 480px)  { :root { --da-h2-size: clamp(1.45rem, 7.5vw, 2rem); --da-body-size: 0.855rem; } }

*, *::before, *::after { box-sizing: border-box; }
body.da-new-theme { background-color: var(--da-bg); color: var(--da-white); font-family: var(--da-font); margin: 0; padding: 0; }

/* ============================================================
   DESKTOP HEADER
   ============================================================ */
.da-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: var(--da-nav-h);
  background: linear-gradient(105deg,#0d0d0d 0%,#0d0d0d 52%,rgba(70,15,130,0.6) 78%,rgba(110,20,150,0.8) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  animation: daHeaderSlideIn 0.45s var(--da-ease) both;
}
@keyframes daHeaderSlideIn { from { opacity:0; transform:translateY(-100%); } to { opacity:1; transform:translateY(0); } }
.da-header.scrolled {
  background: linear-gradient(105deg,#080808 0%,#080808 52%,rgba(70,15,130,0.75) 78%,rgba(110,20,150,0.95) 100%);
  box-shadow: 0 4px 40px rgba(0,0,0,0.85);
}
.da-header__inner { max-width:1400px; width:100%; margin:0 auto; padding:0 40px; height:100%; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.da-header__logo  { flex-shrink:0; display:flex; align-items:center; text-decoration:none; transition:opacity 0.25s ease; }
.da-header__logo:hover { opacity:0.85; }
.da-header__logo img { height:50px; width:auto; display:block; }

.da-nav { display:flex; align-items:center; list-style:none; margin:0; padding:0; gap:0; animation:daNavFadeIn 0.5s var(--da-ease) 0.15s both; }
@keyframes daNavFadeIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.da-nav__item { position:relative; }
.da-nav__link { display:inline-flex; align-items:center; gap:5px; padding:10px 16px; font-family:var(--da-font); font-size:14px; font-weight:400; color:rgba(255,255,255,0.88); text-decoration:none; border-radius:6px; letter-spacing:0.01em; white-space:nowrap; position:relative; transition:color 0.25s ease,background 0.25s ease; }
.da-nav__link::after { content:''; position:absolute; bottom:5px; left:16px; right:16px; height:1.5px; background:linear-gradient(90deg,var(--da-purple),var(--da-pink)); border-radius:2px; transform:scaleX(0); transform-origin:left; transition:transform 0.28s var(--da-ease); }
.da-nav__link:hover::after,.da-nav__item.active>.da-nav__link::after { transform:scaleX(1); }
.da-nav__link:hover,.da-nav__item.active>.da-nav__link { color:#fff; }
.da-nav__link .da-caret { font-size:9px; opacity:0.6; transition:transform 0.25s ease,opacity 0.25s ease; }
.da-nav__item:hover>.da-nav__link .da-caret { transform:rotate(180deg); opacity:1; }

.da-dropdown { position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%) translateY(8px); min-width:224px; background:#131313; border:1px solid rgba(124,58,237,0.22); border-radius:12px; padding:8px 6px; opacity:0; visibility:hidden; pointer-events:none; transition:opacity 0.22s ease,transform 0.22s ease,visibility 0.22s; box-shadow:0 20px 60px rgba(0,0,0,0.7); z-index:200; list-style:none; margin:0; }
.da-dropdown::before { content:''; position:absolute; top:-5px; left:50%; transform:translateX(-50%) rotate(45deg); width:9px; height:9px; background:#131313; border-top:1px solid rgba(124,58,237,0.22); border-left:1px solid rgba(124,58,237,0.22); }
.da-nav__item:hover>.da-dropdown,
.da-nav__item:focus-within>.da-dropdown,
.da-nav__item.da-dropdown--open>.da-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.da-dropdown__link { display:flex; align-items:center; gap:10px; padding:10px 14px; font-family:var(--da-font); font-size:13px; font-weight:400; color:var(--da-grey); text-decoration:none; border-radius:8px; transition:color 0.22s ease,background 0.22s ease,padding-left 0.22s ease; }
.da-dropdown__link:hover { color:#fff; background:rgba(124,58,237,0.13); padding-left:18px; }
.da-dropdown__link .da-dot { width:5px; height:5px; border-radius:50%; background:linear-gradient(135deg,var(--da-purple),var(--da-pink)); flex-shrink:0; opacity:0; transform:scale(0); transition:opacity 0.2s ease,transform 0.2s ease; }
.da-dropdown__link:hover .da-dot { opacity:1; transform:scale(1); }

.da-header__cta { flex-shrink:0; display:inline-flex; align-items:center; padding:0; background:linear-gradient(100deg,#6d28d9 0%,#9d174d 50%,#be185d 100%); color:#fff; text-decoration:none; border-radius:999px; border:none; cursor:pointer; overflow:hidden; position:relative; transition:filter 0.25s ease,box-shadow 0.25s ease,transform 0.25s ease; box-shadow:0 4px 22px rgba(109,40,217,0.4); animation:daCtaPopIn 0.5s var(--da-ease) 0.25s both; }
@keyframes daCtaPopIn { from { opacity:0; transform:scale(0.82); } to { opacity:1; transform:scale(1); } }
.da-header__cta:hover { filter:brightness(1.12); box-shadow:0 8px 32px rgba(190,24,93,0.55); transform:translateY(-1px); color:#fff; }
.da-cta__text { font-family:var(--da-font); font-size:12px; font-weight:700; letter-spacing:0.07em; text-transform:uppercase; padding:0 18px 0 24px; color:#fff; white-space:nowrap; line-height:1; }
.da-cta__arrow { display:flex; align-items:center; justify-content:center; width:44px; height:44px; background:rgba(0,0,0,0.38); border-radius:50%; margin:3px 3px 3px 0; flex-shrink:0; transition:background 0.25s ease; }
.da-header__cta:hover .da-cta__arrow { background:rgba(0,0,0,0.55); }
.da-cta__arrow i { font-size:14px; color:#fff; transform:rotate(-45deg); transition:transform 0.25s ease; }
.da-header__cta:hover .da-cta__arrow i { transform:rotate(-45deg) scale(1.2); }

/* ============================================================
   MOBILE HEADER  —  position:fixed on ALL screens
   ============================================================ */
.da-mobile-header { display:none; position:fixed; top:0; left:0; right:0; z-index:9999; height:var(--da-mob-h); background:linear-gradient(105deg,#0d0d0d 0%,rgba(70,15,130,0.45) 100%); border-bottom:1px solid rgba(255,255,255,0.06); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); }
.da-mobile-header__inner { width:100%; height:100%; padding:0 18px; display:flex; flex-direction:row; align-items:center; justify-content:space-between; }
.da-mobile-header__logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; max-width:calc(100% - 60px); }
.da-mobile-header__logo img { height:36px; width:auto; display:block; }
.da-hamburger { flex-shrink:0; display:flex; align-items:center; justify-content:center; width:42px; height:42px; min-width:42px; background:rgba(124,58,237,0.1); border:1px solid rgba(124,58,237,0.28); border-radius:8px; cursor:pointer; color:#fff; font-size:18px; padding:0; margin:0; transition:background 0.22s ease,border-color 0.22s ease; -webkit-tap-highlight-color:transparent; outline:none; line-height:1; }
.da-hamburger:hover,.da-hamburger:focus { background:rgba(124,58,237,0.22); border-color:rgba(124,58,237,0.5); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.da-sidebar-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.75); z-index:10000; opacity:0; pointer-events:none; transition:opacity 0.3s ease; backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); }
.da-sidebar-overlay.open { opacity:1; pointer-events:all; }
.da-sidebar { position:fixed; top:0; right:-310px; width:290px; height:100%; height:100dvh; background:#0f0f0f; border-left:1px solid rgba(124,58,237,0.18); z-index:10001; overflow-y:auto; overflow-x:hidden; transition:right 0.32s cubic-bezier(0.4,0,0.2,1); display:flex; flex-direction:column; box-shadow:-12px 0 60px rgba(0,0,0,0.65); }
.da-sidebar.open { right:0; }
.da-sidebar__head { display:flex; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid rgba(255,255,255,0.05); flex-shrink:0; background:rgba(124,58,237,0.05); }
.da-sidebar__head img { height:32px; width:auto; }
.da-sidebar__close { display:flex; align-items:center; justify-content:center; width:36px; height:36px; min-width:36px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:7px; cursor:pointer; color:var(--da-grey); font-size:17px; padding:0; margin:0; transition:color 0.22s ease,background 0.22s ease; outline:none; -webkit-tap-highlight-color:transparent; line-height:1; flex-shrink:0; }
.da-sidebar__close:hover { color:#fff; background:rgba(255,255,255,0.1); }
.da-sidebar__nav { list-style:none; margin:0; padding:6px 0; flex:1; }
.da-sidebar__nav-item { border-bottom:1px solid rgba(255,255,255,0.04); }
.da-sidebar__nav-link { display:flex; align-items:center; justify-content:space-between; padding:14px 18px; font-family:var(--da-font); font-size:14px; font-weight:500; color:var(--da-grey-lt); text-decoration:none; transition:color 0.22s ease,background 0.22s ease; cursor:pointer; user-select:none; -webkit-tap-highlight-color:transparent; }
.da-sidebar__nav-link:hover { color:#fff; background:rgba(124,58,237,0.07); }
.da-sidebar__nav-link .da-caret { font-size:10px; opacity:0.55; transition:transform 0.25s ease; flex-shrink:0; }
.da-sidebar__nav-item.sub-open>.da-sidebar__nav-link { color:#fff; background:rgba(124,58,237,0.07); }
.da-sidebar__nav-item.sub-open>.da-sidebar__nav-link .da-caret { transform:rotate(180deg); opacity:1; }
.da-sidebar__sub { list-style:none; margin:0; padding:0; max-height:0; overflow:hidden; background:rgba(0,0,0,0.18); transition:max-height 0.3s ease; }
.da-sidebar__nav-item.sub-open>.da-sidebar__sub { max-height:500px; }
.da-sidebar__sub-link { display:flex; align-items:center; gap:10px; padding:11px 18px 11px 32px; font-family:var(--da-font); font-size:13px; font-weight:400; color:#72728a; text-decoration:none; transition:color 0.22s ease,padding-left 0.22s ease; -webkit-tap-highlight-color:transparent; }
.da-sidebar__sub-link::before { content:''; width:4px; height:4px; border-radius:50%; background:linear-gradient(135deg,var(--da-purple),var(--da-pink)); flex-shrink:0; }
.da-sidebar__sub-link:hover { color:#fff; padding-left:36px; }
.da-sidebar__footer { padding:16px 16px 22px; border-top:1px solid rgba(255,255,255,0.05); flex-shrink:0; background:rgba(0,0,0,0.2); }
.da-sidebar__footer-cta { display:inline-flex; align-items:center; width:100%; padding:0; background:linear-gradient(100deg,#6d28d9 0%,#9d174d 55%,#be185d 100%); color:#fff; font-family:var(--da-font); text-decoration:none; border-radius:999px; margin-bottom:16px; box-shadow:0 4px 18px rgba(109,40,217,0.3); overflow:hidden; transition:filter 0.22s ease,box-shadow 0.22s ease; -webkit-tap-highlight-color:transparent; }
.da-sidebar__footer-cta:hover { filter:brightness(1.1); box-shadow:0 6px 26px rgba(190,24,93,0.45); color:#fff; }
.da-sidebar__footer-cta .da-cta__text { font-size:11.5px; padding:0 14px 0 18px; }
.da-sidebar__footer-cta .da-cta__arrow { width:36px; height:36px; margin:2px 2px 2px 0; background:rgba(0,0,0,0.35); }
.da-sidebar__footer-cta .da-cta__arrow i { font-size:12px; }
.da-sidebar__contact-item { display:flex; align-items:flex-start; gap:11px; margin-bottom:11px; }
.da-sidebar__contact-icon { color:var(--da-purple-lt); font-size:12px; margin-top:3px; flex-shrink:0; }
.da-sidebar__contact-text { font-size:12px; line-height:1.65; }
.da-sidebar__contact-text a { display:block; color:var(--da-grey); text-decoration:none; transition:color 0.22s ease; }
.da-sidebar__contact-text a:hover { color:#fff; }
.da-sidebar__social { display:flex; gap:8px; margin-top:12px; flex-wrap:wrap; }
.da-sidebar__social a { width:34px; height:34px; border-radius:7px; border:1px solid rgba(124,58,237,0.2); display:flex; align-items:center; justify-content:center; color:var(--da-grey); font-size:13px; text-decoration:none; transition:color 0.22s ease,border-color 0.22s ease,background 0.22s ease; -webkit-tap-highlight-color:transparent; }
.da-sidebar__social a:hover { color:#fff; border-color:var(--da-purple); background:rgba(124,58,237,0.15); }

/* ============================================================
   BODY OFFSET
   ============================================================ */
.da-body-offset { padding-top: var(--da-nav-h); }

/* ============================================================
   HEADER BREAKPOINT SWAP
   ============================================================ */
@media (max-width: 1024px) {
  .da-header        { display: none !important; }
  .da-mobile-header { display: block !important; }
  .da-body-offset   { padding-top: var(--da-mob-h); }
}
@media (max-width: 400px) {
  .da-sidebar              { width:268px; }
  .da-mobile-header__inner { padding:0 14px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.da-footer { background:#0d0d0d; border-top:1px solid rgba(255,255,255,0.05); font-family:var(--da-font); }
.da-footer__inner { max-width:1400px; width:100%; margin:0 auto; padding:0 40px; }
.da-footer__grid { display:grid; grid-template-columns:1.6fr 1fr 1.1fr 1.3fr; gap:48px; padding:72px 0 56px; }
.da-footer__logo { display:inline-block; margin-bottom:22px; text-decoration:none; }
.da-footer__logo img { height:60px; width:auto; display:block; }
.da-footer__about { font-size:13.5px; font-weight:300; line-height:1.8; color:#8a8a9a; margin:0 0 28px; max-width:320px; }
.da-footer__socials { display:flex; gap:10px; flex-wrap:wrap; }
.da-footer__social-link { display:flex; align-items:center; justify-content:center; width:40px; height:40px; background:#7c3aed; border-radius:8px; color:#fff; font-size:15px; text-decoration:none; flex-shrink:0; transition:background 0.25s ease,transform 0.25s ease,box-shadow 0.25s ease; }
.da-footer__social-link:hover { background:#6d28d9; transform:translateY(-3px); box-shadow:0 8px 20px rgba(124,58,237,0.45); color:#fff; }
.da-footer__heading { font-family:var(--da-font); font-size:13px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:#7c3aed; margin:0 0 28px; padding:0; }
.da-footer__heading--touch { color:#a855f7; }
.da-footer__links { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.da-footer__link { font-size:14px; font-weight:400; color:#c4c4d4; text-decoration:none; display:inline-block; transition:color 0.22s ease,padding-left 0.22s ease; }
.da-footer__link:hover { color:#fff; padding-left:6px; }
.da-footer__contact { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:16px; }
.da-footer__contact-item { display:flex; align-items:flex-start; gap:12px; }
.da-footer__contact-icon { display:flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:6px; font-size:12px; flex-shrink:0; margin-top:1px; }
.da-footer__contact-icon--email { background:rgba(124,58,237,0.18); color:#a855f7; }
.da-footer__contact-icon--phone { background:rgba(124,58,237,0.18); color:#a855f7; }
.da-footer__contact-icon--loc   { background:rgba(192,38,211,0.15); color:#c026d3; }
.da-footer__contact-text { font-size:13.5px; font-weight:400; color:#c4c4d4; text-decoration:none; line-height:1.6; transition:color 0.22s ease; }
.da-footer__contact-text:hover { color:#fff; }
.da-footer__bottom { border-top:1px solid rgba(255,255,255,0.06); background:#090909; }
.da-footer__bottom-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 0; flex-wrap:wrap; }
.da-footer__copy { font-size:13px; font-weight:400; color:#5a5a6a; margin:0; }
.da-footer__legal { list-style:none; margin:0; padding:0; display:flex; gap:24px; }
.da-footer__legal-link { font-size:13px; color:#5a5a6a; text-decoration:none; transition:color 0.22s ease; }
.da-footer__legal-link:hover { color:#fff; }

@media (max-width:1100px) { .da-footer__grid { grid-template-columns:1fr 1fr; gap:40px; padding:60px 0 48px; } }
@media (max-width:640px)  { .da-footer__grid { grid-template-columns:1fr; gap:36px; padding:48px 0 40px; } .da-footer__inner { padding:0 20px; } .da-footer__about { max-width:100%; } .da-footer__bottom-inner { flex-direction:column; align-items:flex-start; gap:10px; } }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.da-float-buttons { position:fixed; bottom:28px; right:28px; display:flex; flex-direction:column; gap:12px; z-index:8000; }
.da-float-btn { position:relative; display:flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:50%; color:#fff; font-size:20px; text-decoration:none; box-shadow:0 4px 20px rgba(0,0,0,0.4); transition:transform 0.25s ease,box-shadow 0.25s ease; }
.da-float-btn:hover { transform:scale(1.1) translateY(-2px); color:#fff; }
.da-float-btn--phone { background:linear-gradient(135deg,#7c3aed,#6d28d9); box-shadow:0 4px 20px rgba(124,58,237,0.45); }
.da-float-btn--phone:hover { box-shadow:0 8px 28px rgba(124,58,237,0.65); }
.da-float-btn--wa    { background:linear-gradient(135deg,#25D366,#128C7E); box-shadow:0 4px 20px rgba(37,211,102,0.4); }
.da-float-btn--wa:hover { box-shadow:0 8px 28px rgba(37,211,102,0.6); }
.da-float-btn--phone::after,.da-float-btn--wa::after { content:''; position:absolute; inset:0; border-radius:50%; animation:da-pulse 2.4s ease-out infinite; pointer-events:none; }
.da-float-btn--phone::after { background:rgba(124,58,237,0.35); }
.da-float-btn--wa::after    { background:rgba(37,211,102,0.3); }
@keyframes da-pulse { 0% { transform:scale(1); opacity:0.7; } 70% { transform:scale(1.65); opacity:0; } 100% { transform:scale(1.65); opacity:0; } }
.da-spinner { width:20px; height:20px; border:3px solid rgba(255,255,255,0.15); border-top-color:#a855f7; border-radius:50%; animation:da-spin 0.75s linear infinite; display:inline-block; vertical-align:middle; }
@keyframes da-spin { to { transform:rotate(360deg); } }
@media (max-width:640px) { .da-float-buttons { bottom:20px; right:18px; } .da-float-btn { width:46px; height:46px; font-size:18px; } }

/* ============================================================
   HERO SECTION
   ============================================================ */
.da-hero { position:relative; min-height:calc(100vh - var(--da-nav-h)); background-image:url('../web/HomeBanner.webp'); background-size:cover; background-position:center center; background-repeat:no-repeat; display:flex; align-items:center; overflow:hidden; }
.da-hero::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(10,10,10,0.93) 0%,rgba(10,10,10,0.82) 38%,rgba(10,10,10,0.30) 62%,transparent 100%); z-index:1; pointer-events:none; }

/* Vertical typewriter — desktop only */
.da-hero-vert-outer { position:absolute; left:0; top:0; bottom:0; width:clamp(108px,11vw,152px); z-index:4; pointer-events:none; }
.da-hero-vert-inner { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) rotate(-90deg); display:inline-flex; flex-direction:row; align-items:center; white-space:nowrap; font-family:'Bebas Neue',sans-serif; font-size:clamp(2.8rem,4.4vw,5.2rem); color:#ffffff; letter-spacing:0.09em; line-height:1; }

.da-vert-char { display:inline-block; opacity:0; transform:translateY(-18px); transition:opacity 0.20s ease,transform 0.26s cubic-bezier(0.34,1.56,0.64,1); }
.da-vert-char.visible { opacity:1; transform:translateY(0); }
.da-vert-cursor { display:inline-block; width:3px; height:0.82em; background:linear-gradient(180deg,#7c3aed,#c026d3); margin-left:5px; vertical-align:middle; border-radius:1px; animation:daVertCursorBlink 0.75s step-end infinite; }
@keyframes daVertCursorBlink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* Mobile typewriter tag — hidden by default */
.da-hero-mob-type { display:none; flex-direction:column; gap:7px; margin-top:1.5rem; }
.da-hero-mob-type__line { width:38px; height:2px; background:linear-gradient(90deg,#7c3aed,#c026d3); border-radius:1px; }
.da-hero-mob-type__text { display:inline-flex; align-items:center; font-family:'Bebas Neue',sans-serif; font-size:1.05rem; letter-spacing:0.24em; color:rgba(255,255,255,0.42); min-height:1.3em; }

/* Content wrap */
.da-hero-content-wrap { position:relative; z-index:3; width:100%; max-width:1440px; margin:0 auto; padding:2.5rem clamp(1.5rem,5.5vw,4rem) 2.5rem clamp(132px,13.5vw,184px); }
.da-hero-content { max-width:680px; }

/* h1 */
.da-hero-h1 { font-family:'Poppins',sans-serif; font-weight:900; text-transform:uppercase; font-size:clamp(2rem,4.4vw,4.6rem); line-height:1.04; letter-spacing:-0.015em; margin:0 0 1.75rem; display:flex; flex-direction:column; gap:0.04em; }
.da-hw { display:block; color:#ffffff; font-style:normal; }
.da-hg { display:block; font-style:normal; background:linear-gradient(90deg,#7c3aed,#c026d3,#e11d48,#c026d3,#7c3aed); background-size:400% 100%; -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; animation:daGradShimmer 3.5s ease 0s infinite; }
.da-hg-inline { background:linear-gradient(90deg,#7c3aed,#c026d3,#e11d48,#c026d3,#7c3aed); background-size:400% 100%; -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; font-style:normal; animation:daGradShimmer 3.5s ease 0.5s infinite; }
/* .da-hg also carries .da-anim-up (entrance slide-up) in the hero markup — both classes set
   `animation`, and .da-anim-up (defined below) would otherwise win the cascade and silently
   replace the shimmer with only the one-time entrance. This combined-class rule outranks both
   single-class rules by specificity so both animations play together, in the correct order. */
.da-hg.da-anim-up { animation:daSlideUp 0.78s cubic-bezier(0.22,0.61,0.36,1) forwards, daGradShimmer 3.5s ease infinite; animation-delay:var(--d,0s), 0s; }

/* Eyebrow badge */
.da-hero-eyebrow { display:inline-flex; align-items:center; gap:8px; font-family:'Poppins',sans-serif; font-size:13px; font-weight:600; letter-spacing:0.02em; color:rgba(255,255,255,0.85); margin:0 0 1rem; }
.da-hero-eyebrow-icon { width:18px; height:18px; flex-shrink:0; }

/* Hero CTA button — sits under the sub paragraph */
.da-hero-cta { margin-top:1.75rem; }

/* Paragraph — shared token */
.da-hero-sub { font-family:'Poppins',sans-serif; font-size:var(--da-body-size); font-weight:400; color:rgba(255,255,255,0.68); line-height:1.88; max-width:540px; margin:0; }

.da-anim-up { opacity:0; transform:translateY(28px); animation:daSlideUp 0.78s cubic-bezier(0.22,0.61,0.36,1) forwards; animation-delay:var(--d,0s); }
@keyframes daSlideUp { to { opacity:1; transform:translateY(0); } }

.da-hero-bar { position:absolute; bottom:0; left:0; right:0; height:4px; background:linear-gradient(90deg,#e01f1f 50%,#1f3ee0 50%); z-index:5; }

/* Desktop breakpoints */
@media (max-width:1280px) { .da-hero-content { max-width:600px; } }
@media (max-width:1024px) {
  .da-hero { background-position:72% center; min-height:calc(100vh - var(--da-mob-h)); }
  .da-hero::before { background:linear-gradient(90deg,rgba(10,10,10,0.94) 0%,rgba(10,10,10,0.84) 44%,rgba(10,10,10,0.36) 68%,transparent 100%); }
  .da-hero-vert-outer { width:clamp(90px,11vw,132px); }
  .da-hero-vert-inner { font-size:clamp(2.2rem,3.8vw,4rem); }
  .da-hero-content-wrap { padding-left:clamp(112px,12.5vw,156px); padding-right:2rem; }
  .da-hero-content { max-width:520px; }
}
@media (max-width:900px) {
  .da-hero { background-position:76% center; }
  .da-hero-h1 { font-size:clamp(1.8rem,5.5vw,2.8rem); }
  .da-hero-vert-outer { width:clamp(80px,10vw,112px); }
  .da-hero-vert-inner { font-size:clamp(1.9rem,3.4vw,3.2rem); }
  .da-hero-content-wrap { padding-left:clamp(96px,11.5vw,138px); }
}

/* ============================================================
   HERO — MOBILE (<=768px)
   Centres ALL hero text. Hides vertical column.
   ============================================================ */
@media (max-width:768px) {
  .da-hero-vert-outer { display:none; }
  .da-hero-mob-type   { display:flex; }

  .da-hero {
    background-position: 78% center;
    min-height: 0;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }
  .da-hero::before {
    background: linear-gradient(160deg,rgba(10,10,10,0.97) 0%,rgba(10,10,10,0.90) 55%,rgba(10,10,10,0.55) 100%);
  }

  /* Reset wrap — flexbox for easy centering */
  .da-hero-content-wrap {
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
  }

  /* Centre the content block */
  .da-hero-content {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* h1 flex column centres its spans */
  .da-hero-h1 {
    align-items: center;
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
    margin-bottom: 1rem;
    width: 100%;
  }

  .da-hero-sub {
    font-size: 0.875rem;
    line-height: 1.78;
    max-width: 100%;
    text-align: center;
  }

  .da-hero-mob-type       { align-items: center; }
  .da-hero-mob-type__text { justify-content: center; }
}
@media (max-width:480px) { .da-hero { padding-bottom:3rem; } .da-hero-h1 { font-size:clamp(1.55rem,7vw,2rem); } .da-hero-sub { font-size:0.845rem; } }
@media (max-width:360px) { .da-hero { padding-top:2rem; } .da-hero-h1 { font-size:clamp(1.35rem,6.5vw,1.75rem); } }

/* ============================================================
   SOCIAL STRIP
   ============================================================ */
.da-sr-only { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.da-social-strip { position:relative; width:100%; overflow:hidden; background:linear-gradient(90deg,#5063d9 0%,#6038c8 24%,#7f2fbf 48%,#9e2c9d 70%,#b02d73 86%,#bb3c39 100%); border-top:1px solid rgba(255,255,255,0.06); border-bottom:1px solid rgba(0,0,0,0.22); box-shadow:inset 0 1px 0 rgba(255,255,255,0.10),inset 0 -1px 0 rgba(0,0,0,0.20); }
.da-social-strip::before { content:""; position:absolute; inset:-30% 0; background:linear-gradient(115deg,transparent 18%,rgba(255,255,255,0.18) 28%,transparent 38%); transform:translateX(-120%); animation:daSocialShine 7.5s linear infinite; pointer-events:none; }
.da-social-strip::after  { content:""; position:absolute; inset:0; background:radial-gradient(circle at 10% 50%,rgba(255,255,255,0.10),transparent 28%),radial-gradient(circle at 90% 50%,rgba(0,0,0,0.10),transparent 30%); pointer-events:none; }
@keyframes daSocialShine { 0% { transform:translateX(-120%); } 100% { transform:translateX(120%); } }

.da-social-strip__nav { position:relative; z-index:1; max-width:1440px; width:100%; margin:0 auto; padding:0 clamp(12px,2.8vw,40px); }
.da-social-strip__list { list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(7,minmax(0,1fr)); align-items:center; }
.da-social-strip__item { display:flex; justify-content:center; align-items:center; }

/* All icons share this base font-size */
.da-social-strip__link {
  position:relative; width:100%; min-height:clamp(72px,7vw,104px);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; color:#050505; line-height:1;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  opacity:0; transform:translateY(30px) scale(0.94);
  transition:transform 0.9s cubic-bezier(0.22,1,0.36,1),opacity 0.9s cubic-bezier(0.22,1,0.36,1);
  transition-delay:var(--d,0s);
}
.da-social-strip__link.is-visible { opacity:1; transform:translateY(0) scale(1); }
.da-social-strip__link::after { content:""; position:absolute; inset:18% 30%; border-radius:999px; background:rgba(255,255,255,0.10); filter:blur(12px); opacity:0; transform:scale(0.85); transition:opacity 0.28s ease,transform 0.28s ease; }
.da-social-strip__link:hover { transform:translateY(-5px) scale(1.08); filter:brightness(1.08); }
.da-social-strip__link:hover::after { opacity:1; transform:scale(1); }
.da-social-strip__link:focus-visible { outline:2px solid rgba(255,255,255,0.9); outline-offset:4px; border-radius:14px; }
.da-social-strip__link i { pointer-events:none; }

/* ── Amazon icon is visually smaller — boost the link font-size ── */
.da-social-strip__link--amazon { font-size: calc(clamp(2rem, 3.8vw, 3.8rem) * 1.2); }

@media (max-width:900px) {
  .da-social-strip__link         { min-height:70px; font-size:clamp(1.6rem,4.8vw,2.9rem); }
  .da-social-strip__link--amazon { font-size:calc(clamp(1.6rem,4.8vw,2.9rem) * 1.2); }
}
@media (max-width:560px) {
  .da-social-strip__nav          { padding:0 8px; }
  .da-social-strip__link         { min-height:58px; font-size:clamp(1.3rem,6.5vw,1.95rem); }
  .da-social-strip__link--amazon { font-size:calc(clamp(1.3rem,6.5vw,1.95rem) * 1.2); }
}
@media (max-width:380px) {
  .da-social-strip__link         { min-height:52px; font-size:clamp(1.1rem,6.2vw,1.6rem); }
  .da-social-strip__link--amazon { font-size:calc(clamp(1.1rem,6.2vw,1.6rem) * 1.2); }
}
@media (prefers-reduced-motion:reduce) { .da-social-strip::before,.da-social-strip__link { animation:none; transition:none; } }

/* ============================================================
   MISSION SECTION
   ============================================================ */
.da-mission { position:relative; overflow:hidden; background-color:#050505; background-image:url('../web/Home_back_A.webp'); background-repeat:no-repeat; background-position:center center; background-size:cover; padding:clamp(5.2rem,8vw,7.8rem) 0; }
.da-mission::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(5,5,5,0.30) 0%,rgba(5,5,5,0.06) 32%,rgba(5,5,5,0.03) 68%,rgba(5,5,5,0.25) 100%); pointer-events:none; }
.da-mission::after  { content:""; position:absolute; left:0; right:0; top:0; height:2px; background:linear-gradient(90deg,#7c3aed 0%,#c026d3 55%,#e11d48 100%); opacity:0.55; pointer-events:none; }
.da-mission__inner  { position:relative; z-index:1; max-width:1440px; margin:0 auto; padding:0 clamp(1.25rem,4vw,3.5rem); }
.da-mission__grid   { display:grid; grid-template-columns:minmax(0,0.98fr) minmax(0,1.02fr); gap:clamp(2rem,4.5vw,5rem); align-items:center; }
.da-mission__media  { position:relative; min-height:clamp(420px,42vw,620px); display:flex; align-items:center; justify-content:center; isolation:isolate; opacity:0; transform:translateX(-42px) scale(0.95); filter:blur(10px); clip-path:inset(8% 18% 8% 18% round 28px); transition:opacity 1.05s cubic-bezier(0.22,1,0.36,1),transform 1.05s cubic-bezier(0.22,1,0.36,1),filter 1.05s cubic-bezier(0.22,1,0.36,1),clip-path 1.05s cubic-bezier(0.22,1,0.36,1); }
.da-mission__media::before { content:""; position:absolute; inset:14% 10% 12% 10%; border-radius:50%; background:radial-gradient(circle,rgba(124,58,237,0.24) 0%,rgba(124,58,237,0.10) 28%,transparent 70%); filter:blur(34px); opacity:0.85; z-index:0; }
.da-mission__image  { position:relative; z-index:1; width:min(100%,640px); height:auto; display:block; transform-origin:center bottom; filter:drop-shadow(0 24px 50px rgba(0,0,0,0.62)); will-change:transform,opacity,filter; }
.da-mission__content { max-width:640px; }
.da-mission__eyebrow { margin:0 0 0.8rem; font-family:'Bebas Neue',sans-serif; font-size:clamp(1.05rem,1.55vw,1.5rem); letter-spacing:0.22em; text-transform:uppercase; color:#a855f7; opacity:0; transform:translateY(18px); filter:blur(8px); transition:opacity 0.85s cubic-bezier(0.22,1,0.36,1),transform 0.85s cubic-bezier(0.22,1,0.36,1),filter 0.85s cubic-bezier(0.22,1,0.36,1); }

/* h2 — token */
.da-mission__title { margin:0 0 1.5rem; font-family:'Poppins',sans-serif; font-weight:900; text-transform:uppercase; line-height:1.0; letter-spacing:-0.03em; font-size:var(--da-h2-size); color:#ffffff; opacity:0; transform:translateY(22px); filter:blur(8px); transition:opacity 0.95s cubic-bezier(0.22,1,0.36,1),transform 0.95s cubic-bezier(0.22,1,0.36,1),filter 0.95s cubic-bezier(0.22,1,0.36,1); }
.da-mission__title span { display:inline-block; background:linear-gradient(90deg,#7c3aed 0%,#c026d3 52%,#e11d48 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

.da-mission__body { display:grid; gap:1rem; }
.da-mission__body p { margin:0; color:rgba(255,255,255,0.74); font-family:var(--da-font); font-size:var(--da-body-size); line-height:1.8; font-weight:400; opacity:0; transform:translateY(18px); filter:blur(8px); transition:opacity 0.8s cubic-bezier(0.22,1,0.36,1),transform 0.8s cubic-bezier(0.22,1,0.36,1),filter 0.8s cubic-bezier(0.22,1,0.36,1); }

.da-mission__cta { display:inline-flex; align-items:center; justify-content:center; margin-top:1.8rem; padding:14px 26px; border-radius:999px; text-decoration:none; color:#fff; font-family:var(--da-font); font-size:13px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; background:linear-gradient(100deg,#7c3aed 0%,#a855f7 48%,#c026d3 100%); box-shadow:0 10px 30px rgba(124,58,237,0.22); opacity:0; transform:translateY(20px) scale(0.98); filter:blur(6px); transition:opacity 0.9s cubic-bezier(0.22,1,0.36,1),transform 0.9s cubic-bezier(0.22,1,0.36,1),filter 0.9s cubic-bezier(0.22,1,0.36,1),box-shadow 0.35s var(--da-ease); }
.da-mission__cta:hover { color:#fff; filter:brightness(1.08); transform:translateY(-2px); box-shadow:0 14px 38px rgba(192,38,211,0.28); }

.da-mission.is-visible .da-mission__media    { opacity:1; transform:translateX(0) scale(1); filter:blur(0); clip-path:inset(0 0 0 0 round 0); }
.da-mission.is-visible .da-mission__eyebrow  { opacity:1; transform:translateY(0); filter:blur(0); transition-delay:0.08s; }
.da-mission.is-visible .da-mission__title    { opacity:1; transform:translateY(0); filter:blur(0); transition-delay:0.16s; }
.da-mission.is-visible .da-mission__body p   { opacity:1; transform:translateY(0); filter:blur(0); }
.da-mission.is-visible .da-mission__body p:nth-child(1) { transition-delay:0.24s; }
.da-mission.is-visible .da-mission__body p:nth-child(2) { transition-delay:0.33s; }
.da-mission.is-visible .da-mission__body p:nth-child(3) { transition-delay:0.42s; }
.da-mission.is-visible .da-mission__body p:nth-child(4) { transition-delay:0.51s; }
.da-mission.is-visible .da-mission__body p:nth-child(5) { transition-delay:0.60s; }
.da-mission.is-visible .da-mission__cta     { opacity:1; transform:translateY(0) scale(1); filter:blur(0); transition-delay:0.70s; }
.da-mission.is-visible .da-mission__image   { animation:daRocketFloat 6s ease-in-out 1.1s infinite alternate; }
@keyframes daRocketFloat { from { transform:translateY(0) scale(1); } to { transform:translateY(-8px) scale(1.01); } }

@media (max-width:1120px) { .da-mission { padding:76px 0 84px; } .da-mission__media { min-height:500px; } }
@media (max-width:900px)  { .da-mission__grid { grid-template-columns:1fr; } .da-mission__media { order:1; min-height:420px; } .da-mission__content { order:2; max-width:100%; } }
@media (max-width:640px)  { .da-mission { padding:62px 0 70px; } .da-mission__inner { padding:0 1.25rem; } .da-mission__media { min-height:310px; } .da-mission__image { width:min(100%,520px); } .da-mission__cta { width:100%; text-align:center; padding:15px 18px; font-size:12px; } }
@media (prefers-reduced-motion:reduce) { .da-mission__media,.da-mission__eyebrow,.da-mission__title,.da-mission__body p,.da-mission__cta { transition:none !important; animation:none !important; filter:none !important; clip-path:none !important; opacity:1 !important; transform:none !important; } }

/* ============================================================
   CAR RENTAL SECTION
   ============================================================ */
.da-car-section { position:relative; overflow:hidden; background-color:#050505; background-image:url('../web/Home_back_B.webp'); background-repeat:no-repeat; background-position:center center; background-size:cover; background-attachment:fixed; padding:clamp(4.5rem,7vw,7rem) 0; }
.da-car-section::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(5,5,5,0.72) 0%,rgba(5,5,5,0.40) 38%,rgba(5,5,5,0.18) 65%,rgba(5,5,5,0.55) 100%); pointer-events:none; z-index:0; }
.da-car-section::after  { content:""; position:absolute; left:0; right:0; top:0; height:2px; background:linear-gradient(90deg,#7c3aed 0%,#c026d3 55%,#e11d48 100%); opacity:0.6; pointer-events:none; z-index:2; }
.da-car-section__inner  { position:relative; z-index:1; max-width:1440px; margin:0 auto; padding:0 clamp(1.25rem,4vw,3.5rem); }
.da-car-section__grid   { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:clamp(2rem,4vw,4.5rem); align-items:center; }
.da-car-section__content { max-width:600px; opacity:0; transform:translateX(-36px) translateY(14px); filter:blur(8px); transition:opacity 0.95s cubic-bezier(0.22,1,0.36,1),transform 0.95s cubic-bezier(0.22,1,0.36,1),filter 0.95s cubic-bezier(0.22,1,0.36,1); }
.da-car-section__media   { position:relative; display:flex; justify-content:center; align-items:center; min-height:clamp(280px,34vw,520px); opacity:0; transform:translateX(36px) translateY(10px); filter:blur(8px); transition:opacity 1s cubic-bezier(0.22,1,0.36,1),transform 1s cubic-bezier(0.22,1,0.36,1),filter 1s cubic-bezier(0.22,1,0.36,1); transition-delay:0.1s; isolation:isolate; }
.da-car-section__media::before { content:""; position:absolute; inset:15% 10% 8% 10%; border-radius:50%; background:radial-gradient(circle,rgba(124,58,237,0.22) 0%,rgba(124,58,237,0.08) 40%,transparent 70%); filter:blur(40px); z-index:0; }
.da-car-section__image  { position:relative; z-index:1; width:100%; max-width:680px; height:auto; display:block; object-fit:contain; transform-origin:center bottom; filter:drop-shadow(0 20px 48px rgba(0,0,0,0.6)); will-change:transform; }
.da-car-section__eyebrow { margin:0 0 0.7rem; font-family:'Bebas Neue',sans-serif; font-size:clamp(0.9rem,1.2vw,1.25rem); letter-spacing:0.24em; text-transform:uppercase; color:#a855f7; }

/* h2 — token (same as mission) */
.da-car-section__title { margin:0 0 1.4rem; font-family:'Poppins',sans-serif; font-weight:900; text-transform:uppercase; line-height:1.04; letter-spacing:-0.025em; font-size:var(--da-h2-size); color:#ffffff; }
.da-car-section__title span { display:block; background:linear-gradient(90deg,#7c3aed 0%,#c026d3 52%,#e11d48 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin-top:0.08em; }

.da-car-section__list  { list-style:none; margin:0; padding:0; display:grid; gap:0.85rem; }
.da-car-section__item  { position:relative; padding-left:1.1rem; color:rgba(255,255,255,0.72); font-family:var(--da-font); font-size:var(--da-body-size); line-height:1.8; font-weight:400; opacity:0; transform:translateY(16px); filter:blur(6px); transition:opacity 0.75s cubic-bezier(0.22,1,0.36,1),transform 0.75s cubic-bezier(0.22,1,0.36,1),filter 0.75s cubic-bezier(0.22,1,0.36,1); }
.da-car-section__item::before { content:""; position:absolute; left:0; top:0.65em; width:5px; height:5px; border-radius:50%; background:linear-gradient(135deg,#7c3aed,#c026d3); }

.da-car-section__cta { display:inline-flex; align-items:center; justify-content:center; margin-top:1.75rem; padding:13px 28px; border-radius:999px; text-decoration:none; color:#fff; font-family:var(--da-font); font-size:12px; font-weight:700; letter-spacing:0.07em; text-transform:uppercase; background:transparent; border:1.5px solid transparent; background-image:linear-gradient(#0a0a0a,#0a0a0a),linear-gradient(100deg,#7c3aed,#c026d3,#e11d48); background-origin:border-box; background-clip:padding-box,border-box; box-shadow:0 6px 22px rgba(124,58,237,0.14); opacity:0; transform:translateY(14px) scale(0.98); filter:blur(5px); transition:opacity 0.85s cubic-bezier(0.22,1,0.36,1),transform 0.85s cubic-bezier(0.22,1,0.36,1),filter 0.85s cubic-bezier(0.22,1,0.36,1),box-shadow 0.28s ease; }
.da-car-section__cta:hover { color:#fff; filter:brightness(1.1); transform:translateY(-2px); box-shadow:0 10px 30px rgba(192,38,211,0.28); }

.da-car-section.is-visible .da-car-section__content,.da-car-section.is-visible .da-car-section__media { opacity:1; transform:translateX(0) translateY(0); filter:blur(0); }
.da-car-section.is-visible .da-car-section__media .da-car-section__image { animation:daCarFloat 6.5s ease-in-out 1.1s infinite alternate; }
.da-car-section.is-visible .da-car-section__item             { opacity:1; transform:translateY(0); filter:blur(0); }
.da-car-section.is-visible .da-car-section__item:nth-child(1){ transition-delay:0.16s; }
.da-car-section.is-visible .da-car-section__item:nth-child(2){ transition-delay:0.26s; }
.da-car-section.is-visible .da-car-section__item:nth-child(3){ transition-delay:0.36s; }
.da-car-section.is-visible .da-car-section__item:nth-child(4){ transition-delay:0.46s; }
.da-car-section.is-visible .da-car-section__cta              { opacity:1; transform:translateY(0) scale(1); filter:blur(0); transition-delay:0.58s; }
@keyframes daCarFloat { from { transform:translateY(0) scale(1); } to { transform:translateY(-10px) scale(1.015); } }

@media (max-width:1024px) { .da-car-section { background-attachment:scroll; padding:68px 0 76px; } }
@media (max-width:900px)  { .da-car-section__grid { grid-template-columns:1fr; gap:2rem; } .da-car-section__content { order:2; max-width:100%; } .da-car-section__media { order:1; justify-content:center; min-height:300px; } .da-car-section__image { max-width:560px; width:90%; } }
@media (max-width:640px)  { .da-car-section { padding:56px 0 64px; background-position:60% center; } .da-car-section__inner { padding:0 1.25rem; } .da-car-section__media { min-height:220px; } .da-car-section__image { width:100%; max-width:420px; } .da-car-section__cta { width:100%; text-align:center; font-size:11px; padding:13px 20px; } }
@media (prefers-reduced-motion:reduce) { .da-car-section__content,.da-car-section__media,.da-car-section__item,.da-car-section__cta { transition:none !important; animation:none !important; filter:none !important; opacity:1 !important; transform:none !important; } }

/* ============================================================
   STRATEGY SECTION
   ============================================================ */
.da-strategy { position:relative; overflow:hidden; background-color:#070707; background-image:url('../web/Home_back_C.webp'); background-repeat:no-repeat; background-position:center center; background-size:cover; padding:clamp(4.5rem,7vw,7rem) 0; }
.da-strategy::before { content:""; position:absolute; inset:0; background:radial-gradient(ellipse 80% 60% at 50% 50%,rgba(7,7,7,0.55) 0%,rgba(7,7,7,0.15) 55%,transparent 100%); pointer-events:none; z-index:0; }
.da-strategy::after  { content:""; position:absolute; left:0; right:0; top:0; height:2px; background:linear-gradient(90deg,#7c3aed 0%,#c026d3 55%,#e11d48 100%); opacity:0.6; pointer-events:none; z-index:2; }
.da-strategy__inner  { position:relative; z-index:1; max-width:1440px; margin:0 auto; padding:0 clamp(1.25rem,4vw,3.5rem); }

.da-strategy__header { text-align:center; max-width:860px; margin:0 auto clamp(2.5rem,4.5vw,4rem); opacity:0; transform:translateY(28px); filter:blur(8px); transition:opacity 0.95s cubic-bezier(0.22,1,0.36,1),transform 0.95s cubic-bezier(0.22,1,0.36,1),filter 0.95s cubic-bezier(0.22,1,0.36,1); }

/* Strategy h2 — slightly smaller since it's a long multi-word sentence */
.da-strategy__title { margin:0 0 1.2rem; font-family:'Poppins',sans-serif; font-weight:900; text-transform:uppercase; font-size:clamp(1.55rem,2.5vw,3rem); line-height:1.12; letter-spacing:-0.02em; color:#ffffff; font-style:normal; }
@keyframes daGradShimmer {
  0%   { background-position: 100% center; }
  50%  { background-position: 0%   center; }
  100% { background-position: 100% center; }
}
.da-strat-grad  { display:inline; font-style:normal; background:linear-gradient(90deg,#7c3aed,#c026d3,#e11d48,#c026d3,#7c3aed); background-size:400% 100%; -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; animation:daGradShimmer 3.5s ease 1.2s infinite; }
.da-strat-grad2 { display:inline; font-style:normal; background:linear-gradient(90deg,#7c3aed,#c026d3,#e11d48,#c026d3,#7c3aed); background-size:400% 100%; -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; animation:daGradShimmer 3.5s ease 1.6s infinite; }
.da-strategy__sub { margin:0 auto; font-family:var(--da-font); font-size:var(--da-body-size); font-weight:400; color:rgba(255,255,255,0.62); line-height:1.82; max-width:720px; }

.da-strategy__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(0.875rem,1.4vw,1.25rem); }

.da-strategy__card { position:relative; border-radius:14px; overflow:hidden; background-color:#101010; background-image:var(--strat-bg); background-size:cover; background-position:center center; border:1px solid rgba(255,255,255,0.05); cursor:pointer; opacity:0; transform:translateY(36px) scale(0.97); filter:blur(6px); transition:opacity 0.75s cubic-bezier(0.22,1,0.36,1),transform 0.75s cubic-bezier(0.22,1,0.36,1),filter 0.75s cubic-bezier(0.22,1,0.36,1),border-color 0.3s ease,box-shadow 0.3s ease; }
.da-strategy__card:hover { border-color:rgba(124,58,237,0.45); box-shadow:0 0 0 1px rgba(124,58,237,0.18),0 12px 40px rgba(124,58,237,0.18),0 4px 16px rgba(0,0,0,0.5); transform:translateY(-5px) scale(1.01) !important; }
.da-strategy__card--accent { border-color:rgba(192,38,211,0.12); }
.da-strategy__card--accent:hover { border-color:rgba(192,38,211,0.5); box-shadow:0 0 0 1px rgba(192,38,211,0.22),0 12px 40px rgba(192,38,211,0.18),0 4px 16px rgba(0,0,0,0.5); }
.da-strategy__card::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(10,10,10,0.35) 0%,rgba(10,10,10,0.58) 100%); border-radius:inherit; pointer-events:none; z-index:0; transition:background 0.3s ease; }
.da-strategy__card:hover::before { background:linear-gradient(180deg,rgba(10,10,10,0.20) 0%,rgba(10,10,10,0.45) 100%); }

.da-strategy__card-inner { position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.85rem; padding:clamp(1.75rem,3vw,2.5rem) clamp(1rem,2vw,1.75rem); text-align:center; min-height:clamp(185px,18vw,240px); }
.da-strategy__card-content-wrap { display:flex; flex-direction:column; align-items:center; gap:0.65rem; }
.da-strategy__card-icon { display:flex; align-items:center; justify-content:center; width:clamp(48px,4.5vw,60px); height:clamp(48px,4.5vw,60px); border-radius:50%; background:rgba(124,58,237,0.1); border:1px solid rgba(124,58,237,0.22); flex-shrink:0; transition:background 0.3s ease,border-color 0.3s ease,transform 0.3s ease; }
.da-strategy__card:hover .da-strategy__card-icon { background:rgba(124,58,237,0.2); border-color:rgba(124,58,237,0.5); transform:scale(1.08); }
.da-strategy__card-icon i { font-size:clamp(1.2rem,1.6vw,1.55rem); background:linear-gradient(135deg,#7c3aed,#c026d3); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; display:block; }
.da-strategy__card-title { margin:0; font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(0.85rem,1.05vw,1.05rem); text-transform:uppercase; letter-spacing:0.04em; line-height:1.3; color:#ffffff; }
.da-strategy__card-title--grad { background:linear-gradient(90deg,#7c3aed,#c026d3,#e11d48,#c026d3,#7c3aed); background-size:400% 100%; -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; animation:daGradShimmer 3.5s ease 0.8s infinite; }
.da-strategy__card-btn { display:inline-flex; align-items:center; justify-content:center; padding:7px 20px; border-radius:999px; border:1px solid rgba(255,255,255,0.18); background:transparent; color:rgba(255,255,255,0.75); font-family:var(--da-font); font-size:11px; font-weight:500; letter-spacing:0.04em; text-decoration:none; text-transform:capitalize; transition:border-color 0.25s ease,color 0.25s ease,background 0.25s ease,box-shadow 0.25s ease; }
.da-strategy__card-btn:hover { border-color:rgba(124,58,237,0.7); background:rgba(124,58,237,0.12); color:#fff; box-shadow:0 0 14px rgba(124,58,237,0.18); }

.da-strategy.is-visible .da-strategy__header { opacity:1; transform:translateY(0); filter:blur(0); }
.da-strategy.is-visible .da-strategy__card   { opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
.da-strategy.is-visible .da-strategy__card:nth-child(1) { transition-delay:0.12s; }
.da-strategy.is-visible .da-strategy__card:nth-child(2) { transition-delay:0.22s; }
.da-strategy.is-visible .da-strategy__card:nth-child(3) { transition-delay:0.32s; }
.da-strategy.is-visible .da-strategy__card:nth-child(4) { transition-delay:0.40s; }
.da-strategy.is-visible .da-strategy__card:nth-child(5) { transition-delay:0.50s; }
.da-strategy.is-visible .da-strategy__card:nth-child(6) { transition-delay:0.60s; }

@media (max-width:900px) {
  .da-strategy__grid { grid-template-columns:repeat(2,1fr); gap:1rem; }
  .da-strategy.is-visible .da-strategy__card:nth-child(1) { transition-delay:0.10s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(2) { transition-delay:0.18s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(3) { transition-delay:0.26s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(4) { transition-delay:0.34s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(5) { transition-delay:0.42s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(6) { transition-delay:0.50s; }
}
@media (max-width:768px) {
  .da-strategy        { padding:60px 0 68px; }
  .da-strategy__title { font-size:clamp(1.3rem,5.5vw,2rem); }
  .da-strategy__sub   { font-size:0.875rem; line-height:1.78; }
  .da-strategy__card-inner { min-height:170px; padding:1.5rem 1rem; }
}
@media (max-width:560px) {
  .da-strategy__inner { padding: 0 1rem; }

  /* 2-column grid on mobile */
  .da-strategy__grid  { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Revert to centred column layout — cards are too narrow for side-by-side icon+text */
  .da-strategy__card-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    min-height: 155px;
    padding: 1.1rem 0.7rem;
  }

  .da-strategy__card-content-wrap { align-items: center; gap: 0.4rem; }
  .da-strategy__card-icon  { width: 42px; height: 42px; flex-shrink: 0; }
  .da-strategy__card-icon i { font-size: 1.1rem; }
  .da-strategy__card-title { font-size: 0.75rem; text-align: center; letter-spacing: 0.03em; }
  .da-strategy__card-btn   { font-size: 10px; padding: 5px 14px; margin-top: 0; }

  /* Stagger delays for 2-col layout */
  .da-strategy.is-visible .da-strategy__card:nth-child(1) { transition-delay: 0.06s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(2) { transition-delay: 0.12s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(3) { transition-delay: 0.18s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(4) { transition-delay: 0.24s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(5) { transition-delay: 0.30s; }
  .da-strategy.is-visible .da-strategy__card:nth-child(6) { transition-delay: 0.36s; }
}

/* Very small phones — keep 2 cols but tighten further */
@media (max-width: 360px) {
  .da-strategy__grid  { gap: 0.6rem; }
  .da-strategy__card-inner { min-height: 140px; padding: 1rem 0.55rem; }
  .da-strategy__card-title { font-size: 0.7rem; }
  .da-strategy__card-btn   { font-size: 9.5px; padding: 4px 10px; }
}
@media (max-width:480px) { .da-strategy__title { font-size:clamp(1.2rem,6.5vw,1.7rem); letter-spacing:-0.015em; } .da-strategy__sub { font-size:0.84rem; } }
@media (prefers-reduced-motion:reduce) { .da-strategy__header,.da-strategy__card { transition:none !important; animation:none !important; filter:none !important; opacity:1 !important; transform:none !important; } }
@media (prefers-reduced-motion:reduce) {
  .da-strat-grad,.da-strat-grad2,.da-strategy__card-title--grad,
  .da-who__title-line--grad,.da-why__title-line--grad,.da-testimonials__title-grad,
  .da-contact__heading-gradient,.da-contact__connect-title-gradient,.da-contact__form-title-gradient,
  .da-presence__title-line--grad,.da-faq__title span,
  .da-locations__title-line--grad,.da-searches__title-line--grad,
  .da-hg,.da-hg-inline { animation:none !important; }
}


/* ============================================================
   WHO WE ARE SECTION
   ============================================================ */
.da-who {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 46%, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0.09) 22%, transparent 54%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.80) 46%, rgba(0, 0, 0, 0.92) 100%),
    #050505;
  padding: clamp(4.8rem, 7.6vw, 7.6rem) 0;
}

.da-who::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.da-who::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  opacity: 0.6;
  pointer-events: none;
}

.da-who__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.da-who__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 4.6vw, 5rem);
  align-items: center;
}

.da-who__content {
  max-width: 640px;
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.da-who__title {
  margin: 0 0 1.7rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: var(--da-h2-size);
  color: #ffffff;
}

.da-who__title-line {
  display: block;
  font-style: normal;
}

.da-who__title-line--grad {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed, #c026d3, #e11d48, #c026d3, #7c3aed);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: daGradShimmer 3.5s ease 0.4s infinite;
}

.da-who__points {
  display: grid;
  gap: 0;
}

.da-who__point {
  display: grid;
  grid-template-columns: 48px 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.da-who__point:last-child {
  border-bottom: 0;
}

.da-who__point-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.22);
  color: #a855f7;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.da-who__point-no {
  font-family: var(--da-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 7px;
}

.da-who__point-text {
  margin: 0;
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.da-who__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.46s;
}

.da-who__footer-text {
  margin: 0;
  max-width: 320px;
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.da-who__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--da-font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.da-who__cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 36px rgba(192, 38, 211, 0.24);
}

.da-who__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 42vw, 640px);
  opacity: 0;
  transform: translateX(34px) scale(0.97);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.08s;
}

.da-who__media-stage {
  position: relative;
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 1.2vw, 1rem);
  overflow: visible;
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 58%, rgba(0, 0, 0, 0.95) 70%, transparent 100%);
  mask-image: radial-gradient(circle at 50% 48%, #000 58%, rgba(0, 0, 0, 0.95) 70%, transparent 100%);
}

.da-who__media-stage::before {
  content: "";
  position: absolute;
  inset: 6% 8% 10% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 38, 211, 0.30) 0%, rgba(124, 58, 237, 0.18) 32%, transparent 72%);
  filter: blur(42px);
  opacity: 0.95;
  z-index: 0;
}

.da-who__media-stage::after {
  content: "";
  position: absolute;
  inset: 16% 18% 18% 18%;
  background: radial-gradient(circle at 50% 40%, rgba(192, 38, 211, 0.20), transparent 68%);
  filter: blur(26px);
  z-index: 0;
  pointer-events: none;
}

.da-who__image {
  position: relative;
  z-index: 1;
  width: min(114%, 780px);
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateY(10px) scale(1.08);
  transform-origin: center bottom;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.6));
  will-change: transform, opacity, filter;
}

.da-who.is-visible .da-who__content {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.da-who.is-visible .da-who__point {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.da-who.is-visible .da-who__footer {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.da-who.is-visible .da-who__media {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

@media (max-width: 1100px) {
  .da-who__grid {
    grid-template-columns: 1fr;
  }

  .da-who__content {
    order: 2;
    max-width: 100%;
  }

  .da-who__media {
    order: 1;
    min-height: 420px;
  }

  .da-who__image {
    width: min(108%, 720px);
    transform: translateY(8px) scale(1.05);
  }
}

@media (max-width: 768px) {
  .da-who {
    padding: 4.5rem 0 5rem;
  }

  .da-who__inner {
    padding: 0 1.25rem;
  }

  .da-who__title {
    margin-bottom: 1.35rem;
  }

  .da-who__point {
    grid-template-columns: 42px 38px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .da-who__point-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .da-who__footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.6rem;
  }

  .da-who__footer-text {
    max-width: 100%;
  }

  .da-who__cta {
    width: 100%;
    min-height: 50px;
  }

  .da-who__media {
    min-height: 340px;
  }

  .da-who__image {
    width: min(116%, 680px);
    transform: translateY(6px) scale(1.08);
  }
}

@media (max-width: 480px) {
  .da-who__media {
    min-height: 300px;
  }

  .da-who__point {
    grid-template-columns: 38px 34px minmax(0, 1fr);
    gap: 10px;
  }

  .da-who__point-text,
  .da-who__footer-text {
    font-size: 0.855rem;
    line-height: 1.72;
  }

  .da-who__image {
    width: min(122%, 620px);
    transform: translateY(4px) scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-who__content,
  .da-who__point,
  .da-who__footer,
  .da-who__media {
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   WHO WE ARE - LEFT IMAGE SECTION
   ============================================================ */
.da-london {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 48%, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0.09) 22%, transparent 54%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.82) 52%, rgba(0, 0, 0, 0.94) 100%),
    #050505;
  padding: clamp(4.8rem, 7.6vw, 7.6rem) 0;
}

.da-london::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.da-london::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  opacity: 0.6;
  pointer-events: none;
}

.da-london__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.da-london__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(2rem, 4.6vw, 5rem);
  align-items: center;
}

.da-london__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 42vw, 640px);
  opacity: 0;
  transform: translateX(-34px) scale(0.97);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.08s;
}

.da-london__media-stage {
  position: relative;
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 1.2vw, 1rem);
  overflow: visible;
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 58%, rgba(0, 0, 0, 0.95) 70%, transparent 100%);
  mask-image: radial-gradient(circle at 50% 48%, #000 58%, rgba(0, 0, 0, 0.95) 70%, transparent 100%);
}

.da-london__media-stage::before {
  content: "";
  position: absolute;
  inset: 6% 8% 10% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 38, 211, 0.30) 0%, rgba(124, 58, 237, 0.18) 32%, transparent 72%);
  filter: blur(42px);
  opacity: 0.95;
  z-index: 0;
}

.da-london__media-stage::after {
  content: "";
  position: absolute;
  inset: 16% 18% 18% 18%;
  background: radial-gradient(circle at 50% 40%, rgba(192, 38, 211, 0.20), transparent 68%);
  filter: blur(26px);
  z-index: 0;
  pointer-events: none;
}

.da-london__image {
  position: relative;
  z-index: 1;
  width: min(114%, 780px);
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateY(10px) scale(1.08);
  transform-origin: center bottom;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.6));
  will-change: transform, opacity, filter;
}

.da-london__content {
  max-width: 640px;
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.da-london__title {
  margin: 0 0 1.7rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: var(--da-h2-size);
  color: #ffffff;
}

.da-london__title-line {
  display: block;
  font-style: normal;
}

.da-london__title-line--grad {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 58%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.da-london__points {
  display: grid;
  gap: 0;
}

.da-london__point {
  display: grid;
  grid-template-columns: 48px 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.da-london__point:last-child {
  border-bottom: 0;
}

.da-london__point-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.22);
  color: #a855f7;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.da-london__point-no {
  font-family: var(--da-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 7px;
}

.da-london__point-text {
  margin: 0;
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.da-london__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.46s;
}

.da-london__footer-text {
  margin: 0;
  max-width: 320px;
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.da-london__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--da-font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.da-london__cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 36px rgba(192, 38, 211, 0.24);
}

.da-london.is-visible .da-london__media {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.da-london.is-visible .da-london__content {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.da-london.is-visible .da-london__point {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.da-london.is-visible .da-london__footer {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1100px) {
  .da-london__grid {
    grid-template-columns: 1fr;
  }

  .da-london__content {
    order: 2;
    max-width: 100%;
  }

  .da-london__media {
    order: 1;
    min-height: 420px;
  }

  .da-london__image {
    width: min(108%, 720px);
    transform: translateY(8px) scale(1.05);
  }
}

@media (max-width: 768px) {
  .da-london {
    padding: 4.5rem 0 5rem;
  }

  .da-london__inner {
    padding: 0 1.25rem;
  }

  .da-london__title {
    margin-bottom: 1.35rem;
  }

  .da-london__point {
    grid-template-columns: 42px 38px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .da-london__point-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .da-london__footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.6rem;
  }

  .da-london__footer-text {
    max-width: 100%;
  }

  .da-london__cta {
    width: 100%;
    min-height: 50px;
  }

  .da-london__media {
    min-height: 340px;
  }

  .da-london__image {
    width: min(116%, 680px);
    transform: translateY(6px) scale(1.08);
  }
}

@media (max-width: 480px) {
  .da-london__media {
    min-height: 300px;
  }

  .da-london__point {
    grid-template-columns: 38px 34px minmax(0, 1fr);
    gap: 10px;
  }

  .da-london__point-text,
  .da-london__footer-text {
    font-size: 0.855rem;
    line-height: 1.72;
  }

  .da-london__image {
    width: min(122%, 620px);
    transform: translateY(4px) scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-london__content,
  .da-london__point,
  .da-london__footer,
  .da-london__media {
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* ============================================================
   WHY CHOOSE DIGITAL ADVENGERS SECTION
   Production-safe | smooth reveal | floating cards
   ============================================================ */
.da-why {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #050505;
  background-image: url('../web/Home_back_D.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: clamp(4.8rem, 7.2vw, 7.2rem) 0 clamp(4.5rem, 6.5vw, 6.5rem);
}

.da-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(124, 58, 237, 0.16) 0%, rgba(124, 58, 237, 0.06) 28%, transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.54) 58%, rgba(0, 0, 0, 0.84) 100%);
  pointer-events: none;
}

.da-why::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  opacity: 0.6;
  pointer-events: none;
}

.da-why__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.da-why__header {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.da-why__title {
  margin: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: var(--da-h2-size);
  color: #ffffff;
}

.da-why__title-line {
  display: block;
}

.da-why__title-line--grad {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed, #c026d3, #e11d48, #c026d3, #7c3aed);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: daGradShimmer 3.5s ease 0.6s infinite;
}

.da-why__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(70px, auto);
  gap: clamp(1rem, 1.9vw, 1.45rem);
  align-items: start;
}

.da-why__card {
  position: relative;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(10px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}

.da-why__card-inner {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  min-height: 100px;
  background: rgba(18, 18, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 1.05rem 1.15rem;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: daWaterFloat 7.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  animation-delay: var(--float-delay, 0s);
  animation-play-state: paused;
  backface-visibility: hidden;
}

.da-why__card:hover .da-why__card-inner {
  border-color: rgba(192, 38, 211, 0.34);
}

.da-why__num-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 84px;
}

.da-why__num {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 5.8vw, 5.05rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #f4f4f4;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

.da-why__card--feature .da-why__num {
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.da-why__text {
  margin: 0;
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.da-why__card--feature .da-why__card-inner {
  border: 1.5px solid transparent;
  background:
    linear-gradient(rgba(18, 18, 18, 0.92), rgba(18, 18, 18, 0.92)) padding-box,
    linear-gradient(90deg, #5b6cff 0%, #7c3aed 35%, #c026d3 70%, #e11d48 100%) border-box;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.44),
    0 0 28px rgba(124, 58, 237, 0.12);
}

.da-why__card--1 { grid-column: 6 / 13; grid-row: 1; justify-self: end; max-width: 640px; }
.da-why__card--2 { grid-column: 1 / 7;  grid-row: 2; justify-self: start; max-width: 640px; }
.da-why__card--3 { grid-column: 3 / 10; grid-row: 3; justify-self: center; max-width: 620px; }
.da-why__card--4 { grid-column: 6 / 13; grid-row: 4; justify-self: end; max-width: 640px; }
.da-why__card--5 { grid-column: 1 / 7;  grid-row: 5; justify-self: start; max-width: 640px; }
.da-why__card--6 { grid-column: 5 / 13; grid-row: 6; justify-self: end; max-width: 640px; }

.da-why__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.8rem, 3vw, 2.5rem);
  padding-top: 0.25rem;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.54s;
}

.da-why__footer-text {
  margin: 0;
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}

.da-why__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--da-font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.da-why__cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 36px rgba(192, 38, 211, 0.24);
}

.da-why__arrow {
  position: absolute;
  color: #ff2b1d;
  font-size: 1.35rem;
  opacity: 0.9;
  pointer-events: none;
  animation: daArrowFloat 3.6s ease-in-out infinite;
}

.da-why__arrow--top {
  top: 146px;
  left: 39%;
  transform: rotate(-18deg);
}

.da-why__arrow--bottom {
  right: 7%;
  bottom: 4.2rem;
  transform: rotate(18deg);
  animation-delay: 1.2s;
}

.da-why.is-visible .da-why__card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.da-why.is-visible .da-why__card-inner {
  animation-play-state: running;
}

.da-why.is-visible .da-why__footer {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@keyframes daWaterFloat {
  0%   { transform: translate3d(0, 0px, 0); }
  20%  { transform: translate3d(1px, -4px, 0); }
  40%  { transform: translate3d(-1px, -7px, 0); }
  60%  { transform: translate3d(1px, -3px, 0); }
  80%  { transform: translate3d(-1px, 2px, 0); }
  100% { transform: translate3d(0, 0px, 0); }
}

@keyframes daArrowFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--r, 0deg)); }
  50% { transform: translate3d(0, -6px, 0) rotate(var(--r, 0deg)); }
}

@media (max-width: 1100px) {
  .da-why__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .da-why__card {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: stretch !important;
    max-width: 100% !important;
  }

  .da-why__arrow--top {
    top: 120px;
    left: 18px;
  }

  .da-why__arrow--bottom {
    right: 18px;
    bottom: 6.2rem;
  }
}

@media (max-width: 768px) {
  .da-why {
    padding: 4.4rem 0 5rem;
  }

  .da-why__inner {
    padding: 0 1.25rem;
  }

  .da-why__grid {
    gap: 0.95rem;
  }

  .da-why__card {
    transform: translate3d(0, 24px, 0);
    filter: blur(6px);
  }

  .da-why__card-inner {
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 92px;
    padding: 0.95rem 0.95rem;
    border-radius: 18px;
    animation-duration: 9s;
    animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
  }

  .da-why__num-wrap {
    min-width: 60px;
  }

  .da-why__num {
    font-size: clamp(2.4rem, 9vw, 3.35rem);
  }

  .da-why__text {
    line-height: 1.68;
  }

  .da-why__footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.5rem;
  }

  .da-why__cta {
    width: 100%;
    min-height: 50px;
  }

  .da-why__arrow {
    display: none;
  }

  .da-why.is-visible .da-why__card {
    filter: blur(0);
  }
}

@media (max-width: 480px) {
  .da-why__card-inner {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 0.9rem 0.9rem;
  }

  .da-why__num-wrap {
    min-width: 54px;
  }

  .da-why__num {
    font-size: clamp(2.1rem, 10vw, 2.9rem);
  }

  .da-why__text,
  .da-why__footer-text {
    font-size: 0.855rem;
    line-height: 1.68;
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-why__card,
  .da-why__card-inner,
  .da-why__footer,
  .da-why__arrow {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   PATCH v3 — Ribbon seam fix, transparent cards, cartoon avatars,
   button cutoff fix, full responsive overhaul
   ============================================================ */

/* ── 1. Reduced bleed on small screens (prevents button cut-off) ── */
@media (max-width: 1024px) { :root { --da-crt-bleed: clamp(56px, 7vw,  88px); } }
@media (max-width:  768px) { :root { --da-crt-bleed: 48px; } }
@media (max-width:  480px) { :root { --da-crt-bleed: 36px; } }
@media (max-width:  360px) { :root { --da-crt-bleed: 28px; } }

/* ── 2. da-why — extra bottom padding so footer button clears the bleed ── */
.da-why {
  padding-bottom: calc(var(--da-crt-bleed) + clamp(4.5rem, 6.5vw, 6.5rem)) !important;
}

/* ══════════════════════════════════════════════════════════════
   CROSS RIBBON TICKER — full rewrite
   ══════════════════════════════════════════════════════════════ */

.da-cross-ticker {
  position: relative;
  z-index: 10;
  overflow: visible; /* lamp glow bleeds below; ribbons clipped by .da-crt__clip instead */

  /*
   * KEY FIX: solid #050505 instead of transparent.
   * All adjacent sections share this base colour so the
   * non-ribbon areas of the ticker merge seamlessly.
   */
  background: #050505;

  --crt-bleed: var(--da-crt-bleed);
  margin-top:    calc(-1 * var(--crt-bleed));
  margin-bottom: calc(-1 * var(--crt-bleed));
  padding:       var(--crt-bleed) 0;

  min-height: clamp(300px, 36vw, 460px);
}

/* Clips ONLY the ribbons/fades/vignettes — see HTML comment for why */
.da-crt__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Top / bottom fades — MUCH shorter so they don't box in the ribbon */
.da-crt__fade {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 8;
}

.da-crt__fade--top {
  top: 0;
  height: 28%;           /* reduced from 44% — stops boxing effect */
  background: linear-gradient(
    to bottom,
    #050505 0%,
    rgba(5,5,5,0.80) 30%,
    rgba(5,5,5,0.30) 65%,
    transparent 100%
  );
}

.da-crt__fade--bottom {
  bottom: 0;
  height: 28%;
  background: linear-gradient(
    to top,
    #050505 0%,
    rgba(5,5,5,0.80) 30%,
    rgba(5,5,5,0.30) 65%,
    transparent 100%
  );
}

/* Vignettes */
.da-crt__vignette {
  position: absolute;
  top:    0;
  bottom: 0;
  width:  clamp(60px, 9vw, 130px);
  z-index: 20;
  pointer-events: none;
}
.da-crt__vignette--l { left:  0; background: linear-gradient(to right, #050505 0%, #050505 20%, transparent 100%); }
.da-crt__vignette--r { right: 0; background: linear-gradient(to left,  #050505 0%, #050505 20%, transparent 100%); }

/* Shared ribbon */
.da-crt__ribbon {
  position: absolute;
  left:  -32%;
  width: 164%;
  overflow: hidden;
  background: linear-gradient(90deg, #5063d9 0%, #6038c8 22%, #7f2fbf 46%, #9e2c9d 68%, #b02d73 85%, #bb3c39 100%);
  padding: clamp(15px, 2vw, 26px) 0;
  box-shadow: 0 14px 52px rgba(0,0,0,0.72), 0 2px 8px rgba(0,0,0,0.50),
              inset 0 1px 0 rgba(255,255,255,0.14), inset 0 -1px 0 rgba(0,0,0,0.28);
}

/* Shine */
.da-crt__ribbon::before {
  content: "";
  position: absolute;
  inset: -60% 0;
  background: linear-gradient(112deg, transparent 20%, rgba(255,255,255,0.24) 30%, transparent 42%);
  transform: translateX(-120%);
  animation: daCrtShine 9s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.da-crt__ribbon--b::before { animation-delay: 4.5s; }
@keyframes daCrtShine { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

/* 3D depth */
.da-crt__ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.68) 0%,    rgba(0,0,0,0.24) 16%,
    rgba(0,0,0,0.04) 32%,   rgba(255,255,255,0.07) 46%,
    rgba(255,255,255,0.13) 50%, rgba(255,255,255,0.07) 54%,
    rgba(0,0,0,0.04) 68%,   rgba(0,0,0,0.24) 84%,
    rgba(0,0,0,0.68) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Diagonal placement */
.da-crt__ribbon--a { top:50%; transform:translateY(-50%) rotate(-11deg); transform-origin:center; z-index:1; }
.da-crt__ribbon--b { top:50%; transform:translateY(-50%) rotate(11deg);  transform-origin:center; z-index:2; }

/* Track */
.da-crt__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  position: relative;
  z-index: 3;
  will-change: transform;
  animation: daCrtScroll 38s linear infinite;
}
.da-crt__track--rev { animation-direction:reverse; animation-duration:32s; }
@keyframes daCrtScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.da-crt__ribbon:hover .da-crt__track { animation-play-state: paused; }

/* Items */
.da-crt__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 1.1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0b0b0b;
  padding: 0 clamp(14px, 1.6vw, 24px);
  line-height: 1;
  user-select: none;
}
.da-crt__dot {
  display: inline-block;
  width:  clamp(5px, 0.6vw, 7px);
  height: clamp(5px, 0.6vw, 7px);
  border-radius: 50%;
  background: rgba(11,11,11,0.45);
  flex-shrink: 0;
}

/* ── Pendant lamp — cord threads behind ribbons, lamp hangs in front ── */
.da-crt__cord {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(130,130,130,0.22) 10%,
    rgba(168,168,168,0.52) 42%,
    rgba(195,195,195,0.80) 100%);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.da-crt__lamp {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 30;
  pointer-events: none;
}

.da-crt__lamp-cap {
  width: 34px;
  height: 14px;
  background: radial-gradient(ellipse at 50% 0%,
    #747474 0%, #4e4e4e 42%, #2e2e2e 80%, #1e1e1e 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.12);
}

.da-crt__lamp-svg {
  display: block;
  width: clamp(150px, 16vw, 220px);
  height: auto;
}

.da-crt__lamp-glow {
  width: clamp(150px, 16vw, 220px);
  height: 5px;
  margin-top: -3px;
  background: rgba(255, 253, 215, 0.95);
  filter: blur(3px);
  box-shadow:
    0    0px  14px   5px rgba(255, 252, 200, 0.94),
    0   28px  55px  20px rgba(255, 246, 175, 0.58),
    0   75px 120px  42px rgba(255, 236, 140, 0.28),
    0  145px 220px  68px rgba(255, 222,  95, 0.12),
    0  260px 360px  90px rgba(255, 205,  55, 0.05);
}

/* ── Ribbon responsive — full overhaul ── */
@media (max-width: 1280px) {
  .da-cross-ticker { min-height: clamp(280px, 34vw, 420px); }
  .da-crt__ribbon  { left: -36%; width: 172%; }
}
@media (max-width: 1024px) {
  .da-cross-ticker { min-height: clamp(260px, 32vw, 380px); }
  .da-crt__ribbon  { left: -40%; width: 180%; }
  .da-crt__ribbon--a { transform: translateY(-50%) rotate(-10deg); }
  .da-crt__ribbon--b { transform: translateY(-50%) rotate(10deg);  }
}
/* ============================================================
   MOBILE RIBBON CROSS FIX
   Steeper angles + taller section so the X is clearly visible
   on narrow viewports. Pure override — no structural changes.
   ============================================================ */

@media (max-width: 768px) {
  .da-cross-ticker {
    min-height: clamp(270px, 62vw, 350px); /* taller so X has room */
  }
  .da-crt__ribbon        { left: -60%; width: 220%; }
  .da-crt__ribbon--a     { transform: translateY(-50%) rotate(-14deg); }
  .da-crt__ribbon--b     { transform: translateY(-50%) rotate(14deg);  }
  .da-crt__fade--top,
  .da-crt__fade--bottom  { height: 18%; }
  .da-crt__lamp-svg      { width: clamp(110px, 24vw, 150px); }
  .da-crt__lamp-cap      { width: 26px; height: 12px; }
}

@media (max-width: 480px) {
  .da-cross-ticker {
    min-height: 290px;
  }
  .da-crt__ribbon        { left: -85%; width: 270%; }
  .da-crt__ribbon--a     { transform: translateY(-50%) rotate(-20deg); }
  .da-crt__ribbon--b     { transform: translateY(-50%) rotate(20deg);  }
  .da-crt__fade--top,
  .da-crt__fade--bottom  { height: 14%; }
  .da-crt__lamp-svg      { width: clamp(90px, 24vw, 120px); }
  .da-crt__lamp-cap      { width: 22px; height: 10px; }
}

@media (max-width: 390px) {
  .da-cross-ticker {
    min-height: 275px;
  }
  .da-crt__ribbon        { left: -96%; width: 292%; }
  .da-crt__ribbon--a     { transform: translateY(-50%) rotate(-22deg); }
  .da-crt__ribbon--b     { transform: translateY(-50%) rotate(22deg);  }
  .da-crt__fade--top,
  .da-crt__fade--bottom  { height: 12%; }
  .da-crt__lamp-svg      { width: clamp(80px, 25vw, 110px); }
  .da-crt__lamp-cap      { width: 20px; height: 9px; }
}

@media (max-width: 360px) {
  .da-cross-ticker {
    min-height: 260px;
  }
  .da-crt__lamp-svg      { width: clamp(75px, 26vw, 105px); }
  .da-crt__lamp-cap      { width: 18px; height: 8px; }
  .da-crt__ribbon        { left: -108%; width: 316%; }
  .da-crt__ribbon--a     { transform: translateY(-50%) rotate(-24deg); }
  .da-crt__ribbon--b     { transform: translateY(-50%) rotate(24deg);  }
  .da-crt__fade--top,
  .da-crt__fade--bottom  { height: 10%; }
}
@media (prefers-reduced-motion: reduce) {
  .da-crt__track, .da-crt__ribbon::before { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS — transparent cards + avatar fix + accent line fix
   ══════════════════════════════════════════════════════════════ */

.da-testimonials {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #050505;
  background-image: url('../web/Home_back_E.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top:    calc(var(--da-crt-bleed) + clamp(2.8rem, 4.5vw, 4.5rem));
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

/* Overlay — heavier at top where ribbon bleeds in */
.da-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #050505 0%,
    rgba(5,5,5,0.85) 12%,
    rgba(5,5,5,0.55) 50%,
    rgba(5,5,5,0.72) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/*
 * KEY FIX: accent line starts BELOW the ribbon bleed zone.
 * Without this, the 2px line appeared inside the ribbon X,
 * creating the visible horizontal seam.
 */
.da-testimonials::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--da-crt-bleed); /* ← moved below ribbon overlap */
  height: 2px;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  opacity: 0.50;
  pointer-events: none;
  z-index: 2;
}

.da-testimonials__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

/* Header */
.da-testimonials__header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(2.4rem, 4.5vw, 4rem);
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity .95s cubic-bezier(.22,1,.36,1), transform .95s cubic-bezier(.22,1,.36,1), filter .95s cubic-bezier(.22,1,.36,1);
}

.da-testimonials__title {
  margin: 0 0 1.15rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: var(--da-h2-size);
  color: #ffffff;
}
.da-testimonials__title-line { display: block; }
.da-testimonials__title-grad {
  display: inline-block;
  font-style: normal;
  background: linear-gradient(90deg, #7c3aed, #c026d3, #e11d48, #c026d3, #7c3aed);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: daGradShimmer 3.5s ease 0.8s infinite;
}

.da-testimonials__sub {
  margin: 0;
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
}

/* Slider wrap */
.da-testimonials__slider-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(12px,1.8vw,22px) 0 clamp(20px,3vw,36px);
}
.da-testimonials__slider-wrap::before,
.da-testimonials__slider-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 6vw, 90px);
  z-index: 10;
  pointer-events: none;
}
.da-testimonials__slider-wrap::before { left: 0;  background: linear-gradient(to right, #050505 0%, transparent 100%); }
.da-testimonials__slider-wrap::after  { right: 0; background: linear-gradient(to left,  #050505 0%, transparent 100%); }

/* Track */
.da-testimonials__track {
  display: inline-flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 26px);
  padding-left: clamp(16px, 3vw, 40px);
  animation: daTestiScroll 52s linear infinite;
  will-change: transform;
}
@keyframes daTestiScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.da-testimonials__slider-wrap:hover .da-testimonials__track { animation-play-state: paused; }

/* Card */
.da-testimonials__card { flex-shrink:0; width:clamp(275px,28vw,338px); display:flex; }

/* ── TRANSPARENT glass card ── */
.da-testimonials__card-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  /* Glass morphism — shows the wave background through the card */
  background: rgba(8, 8, 10, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: clamp(1.35rem,2.2vw,1.8rem) clamp(1.2rem,1.8vw,1.5rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.da-testimonials__card-inner:hover {
  background: rgba(8,8,10,0.42);
  border-color: rgba(124,58,237,0.32);
  box-shadow: 0 12px 40px rgba(0,0,0,0.40), 0 0 0 1px rgba(124,58,237,0.16);
}

/* Featured transparent card — gradient border only */
.da-testimonials__card--featured .da-testimonials__card-inner {
  background: rgba(8, 8, 10, 0.32);
  border: 1.5px solid transparent;
  background:
    linear-gradient(rgba(8,8,10,0.32), rgba(8,8,10,0.32)) padding-box,
    linear-gradient(145deg, #7c3aed 0%, #c026d3 60%) border-box;
  box-shadow:
    0 0 0 1px rgba(192,38,211,0.10),
    0 16px 48px rgba(124,58,237,0.16),
    0 4px 16px rgba(0,0,0,0.35);
}
.da-testimonials__card--featured .da-testimonials__card-inner:hover {
  box-shadow:
    0 0 0 1px rgba(192,38,211,0.22),
    0 20px 56px rgba(124,58,237,0.24),
    0 6px 20px rgba(0,0,0,0.45);
}

/* Quote icon */
.da-testimonials__quote {
  font-size: clamp(1.7rem,2.6vw,2.3rem);
  line-height: 1;
  flex-shrink: 0;
  background: linear-gradient(135deg,#7c3aed,#c026d3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.da-testimonials__text {
  margin: 0;
  flex: 1;
  font-family: var(--da-font);
  font-size: clamp(0.81rem,0.95vw,0.89rem);
  font-weight: 400;
  line-height: 1.84;
  color: rgba(255,255,255,0.72); /* slightly brighter on transparent bg */
}

/* Author row */
.da-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── Cartoon face avatars ── */
.da-testimonials__avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;          /* icon size */
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.20);
  /* Remove old span text styles */
}
/* Remove legacy span inside avatar */
.da-testimonials__avatar span { display: none; }
/* Icon always white */
.da-testimonials__avatar i { color: rgba(255,255,255,0.96); line-height: 1; }

/* Unique gradient backgrounds per avatar */
.da-testimonials__avatar--a { background: linear-gradient(135deg,#7c3aed,#c026d3); }
.da-testimonials__avatar--b { background: linear-gradient(135deg,#5063d9,#7c3aed); }
.da-testimonials__avatar--c { background: linear-gradient(135deg,#c026d3,#e11d48); }
.da-testimonials__avatar--d { background: linear-gradient(135deg,#6038c8,#9e2c9d); }
.da-testimonials__avatar--e { background: linear-gradient(135deg,#9e2c9d,#b02d73); }
.da-testimonials__avatar--f { background: linear-gradient(135deg,#7c3aed,#e11d48); }
.da-testimonials__avatar--g { background: linear-gradient(135deg,#b02d73,#bb3c39); }

/* Name */
.da-testimonials__name {
  font-family: var(--da-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--da-purple-lt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Scroll reveal */
.da-testimonials.is-visible .da-testimonials__header {
  opacity: 1; transform: translateY(0); filter: blur(0);
}

/* ── Testimonials responsive ── */
@media (max-width: 1024px) {
  .da-testimonials { padding-top: calc(var(--da-crt-bleed) + 3rem); }
}
@media (max-width: 768px) {
  .da-testimonials { padding-top: calc(var(--da-crt-bleed) + 2.8rem); padding-bottom: 4.5rem; }
  .da-testimonials__card  { width: clamp(245px, 72vw, 295px); }
  .da-testimonials__track { animation-duration: 42s; }
  .da-testimonials__slider-wrap::before,
  .da-testimonials__slider-wrap::after { width: 28px; }
  .da-testimonials__avatar { width:42px; height:42px; min-width:42px; font-size:22px; }
}
@media (max-width: 480px) {
  .da-testimonials { padding-top: calc(var(--da-crt-bleed) + 2.4rem); padding-bottom: 4rem; }
  .da-testimonials__card  { width: clamp(232px, 80vw, 272px); }
  .da-testimonials__track { animation-duration: 36s; }
  .da-testimonials__slider-wrap::before,
  .da-testimonials__slider-wrap::after { width: 20px; }
  .da-testimonials__text  { font-size: 0.8rem; }
  .da-testimonials__sub   { font-size: 0.855rem; }
  .da-testimonials__avatar { width:38px; height:38px; min-width:38px; font-size:20px; }
}
@media (max-width: 360px) {
  .da-testimonials__card  { width: 86vw; }
  .da-testimonials__track { animation-duration: 32s; }
}
@media (prefers-reduced-motion: reduce) {
  .da-testimonials__track  { animation: none; }
  .da-testimonials__header { transition:none; opacity:1; transform:none; filter:none; }
}

/* Remove the accent line from testimonials — ribbon above already acts as divider */
.da-testimonials::after {
  display: none;
}


/* ================================================================
   DA-CONTACT  —  CORRECTED v2
   Replace the entire previous da-contact block with this.
   Append at the very bottom of home-new.css.
   ================================================================ */

/* ── Section shell ─────────────────────────────────────────────── */
.da-contact {
  position: relative;
  overflow: hidden;
  background-color: #050505;
  background-image: url('../web/Home_back_A.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 5vw, 4rem);
  z-index: auto;
}

/* Dark overlay — lighter than before so webp texture shows */
.da-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(5,5,5,0.78) 0%,
      rgba(5,5,5,0.65) 45%,
      rgba(5,5,5,0.82) 100%);
  z-index: 0;
  pointer-events: none;
}

/* 2px gradient accent line at top */
.da-contact::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #5063d9 0%, #7c3aed 35%, #c026d3 65%, #e11d48 100%);
  z-index: 2;

  display: none !important;
}

/* ── Layout grid ─────────────────────────────────────────────────── */
.da-contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
   align-items: stretch; 
}

/* ── Scroll reveal base states ───────────────────────────────────── */
.da-contact__reveal {
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter   0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.da-contact__reveal--left  { transform: translateX(-42px); }
.da-contact__reveal--right { transform: translateX( 42px); transition-delay: 0.13s; }

.da-contact.is-visible .da-contact__reveal {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* ── LEFT COLUMN ────────────────────────────────────────────────── */
.da-contact__left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2vw, 1.6rem);
}

/* ─── BIG HEADING — Bebas Neue, very tight ───────────────────────
   Matches designer: thick condensed uppercase, line-height ≈ 0.92,
   white for first two lines, gradient (blue→purple→pink→red) for last three.
*/
.da-contact__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.025em;
  color: #ffffff;
  margin: 0;
  /* Prevent br tags from adding extra spacing */
  word-break: keep-all;
}

.da-contact__heading-gradient {
  display: block;
  /* Full designer gradient: blue → purple → pink → red, mirrored for a seamless shimmer loop */
  background: linear-gradient(90deg, #5063d9, #7c3aed, #c026d3, #e11d48, #c026d3, #7c3aed, #5063d9);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: daGradShimmer 3.5s ease 1s infinite;
  line-height: 0.92;
}

/* Intro paragraph */
.da-contact__intro {
  font-size: clamp(0.8rem, 1vw, 0.875rem);
  color: rgba(160, 174, 192, 0.85);
  line-height: 1.72;
  max-width: 46ch;
  margin: 0;
}

/* ── Connect card ────────────────────────────────────────────────── */
.da-contact__connect {
  background: rgba(10, 10, 16, 0.82);
  border: 1px solid rgba(124, 58, 237, 0.20);
  border-radius: 16px;
  padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1.2rem, 2vw, 1.8rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.da-contact__connect-title {
  font-family: var(--da-font);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.55rem;
  line-height: 1.2;
}

.da-contact__connect-title-gradient {
  background: linear-gradient(90deg, #5063d9, #7c3aed, #c026d3, #7c3aed, #5063d9);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: daGradShimmer 3.5s ease 1.2s infinite;
}

.da-contact__connect-sub {
  font-size: clamp(0.77rem, 0.92vw, 0.84rem);
  color: rgba(160, 174, 192, 0.80);
  line-height: 1.65;
  margin: 0;
}

.da-contact__divider {
  border: none;
  border-top: 1px solid rgba(124, 58, 237, 0.22);
  margin: 1.1rem 0;
}

/* Info list */
.da-contact__info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.da-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateX(-18px);
  transition:
    opacity  0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.da-contact.is-visible .da-contact__info-item:nth-child(1) { opacity:1; transform:translateX(0); transition-delay: 0.30s; }
.da-contact.is-visible .da-contact__info-item:nth-child(2) { opacity:1; transform:translateX(0); transition-delay: 0.44s; }
.da-contact.is-visible .da-contact__info-item:nth-child(3) { opacity:1; transform:translateX(0); transition-delay: 0.58s; }

/* ─── Icon rings — colourful & distinct ───────────────────────── */
.da-contact__icon-ring {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #fff;
  transition: transform 0.3s var(--da-ease), box-shadow 0.3s var(--da-ease);
}

/* Location — vibrant purple-blue */
.da-contact__icon-ring--loc {
  background: linear-gradient(135deg, #5b6cff 0%, #7c3aed 100%);
  box-shadow: 0 4px 18px rgba(91, 108, 255, 0.42);
}

/* Phone — electric blue */
.da-contact__icon-ring--phone {
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.38);
}

/* Email — hot pink */
.da-contact__icon-ring--email {
  background: linear-gradient(135deg, #ec4899 0%, #c026d3 100%);
  box-shadow: 0 4px 18px rgba(236, 72, 153, 0.38);
}

.da-contact__info-item:hover .da-contact__icon-ring {
  transform: scale(1.1) rotate(-6deg);
}
.da-contact__info-item:hover .da-contact__icon-ring--loc   { box-shadow: 0 6px 24px rgba(91, 108, 255, 0.60); }
.da-contact__info-item:hover .da-contact__icon-ring--phone { box-shadow: 0 6px 24px rgba(14, 165, 233, 0.56); }
.da-contact__info-item:hover .da-contact__icon-ring--email { box-shadow: 0 6px 24px rgba(236, 72, 153, 0.56); }

/* Info text */
.da-contact__info-body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding-top: 2px;
}

.da-contact__info-label {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  display: block;
}

.da-contact__info-value {
  font-size: clamp(0.76rem, 0.9vw, 0.82rem);
  color: rgba(160, 174, 192, 0.85);
  line-height: 1.62;
}

.da-contact__info-value a {
  color: rgba(160, 174, 192, 0.85);
  text-decoration: none;
  transition: color 0.22s var(--da-ease);
}
.da-contact__info-value a:hover { color: #a855f7; }

/* ── RIGHT COLUMN – FORM CARD ────────────────────────────────────── */
.da-contact__form-card {
  background: rgba(10, 10, 16, 0.80);
  border: 1px solid rgba(124, 58, 237, 0.20);
  border-radius: 18px;
  padding: clamp(1.6rem, 2.8vw, 2.5rem) clamp(1.4rem, 2.2vw, 2.2rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Form heading */
.da-contact__form-title {
  font-family: var(--da-font);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.7rem;
  line-height: 1.3;
}

.da-contact__form-title-gradient {
  background: linear-gradient(90deg, #5063d9, #7c3aed, #c026d3, #e11d48, #c026d3, #7c3aed, #5063d9);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: daGradShimmer 3.5s ease 1.4s infinite;
}

.da-contact__form-sub {
  font-size: clamp(0.76rem, 0.92vw, 0.83rem);
  color: rgba(160, 174, 192, 0.82);
  line-height: 1.72;
  margin: 0 0 1.4rem;
}

/* ── Form elements ───────────────────────────────────────────────── */
.da-contact__form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.da-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.da-contact__field {
  display: flex;
  flex-direction: column;
}

/* Visually hidden label */
.da-contact__sr-label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Input / textarea — FORCED dark background ──────────────────
   Use background-color (not shorthand) + !important to override
   any browser stylesheet or extension interference.
*/
.da-contact__input,
.da-contact__textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: #0d0d14 !important;
  background: #0d0d14 !important;
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 10px;
  padding: 0.82rem 1rem;
  color: #ffffff !important;
  font-family: var(--da-font);
  font-size: clamp(0.78rem, 0.95vw, 0.855rem);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color 0.26s var(--da-ease),
    box-shadow   0.26s var(--da-ease);
}

.da-contact__input::placeholder,
.da-contact__textarea::placeholder {
  color: rgba(160, 174, 192, 0.45) !important;
  font-size: clamp(0.78rem, 0.95vw, 0.855rem);
}

/* ── Autofill override — prevents browser turning inputs white ── */
.da-contact__input:-webkit-autofill,
.da-contact__input:-webkit-autofill:hover,
.da-contact__input:-webkit-autofill:focus,
.da-contact__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #0d0d14 inset !important;
  box-shadow:         0 0 0 1000px #0d0d14 inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff;
  border-color: rgba(124, 58, 237, 0.22) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.da-contact__input:focus,
.da-contact__textarea:focus {
  border-color: rgba(124, 58, 237, 0.65) !important;
  box-shadow:
    0 0 0 3px rgba(124, 58, 237, 0.13),
    0 0 16px rgba(124, 58, 237, 0.10);
}

/* Textarea */
.da-contact__textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.6;
}

/* Datalist caret */
.da-contact__input::-webkit-calendar-picker-indicator { display: none; }

/* ─── Submit button — auto-width (NOT full-width on desktop) ─────── */
.da-contact__btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* auto width — pill sized to text + padding */
  width: auto;
  align-self: flex-start;       /* left-align inside flex column */
  padding: 0.88rem 2.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #5063d9 0%, #7c3aed 38%, #c026d3 68%, #e11d48 100%);
  color: #fff;
  font-family: var(--da-font);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.3rem;
  box-shadow:
    0 4px 22px rgba(80, 99, 217, 0.40),
    0 2px 8px  rgba(192, 38, 211, 0.22);
  transition:
    transform    0.26s var(--da-ease),
    box-shadow   0.26s var(--da-ease),
    filter       0.26s var(--da-ease);
}

.da-contact__btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 34px rgba(80, 99, 217, 0.55),
    0 4px 14px rgba(192, 38, 211, 0.36);
  filter: brightness(1.08);
}
.da-contact__btn:active { transform: translateY(0) scale(0.98); }

/* Shine sweep on hover */
.da-contact__btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 32%,
    rgba(255,255,255,0.22) 50%,
    transparent 68%
  );
  transform: translateX(-120%);
  transition: transform 0s;
  pointer-events: none;
}
.da-contact__btn:hover .da-contact__btn-shine {
  transform: translateX(120%);
  transition: transform 0.52s var(--da-ease);
}

/* ── Responsive ──────────────────────────────────────────────────── */

/* Tablet: stack columns */
@media (max-width: 1023px) {
  .da-contact__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    max-width: 720px;
  }

  /* Stack: slide from below instead of from sides */
  .da-contact__reveal--left,
  .da-contact__reveal--right {
    transform: translateY(32px);
  }
  .da-contact.is-visible .da-contact__reveal--left,
  .da-contact.is-visible .da-contact__reveal--right {
    transform: translateY(0);
  }

  .da-contact__heading {
    font-size: clamp(3.2rem, 8vw, 5rem);
  }

  .da-contact__intro { max-width: 100%; }
}

/* Phablet: 2-col name row → 1-col + button full-width */
@media (max-width: 640px) {
  .da-contact {
    padding: clamp(3rem, 8vw, 4rem) clamp(1rem, 5vw, 1.5rem);
  }

  .da-contact__row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .da-contact__form-card {
    padding: 1.5rem 1.2rem;
  }

  .da-contact__connect {
    padding: 1.4rem 1.2rem;
  }

  /* Full-width button only on mobile */
  .da-contact__btn {
    width: 100%;
    align-self: stretch;
    padding: 0.9rem 1.5rem;
  }
}

/* Small phones */
@media (max-width: 390px) {
  .da-contact__heading {
    font-size: clamp(2.4rem, 10.5vw, 3.2rem);
  }

  .da-contact__icon-ring {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }

  .da-contact__info-label { font-size: 0.84rem; }
  .da-contact__info-value { font-size: 0.74rem; }
}

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .da-contact__reveal,
  .da-contact__info-item,
  .da-contact__btn,
  .da-contact__btn-shine,
  .da-contact__icon-ring,
  .da-contact__input,
  .da-contact__textarea {
    transition: none !important;
    animation: none !important;
  }
  .da-contact__reveal,
  .da-contact__info-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* 🔥 FORCE consistent border for ALL states */
.da-contact__input,
.da-contact__textarea,
.da-contact__input:focus,
.da-contact__textarea:focus,
.da-contact__input:active,
.da-contact__textarea:active {
  border: 1px solid rgba(124, 58, 237, 0.22) !important;
}

/* 🔥 Remove white border glow from browsers */
.da-contact__input:focus,
.da-contact__textarea:focus {
  outline: none !important;
  border-color: rgba(124, 58, 237, 0.65) !important;
}

/* 🔥 Fix Chrome / Edge autofill white border + bg */
.da-contact__input:-webkit-autofill,
.da-contact__input:-webkit-autofill:hover,
.da-contact__input:-webkit-autofill:focus,
.da-contact__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #0d0d14 inset !important;
  box-shadow: 0 0 0 1000px #0d0d14 inset !important;

  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid rgba(124, 58, 237, 0.22) !important;
}

/* 🔥 Fix Safari / mobile weird borders */
.da-contact__input,
.da-contact__textarea {
  appearance: none;
  -webkit-appearance: none;
}

/* 🔥 Remove default validation styles (important) */
.da-contact__input:invalid,
.da-contact__input:valid {
  box-shadow: none !important;
}

.da-contact__right {
  display: flex;
}

.da-contact__form-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.da-contact__form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.da-contact__btn {
  margin-top: auto;
}

/* ============================================================
   DIGITAL PRESENCE CTA SECTION
   ============================================================ */
.da-presence {
  background: #050505;
  padding: clamp(2.25rem, 4vw, 4.5rem) 0;
}

.da-presence__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.da-presence__card {
  position: relative;
  border-radius: 32px;
  padding: clamp(0.85rem, 1.15vw, 1rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    #111111;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 60px rgba(0,0,0,0.58);
  overflow: hidden;
  isolation: isolate;
}

.da-presence__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(124,58,237,0.12), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(192,38,211,0.08), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.da-presence__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: center;
}

.da-presence__media {
  opacity: 0;
  transform: translateX(-24px) scale(0.985);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.da-presence__media-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0d0d0d;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.da-presence__media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(124,58,237,0.08), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.da-presence__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 350 / 240;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
  filter: saturate(1.05) contrast(1.02);
}

.da-presence__content {
  max-width: 640px;
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.da-presence__title {
  margin: 0 0 1rem;
  font-family: var(--da-font);
  font-size: var(--da-h2-size);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.da-presence__title-line {
  display: block;
  color: #ffffff;
}

.da-presence__title-line--grad {
  background: linear-gradient(90deg, #5b6cff, #7c3aed, #c026d3, #f43f5e, #c026d3, #7c3aed, #5b6cff);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: daGradShimmer 3.5s ease 0.5s infinite;
}

.da-presence__text {
  margin: 0 0 1.35rem;
  max-width: 500px;
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  line-height: 1.82;
  color: rgba(255,255,255,0.70);
}

.da-presence__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 3px 3px 3px 16px;
  width: fit-content;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(90deg, #5a67ff 0%, #7c3aed 38%, #c026d3 74%, #f43f5e 100%);
  color: #0b0b0b;
  box-shadow: 0 10px 24px rgba(124,58,237,0.24);
  transform: translateY(0);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.da-presence__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(244,63,94,0.22);
  filter: brightness(1.04);
}

.da-presence__cta-text {
  font-family: var(--da-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  color: #0b0b0b;
  white-space: nowrap;
}

.da-presence__cta-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0b0b;
  border: 1px solid rgba(244,63,94,0.55);
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.da-presence__cta:hover .da-presence__cta-arrow {
  transform: rotate(12deg) scale(1.05);
  background: #111111;
  color: #ff5b7a;
}

.da-presence__cta-arrow i {
  font-size: 11px;
  line-height: 1;
}

/* Reveal animation */
.da-presence.is-visible .da-presence__media {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.da-presence.is-visible .da-presence__content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.da-presence.is-visible .da-presence__title {
  animation: daPresenceRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.da-presence.is-visible .da-presence__text {
  animation: daPresenceRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}

.da-presence.is-visible .da-presence__cta {
  animation: daPresenceRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.37s both;
}

@keyframes daPresenceRise {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.da-presence__card:hover .da-presence__image {
  transform: scale(1.03);
}

@media (max-width: 980px) {
  .da-presence__grid {
    grid-template-columns: 1fr;
  }

  .da-presence__media,
  .da-presence__content {
    transform: translateY(16px);
  }

  .da-presence__content {
    max-width: 100%;
  }

  .da-presence__text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .da-presence {
    padding: 3rem 0;
  }

  .da-presence__card {
    border-radius: 24px;
    padding: 0.8rem;
  }

  .da-presence__grid {
    gap: 1.1rem;
  }

  .da-presence__title {
    font-size: clamp(1.55rem, 6.2vw, 2.1rem);
  }

  .da-presence__text {
    font-size: 0.875rem;
    line-height: 1.72;
    margin-bottom: 1.2rem;
  }

  .da-presence__cta {
    min-height: 40px;
    padding-left: 14px;
  }
}

@media (max-width: 480px) {
  .da-presence__card {
    border-radius: 20px;
    padding: 0.7rem;
  }

  .da-presence__title {
    font-size: clamp(1.32rem, 6.8vw, 1.85rem);
  }

  .da-presence__cta-text {
    font-size: 9.8px;
    letter-spacing: 0.05em;
  }

  .da-presence__cta-arrow {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-presence__media,
  .da-presence__content,
  .da-presence__cta,
  .da-presence__image {
    transition: none !important;
    animation: none !important;
  }
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.da-faq {
  position: relative;
  overflow: hidden;
  background: #050505;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.da-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../web/Home_back_E.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.18;
  pointer-events: none;
}

.da-faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(124, 58, 237, 0.08), transparent 28%),
    radial-gradient(circle at 88% 34%, rgba(192, 38, 211, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
  pointer-events: none;
}

.da-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.da-faq__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.da-faq__title {
  margin: 0;
  font-family: var(--da-font);
  font-size: var(--da-h2-size);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.da-faq__title span {
  background: linear-gradient(90deg, #5b6cff, #7c3aed, #c026d3, #7c3aed, #5b6cff);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: daGradShimmer 3.5s ease 0.9s infinite;
}

.da-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
  align-items: start;
}

.da-faq__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.da-faq__item {
  position: relative;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    #111111;
  border: 1px solid rgba(255,255,255,0.23);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.da-faq__item:hover {
  transform: translateY(-2px);
  border-color: rgba(124,58,237,0.55);
  box-shadow: 0 14px 40px rgba(0,0,0,0.42);
}

.da-faq__toggle {
  appearance: none;
  border: 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 1.15rem 1.2rem 1.15rem 1.35rem;
  background: transparent;
  color: #f3f4f6;
  font-family: var(--da-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  outline: none;
}

.da-faq__toggle:focus-visible {
  outline: 2px solid rgba(124,58,237,0.9);
  outline-offset: -2px;
}

.da-faq__question {
  flex: 1;
  min-width: 0;
  color: #ececf3;
}

.da-faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
}

.da-faq__icon::before,
.da-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: linear-gradient(90deg, #c026d3 0%, #7c3aed 100%);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.da-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.da-faq__item.is-open .da-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.da-faq__item.is-open .da-faq__icon::before {
  background: linear-gradient(90deg, #c026d3 0%, #f43f5e 100%);
}

.da-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.da-faq__panel-inner {
  padding: 0 1.2rem 1.15rem 1.35rem;
  color: #b6b6c6;
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  line-height: 1.78;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.05rem;
}

.da-faq__item.is-open {
  border-color: rgba(124,58,237,0.75);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.45),
    0 0 0 1px rgba(244,63,94,0.18);
}

.da-faq__item.is-open .da-faq__toggle {
  color: #ffffff;
}

.da-faq__item.is-open .da-faq__question {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .da-faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .da-faq {
    padding: 3.25rem 0;
  }

  .da-faq__header {
    margin-bottom: 1.7rem;
  }

  .da-faq__toggle {
    padding: 1rem 1rem 1rem 1.1rem;
    font-size: 13.5px;
  }

  .da-faq__panel-inner {
    padding: 0 1rem 1rem 1.1rem;
    font-size: 0.875rem;
  }

  .da-faq__item {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .da-faq__toggle {
    gap: 12px;
    font-size: 13px;
  }

  .da-faq__icon {
    width: 22px;
    height: 22px;
  }

  .da-faq__icon::before,
  .da-faq__icon::after {
    width: 11px;
    height: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-faq__item,
  .da-faq__panel,
  .da-faq__icon::before,
  .da-faq__icon::after {
    transition: none !important;
  }
}

/* ============================================================
   FAQ REVEAL ANIMATION
   ============================================================ */

.da-faq__item {
  opacity: 0;
  transform: translateY(28px);
}

.da-faq.is-visible .da-faq__item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   LOCATION / SERVICES SECTION
   ============================================================ */
.da-locations {
  position: relative;
  overflow: hidden;
  background-color: #050505;
  background-image: url('../web/Home_back_G.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.da-locations::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(124, 58, 237, 0.08), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(192, 38, 211, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.34));
  pointer-events: none;
}

.da-locations::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.03) 18%, transparent 36%),
    linear-gradient(300deg, transparent 0%, rgba(255,255,255,0.02) 20%, transparent 42%);
  pointer-events: none;
}

.da-locations__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.da-locations__header {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}

.da-locations__title {
  margin: 0;
  font-family: var(--da-font);
  font-size: var(--da-h2-size);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.da-locations__title-line {
  display: block;
  color: #ffffff;
}

.da-locations__title-line--grad {
  background: linear-gradient(90deg, #5b6cff, #7c3aed, #c026d3, #7c3aed, #5b6cff);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: daGradShimmer 3.5s ease 0.7s infinite;
}

.da-locations__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.82fr 0.72fr;
  gap: clamp(1.5rem, 3vw, 2.8rem);
  align-items: start;
}

.da-locations__col {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.da-locations.is-visible .da-locations__col {
  opacity: 1;
  transform: translateY(0);
}

.da-locations__col--usa { transition-delay: 0.05s; }
.da-locations__col--uk { transition-delay: 0.12s; }
.da-locations__col--saudi { transition-delay: 0.19s; }
.da-locations__col--qatar { transition-delay: 0.26s; }

.da-locations__country {
  margin: 0 0 1rem;
  font-family: var(--da-font);
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.da-locations__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
}

.da-locations__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0.48rem 1rem 0.48rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(15, 15, 15, 0.42);
  color: rgba(255,255,255,0.90);
  font-family: var(--da-font);
  font-size: var(--da-body-size);
  font-weight: 400;
  line-height: 1.2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(14px);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.da-locations.is-visible .da-locations__item {
  opacity: 1;
  transform: translateY(0);
}

.da-locations__item:hover {
  transform: translateY(-2px);
  border-color: rgba(124,58,237,0.65);
  background: rgba(20, 20, 20, 0.62);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.26),
    0 0 0 1px rgba(192,38,211,0.12);
}

/* stagger items */
.da-locations__list .da-locations__item:nth-child(1) { --d: 0.02s; }
.da-locations__list .da-locations__item:nth-child(2) { --d: 0.05s; }
.da-locations__list .da-locations__item:nth-child(3) { --d: 0.08s; }
.da-locations__list .da-locations__item:nth-child(4) { --d: 0.11s; }
.da-locations__list .da-locations__item:nth-child(5) { --d: 0.14s; }
.da-locations__list .da-locations__item:nth-child(6) { --d: 0.17s; }
.da-locations__list .da-locations__item:nth-child(7) { --d: 0.20s; }
.da-locations__list .da-locations__item:nth-child(8) { --d: 0.23s; }
.da-locations__list .da-locations__item:nth-child(9) { --d: 0.26s; }
.da-locations__list .da-locations__item:nth-child(10) { --d: 0.29s; }
.da-locations__list .da-locations__item:nth-child(11) { --d: 0.32s; }
.da-locations__list .da-locations__item:nth-child(12) { --d: 0.35s; }
.da-locations__list .da-locations__item:nth-child(13) { --d: 0.38s; }
.da-locations__list .da-locations__item:nth-child(14) { --d: 0.41s; }

@media (max-width: 1180px) {
  .da-locations__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .da-locations {
    padding: 3.5rem 0;
  }

  .da-locations__header {
    margin-bottom: 2rem;
  }

  .da-locations__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .da-locations__country {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
  }

  .da-locations__item {
    font-size: 0.875rem;
    padding: 0.45rem 0.95rem;
  }
}

@media (max-width: 480px) {
  .da-locations__item {
    min-height: 26px;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
  }

  .da-locations__list {
    gap: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-locations__col,
  .da-locations__item {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   SEARCH / TOPIC TAGS SECTION
   ============================================================ */
.da-searches {
  position: relative;
  overflow: hidden;
  background-color: #050505;
  background-image: url('../web/Home_back_E.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: clamp(4.5rem, 7vw, 7rem) 0 0;
}

.da-searches::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 22%, rgba(124, 58, 237, 0.10), transparent 23%),
    radial-gradient(circle at 92% 68%, rgba(192, 38, 211, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.36));
  pointer-events: none;
}

.da-searches::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.03) 18%, transparent 34%),
    linear-gradient(300deg, transparent 0%, rgba(255,255,255,0.02) 22%, transparent 40%);
  pointer-events: none;
}

.da-searches__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(3rem, 5.5vw, 5rem);
}

.da-searches__header {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.da-searches__title {
  margin: 0;
  font-family: var(--da-font);
  font-size: var(--da-h2-size);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.da-searches__title-line {
  display: block;
  color: #fff;
}

.da-searches__title-line--grad {
  background: linear-gradient(90deg, #5b6cff, #7c3aed, #c026d3, #7c3aed, #5b6cff);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: daGradShimmer 3.5s ease 1.1s infinite;
}

.da-searches__groups {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.4vw, 1.9rem);
}

.da-searches__group {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.da-searches.is-visible .da-searches__group {
  opacity: 1;
  transform: translateY(0);
}

.da-searches__group:nth-child(1) { transition-delay: 0.04s; }
.da-searches__group:nth-child(2) { transition-delay: 0.10s; }
.da-searches__group:nth-child(3) { transition-delay: 0.16s; }
.da-searches__group:nth-child(4) { transition-delay: 0.22s; }
.da-searches__group:nth-child(5) { transition-delay: 0.28s; }

.da-searches__group-title {
  margin: 0 0 0.95rem;
  font-family: var(--da-font);
  font-size: clamp(1rem, 1.15vw, 1.28rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #5b6cff 0%, #7c3aed 45%, #c026d3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.da-searches__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.da-searches__tag {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(12,12,12,0.42);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: var(--da-font);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  opacity: 0;
  transform: translateY(12px);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.da-searches.is-visible .da-searches__tag {
  opacity: 1;
  transform: translateY(0);
}

.da-searches__group .da-searches__tag:nth-child(1) { transition-delay: 0.03s; }
.da-searches__group .da-searches__tag:nth-child(2) { transition-delay: 0.06s; }
.da-searches__group .da-searches__tag:nth-child(3) { transition-delay: 0.09s; }
.da-searches__group .da-searches__tag:nth-child(4) { transition-delay: 0.12s; }

.da-searches__tag:hover {
  transform: translateY(-2px);
  border-color: rgba(124,58,237,0.7);
  background: rgba(18,18,18,0.66);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.28),
    0 0 0 1px rgba(192,38,211,0.12);
  color: #fff;
}

.da-searches__tag:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
}

.da-searches__ticker {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(90deg, #5063d9 0%, #6038c8 24%, #7f2fbf 48%, #9e2c9d 70%, #b02d73 86%, #bb3c39 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.da-searches__ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,0.16) 30%, transparent 42%);
  transform: translateX(-120%);
  animation: daSearchTickerShine 7s linear infinite;
  pointer-events: none;
}

.da-searches__ticker-track {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  padding: 0.66rem 1rem;
  white-space: nowrap;
  min-width: max-content;
  animation: daSearchTickerMove 20s linear infinite;
}

.da-searches__ticker-track span {
  font-family: var(--da-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  position: relative;
}

.da-searches__ticker-track span::after {
  content: "✦";
  margin-left: 2rem;
  opacity: 0.55;
}

@keyframes daSearchTickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes daSearchTickerShine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@media (max-width: 768px) {
  .da-searches {
    padding-top: 3.5rem;
  }

  .da-searches__inner {
    padding-bottom: 3rem;
  }

  .da-searches__group-title {
    font-size: 0.98rem;
    margin-bottom: 0.8rem;
  }

  .da-searches__tags {
    gap: 0.55rem;
  }

  .da-searches__tag {
    min-height: 30px;
    padding: 0.38rem 0.82rem;
    font-size: 12px;
    white-space: normal;
  }

  .da-searches__ticker-track {
    gap: 1.4rem;
    padding: 0.55rem 0.85rem;
    animation-duration: 16s;
  }

  .da-searches__ticker-track span {
    font-size: 12.5px;
  }

  .da-searches__ticker-track span::after {
    margin-left: 1.2rem;
  }
}

@media (max-width: 480px) {
  .da-searches__tag {
    max-width: 100%;
    text-align: left;
    line-height: 1.35;
  }

  .da-searches__ticker-track {
    animation-duration: 14s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-searches__group,
  .da-searches__tag,
  .da-searches__ticker::before,
  .da-searches__ticker-track {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* ============================================================
   LOCATIONS DROPDOWN — dark theme override
   Adds click-to-reveal sub-links to the pill items.
   Works alongside the existing .da-locations__item styles.
   ============================================================ */

/* Make the pill a positioned container for the dropdown */
.da-locations__item--drop {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  /* Override the existing opacity:0 / transform so it's always visible
     once the section is revealed — inherited from parent reveal */
}

/* City name takes all remaining space */
.da-loc__city-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Chevron arrow */
.da-loc__arrow {
  flex-shrink: 0;
  font-size: 10px;
  color: rgba(168, 85, 247, 0.75);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.25s ease;
  line-height: 1;
}

.da-locations__item--drop.is-open .da-loc__arrow {
  transform: rotate(180deg);
  color: #a855f7;
}

.da-locations__item--drop:hover .da-loc__arrow {
  color: #c026d3;
}

/* ── Dropdown panel ── */
.da-loc__dropdown {
  display: none; /* toggled to block via JS */
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 100;
  background: #111118;
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 12px;
  padding: 6px 4px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(124, 58, 237, 0.10);
  animation: daLocDropIn 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes daLocDropIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.da-loc__dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-family: var(--da-font);
  font-size: 12px;
  font-weight: 400;
  color: rgba(203, 213, 225, 0.82);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s ease,
              background 0.2s ease,
              padding-left 0.2s ease;
}

.da-loc__dropdown a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.da-loc__dropdown a:hover {
  color: #ffffff;
  background: rgba(124, 58, 237, 0.12);
  padding-left: 16px;
}

.da-loc__dropdown a:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Make sure parent overflow:hidden doesn't clip dropdown */
.da-locations__list {
  overflow: visible !important;
}

.da-locations__col {
  overflow: visible !important;
}

.da-locations__grid {
  overflow: visible !important;
}

/* ── Responsive adjustments ── */
@media (max-width: 768px) {
  .da-loc__dropdown {
    border-radius: 10px;
  }

  .da-loc__dropdown a {
    font-size: 11.5px;
    padding: 8px 10px;
  }
}

/* ============================================================
   LOCATIONS DROPDOWN — OVERFLOW & Z-INDEX FIX
   ============================================================ */

/* FIX 1: Section was clipping the dropdown — background-image
   and inset pseudo-elements are unaffected by this change */
.da-locations {
  overflow: visible !important;
}

/* FIX 2: backdrop-filter creates a stacking context on every item,
   causing siblings below to render on top of the open dropdown.
   Remove it from drop items only — the pill border/bg still shows fine */
.da-locations__item--drop {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* FIX 3: When open, lift the item above all siblings */
.da-locations__item--drop.is-open {
  z-index: 200;
  border-color: rgba(124, 58, 237, 0.65) !important;
  background: rgba(20, 20, 20, 0.80) !important;
}

/* FIX 4: Ensure dropdown itself has high enough z-index */
.da-loc__dropdown {
  z-index: 300 !important;
}

/* FIX 5: overflow:visible must bubble up through every ancestor */
.da-locations__inner,
.da-locations__grid,
.da-locations__col,
.da-locations__list {
  overflow: visible !important;
}