/*
 * DTA Premium 3D UI v26
 * Visual-only redesign: preserves WordPress content while modernizing layout,
 * motion, depth, responsiveness and interaction.
 */
:root{
  --dta-blue-950:#061a3a;
  --dta-blue-900:#0a2453;
  --dta-blue-800:#103b7a;
  --dta-blue-700:#0b58c7;
  --dta-blue-600:#0877ec;
  --dta-blue-500:#1599ff;
  --dta-blue-400:#4cc3ff;
  --dta-blue-300:#8cdbff;
  --dta-blue-200:#c9efff;
  --dta-blue-100:#eaf8ff;
  --dta-white:#fff;
  --dta-ink:#102b50;
  --dta-muted:#5c7697;
  --dta-line:rgba(45,121,210,.15);
  --dta-glass:rgba(255,255,255,.72);
  --dta-shadow:0 24px 80px rgba(13,55,116,.14);
  --dta-shadow-soft:0 15px 45px rgba(13,55,116,.09);
  --dta-radius-xl:36px;
  --dta-radius-lg:26px;
  --dta-radius-md:18px;
  --dta-ease:cubic-bezier(.22,.8,.2,1);
}

html{scroll-behavior:smooth;background:#fff;}
body.dta-premium-v26{
  margin:0;
  color:var(--dta-ink);
  background:
    radial-gradient(circle at 12% 4%,rgba(63,180,255,.11),transparent 26%),
    radial-gradient(circle at 91% 17%,rgba(8,119,236,.08),transparent 24%),
    #fff;
  font-family:"Be Vietnam Pro",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
body.dta-premium-v26 *{box-sizing:border-box;}
body.dta-premium-v26 img{max-width:100%;height:auto;}
body.dta-premium-v26 a{transition:color .25s var(--dta-ease),background .25s var(--dta-ease),border-color .25s var(--dta-ease),transform .25s var(--dta-ease),box-shadow .25s var(--dta-ease);}
body.dta-premium-v26 .container{width:min(1240px,calc(100% - 48px));max-width:none;margin-inline:auto;}
body.dta-premium-v26 main{position:relative;z-index:1;}
body.dta-premium-v26 section{position:relative;isolation:isolate;}
body.dta-premium-v26 h1,
body.dta-premium-v26 h2,
body.dta-premium-v26 h3,
body.dta-premium-v26 h4{letter-spacing:-.045em;color:var(--dta-blue-950);}
body.dta-premium-v26 p{color:var(--dta-muted);}

.dta-page-noise{
  position:fixed;inset:0;z-index:99999;pointer-events:none;opacity:.025;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.dta-cursor-glow{
  position:fixed;width:420px;height:420px;border-radius:50%;z-index:0;pointer-events:none;
  background:radial-gradient(circle,rgba(64,184,255,.12),rgba(64,184,255,0) 68%);
  transform:translate3d(-50%,-50%,0);opacity:0;transition:opacity .3s ease;
}
body.dta-pointer-active .dta-cursor-glow{opacity:1;}

/* Header */
body.dta-premium-v26 .top-strip{
  position:relative;z-index:1200;min-height:38px;
  color:#fff;background:linear-gradient(100deg,#061c44 0%,#0952ac 53%,#2ab8fa 100%);
  overflow:hidden;
}
body.dta-premium-v26 .top-strip:before{
  content:"";position:absolute;inset:-100% -10%;
  background:linear-gradient(110deg,transparent 36%,rgba(255,255,255,.24) 48%,transparent 60%);
  animation:dtaHeaderShine 8s linear infinite;
}
body.dta-premium-v26 .top-strip-inner{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:24px;position:relative;z-index:1;}
body.dta-premium-v26 .top-strip-note{font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;opacity:.72;}
body.dta-premium-v26 .top-strip a{display:inline-flex;align-items:center;gap:8px;color:#fff;text-decoration:none;font-size:13px;font-weight:800;}
body.dta-premium-v26 .top-strip svg{width:17px;height:17px;}
body.dta-premium-v26 .site-header{position:sticky;top:0;z-index:1100;padding:12px 0 0;background:transparent;transition:padding .3s var(--dta-ease);}
body.admin-bar.dta-premium-v26 .site-header{top:32px;}
body.dta-premium-v26 .site-header.is-scrolled{padding-top:7px;}
body.dta-premium-v26 .nav-wrap{
  min-height:78px;padding:9px 16px 9px 20px;display:flex;align-items:center;gap:28px;
  border:1px solid rgba(255,255,255,.8);border-radius:26px;
  background:rgba(255,255,255,.78);backdrop-filter:blur(24px) saturate(150%);-webkit-backdrop-filter:blur(24px) saturate(150%);
  box-shadow:0 16px 55px rgba(17,64,126,.11),inset 0 1px 0 rgba(255,255,255,.9);
  transition:min-height .3s var(--dta-ease),box-shadow .3s var(--dta-ease),background .3s var(--dta-ease);
}
body.dta-premium-v26 .site-header.is-scrolled .nav-wrap{min-height:66px;background:rgba(255,255,255,.92);box-shadow:0 12px 36px rgba(17,64,126,.13);}
body.dta-premium-v26 .brand{display:flex;align-items:center;flex:0 0 auto;text-decoration:none;transform-origin:left center;}
body.dta-premium-v26 .brand:hover{transform:translateY(-2px) scale(1.015);}
body.dta-premium-v26 .brand img{display:block;width:154px;max-height:58px;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(10,87,195,.15));}
body.dta-premium-v26 .main-nav{display:flex;align-items:center;justify-content:flex-end;gap:clamp(3px,.65vw,11px);flex:1;white-space:nowrap;}
body.dta-premium-v26 .main-nav>a,
body.dta-premium-v26 .nav-service-trigger{
  position:relative;display:inline-flex;align-items:center;justify-content:center;gap:6px;
  min-height:44px;padding:11px 15px;border:1px solid transparent;border-radius:14px;
  color:#173a68;text-decoration:none;font-size:13px;font-weight:800;line-height:1.15;
}
body.dta-premium-v26 .main-nav>a:before,
body.dta-premium-v26 .nav-service-trigger:before{
  content:"";position:absolute;inset:5px;border-radius:11px;background:linear-gradient(135deg,rgba(28,147,255,.13),rgba(255,255,255,.78));
  opacity:0;transform:scale(.86);transition:.25s var(--dta-ease);z-index:-1;
}
body.dta-premium-v26 .main-nav>a:hover:before,
body.dta-premium-v26 .main-nav>a.active:before,
body.dta-premium-v26 .nav-service-trigger:hover:before,
body.dta-premium-v26 .nav-service-trigger.active:before{opacity:1;transform:scale(1);}
body.dta-premium-v26 .main-nav>a:hover,
body.dta-premium-v26 .main-nav>a.active,
body.dta-premium-v26 .nav-service-trigger:hover,
body.dta-premium-v26 .nav-service-trigger.active{color:#075ed3;transform:translateY(-1px);}
body.dta-premium-v26 .nav-dropdown{position:relative;display:flex;align-items:center;}
body.dta-premium-v26 .nav-service-trigger:after{content:"⌄";font-size:13px;transition:transform .25s var(--dta-ease);}
body.dta-premium-v26 .nav-dropdown:hover .nav-service-trigger:after,
body.dta-premium-v26 .nav-dropdown:focus-within .nav-service-trigger:after{transform:rotate(180deg);}
body.dta-premium-v26 .nav-submenu{
  position:absolute;top:calc(100% + 14px);left:50%;width:340px;max-height:min(68vh,620px);padding:14px;
  display:grid;gap:4px;overflow:auto;border:1px solid rgba(35,131,231,.13);border-radius:24px;
  background:rgba(255,255,255,.94);backdrop-filter:blur(26px) saturate(160%);-webkit-backdrop-filter:blur(26px) saturate(160%);
  box-shadow:0 28px 75px rgba(16,55,112,.18),inset 0 1px 0 #fff;
  opacity:0;visibility:hidden;transform:translate(-50%,14px) scale(.97);transform-origin:top center;
  transition:opacity .25s var(--dta-ease),visibility .25s,transform .25s var(--dta-ease);
}
body.dta-premium-v26 .nav-dropdown:hover .nav-submenu,
body.dta-premium-v26 .nav-dropdown:focus-within .nav-submenu{opacity:1;visibility:visible;transform:translate(-50%,0) scale(1);}
body.dta-premium-v26 .nav-submenu a{
  position:relative;display:flex;align-items:center;gap:11px;padding:12px 13px 12px 45px;border-radius:14px;
  color:#294766;text-decoration:none;font-size:13px;font-weight:750;white-space:normal;
}
body.dta-premium-v26 .nav-submenu a:before{
  content:"✦";position:absolute;left:13px;top:50%;width:23px;height:23px;display:grid;place-items:center;transform:translateY(-50%);
  border-radius:8px;color:#2991cb;background:#ebf7ff;font-size:11px;
}
body.dta-premium-v26 .nav-submenu a:hover{color:#075dcc;background:linear-gradient(135deg,#eef9ff,#f8fbff);transform:translateX(4px);}
body.dta-premium-v26 .menu-toggle{display:none;align-items:center;gap:10px;padding:10px 12px;border:1px solid rgba(15,105,210,.14);border-radius:14px;background:#fff;color:#2991cb;box-shadow:0 9px 28px rgba(21,70,135,.09);}
body.dta-premium-v26 .menu-toggle-label{font:800 12px/1 inherit;text-transform:uppercase;letter-spacing:.08em;}
body.dta-premium-v26 .menu-toggle-icon{width:22px;height:18px;display:flex;flex-direction:column;justify-content:space-between;}
body.dta-premium-v26 .menu-toggle-icon i{display:block;width:100%;height:2px;border-radius:99px;background:currentColor;transition:.25s var(--dta-ease);}
body.dta-premium-v26 .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(1){transform:translateY(8px) rotate(45deg);}
body.dta-premium-v26 .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(2){opacity:0;transform:scaleX(0);}
body.dta-premium-v26 .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
body.dta-premium-v26 .dta-header-spacer{display:none;}

/* Buttons and common components */
body.dta-premium-v26 .btn{
  position:relative;display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:52px;padding:13px 22px;
  border:1px solid transparent;border-radius:16px;text-decoration:none;font-size:14px;font-weight:850;line-height:1;overflow:hidden;
  transform:translateZ(0);isolation:isolate;
}
body.dta-premium-v26 .btn:before{content:"";position:absolute;inset:0;background:linear-gradient(110deg,transparent 25%,rgba(255,255,255,.35) 48%,transparent 72%);transform:translateX(-130%);transition:transform .7s var(--dta-ease);z-index:-1;}
body.dta-premium-v26 .btn:hover:before{transform:translateX(130%);}
body.dta-premium-v26 .btn-primary{color:#fff;background:linear-gradient(135deg,#0a66e7 0%,#079df8 100%);box-shadow:0 15px 34px rgba(8,116,235,.26),inset 0 1px 0 rgba(255,255,255,.3);}
body.dta-premium-v26 .btn-primary:hover{color:#fff;transform:translateY(-3px);box-shadow:0 21px 45px rgba(8,116,235,.34);}
body.dta-premium-v26 .btn-ghost{color:#2991cb;background:rgba(255,255,255,.82);border-color:rgba(11,94,207,.16);box-shadow:0 12px 30px rgba(20,72,134,.08);}
body.dta-premium-v26 .btn-ghost:hover{color:#064ba9;background:#fff;transform:translateY(-3px);box-shadow:0 18px 40px rgba(20,72,134,.14);}
body.dta-premium-v26 .eyebrow,
body.dta-premium-v26 .dta-page-eyebrow{
  display:inline-flex;align-items:center;gap:8px;width:max-content;margin:0 0 20px;padding:9px 14px;border:1px solid rgba(12,111,223,.13);border-radius:999px;
  color:#2991cb;background:rgba(255,255,255,.72);box-shadow:0 8px 25px rgba(26,91,164,.07);font-size:12px;font-weight:850;letter-spacing:.08em;text-transform:uppercase;
}
body.dta-premium-v26 .eyebrow:before,
body.dta-premium-v26 .dta-page-eyebrow:before{content:"";width:8px;height:8px;border-radius:50%;background:#36baff;box-shadow:0 0 0 6px rgba(54,186,255,.12);}
body.dta-premium-v26 .dta-premium-eyebrow:before{display:none;}

/* Hero */
body.dta-premium-v26 .dta-premium-hero{
  min-height:820px;padding:96px 0 58px;overflow:hidden;
  background:
    radial-gradient(circle at 72% 42%,rgba(45,175,255,.22),transparent 31%),
    radial-gradient(circle at 18% 15%,rgba(8,103,229,.09),transparent 27%),
    linear-gradient(135deg,#f9fdff 0%,#eef8ff 55%,#f8fcff 100%);
}
body.dta-premium-v26 .dta-hero-mesh{position:absolute;inset:0;z-index:-2;background-image:linear-gradient(rgba(29,121,215,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(29,121,215,.035) 1px,transparent 1px);background-size:54px 54px;mask-image:linear-gradient(to bottom,black,transparent 86%);}
body.dta-premium-v26 .dta-hero-rays{position:absolute;inset:-25%;z-index:-1;background:conic-gradient(from 210deg at 70% 48%,transparent 0 9%,rgba(76,195,255,.09) 9.5% 10.7%,transparent 11% 19%,rgba(8,119,236,.05) 20% 21%,transparent 22% 100%);animation:dtaSlowSpin 36s linear infinite;}
body.dta-premium-v26 .hero-grid-real{display:grid;grid-template-columns:minmax(0,.92fr) minmax(480px,1.08fr);column-gap:50px;row-gap:34px;align-items:center;}
body.dta-premium-v26 .hero-copy{position:relative;z-index:10;max-width:650px;}
body.dta-premium-v26 .hero-copy h1{margin:0 0 26px;font-size:clamp(48px,5.2vw,78px);line-height:.99;font-weight:900;letter-spacing:-.068em;text-wrap:balance;}
body.dta-premium-v26 .hero-line{display:block;}
body.dta-premium-v26 .hero-line:first-child{background:linear-gradient(115deg,#075dd0 0%,#112d62 68%);-webkit-background-clip:text;background-clip:text;color:transparent;}
body.dta-premium-v26 .hero-copy .lead{max-width:610px;margin:0 0 30px;color:#5f7899;font-size:17px;line-height:1.8;}
body.dta-premium-v26 .hero-actions{display:flex;flex-wrap:wrap;gap:13px;}
body.dta-premium-v26 .btn-icon{width:26px;height:26px;display:grid;place-items:center;border-radius:9px;background:rgba(255,255,255,.18);}
body.dta-premium-v26 .btn-play{width:25px;height:25px;display:grid;place-items:center;border:1px solid rgba(11,94,207,.18);border-radius:50%;font-size:9px;}

body.dta-premium-v26 .dta-3d-stage{position:relative;width:min(100%,610px);aspect-ratio:1;margin-left:auto;perspective:1100px;transform-style:preserve-3d;isolation:isolate;}
body.dta-premium-v26 .dta-stage-halo{position:absolute;inset:11%;border-radius:50%;background:radial-gradient(circle at 50% 42%,rgba(255,255,255,.94) 0 12%,rgba(90,190,255,.31) 37%,rgba(20,116,229,.08) 58%,transparent 72%);filter:blur(2px);animation:dtaHaloPulse 5.6s ease-in-out infinite;}
body.dta-premium-v26 .dta-stage-halo:before{content:"";position:absolute;inset:-7%;border:1px dashed rgba(25,128,234,.2);border-radius:50%;animation:dtaSlowSpin 24s linear infinite;}
body.dta-premium-v26 .dta-platform{position:absolute;left:50%;bottom:12%;width:72%;height:28%;transform:translateX(-50%) rotateX(68deg) translateZ(-20px);transform-style:preserve-3d;}
body.dta-premium-v26 .dta-platform:before{content:"";position:absolute;inset:15% 8%;border-radius:50%;background:radial-gradient(ellipse,rgba(20,118,230,.22),rgba(14,89,190,.05) 48%,transparent 70%);filter:blur(12px);}
body.dta-premium-v26 .dta-platform-ring{position:absolute;inset:0;border:18px solid rgba(255,255,255,.78);border-radius:50%;box-shadow:0 0 0 2px rgba(22,122,228,.15),0 35px 60px rgba(10,74,157,.2),inset 0 0 24px rgba(15,124,239,.18);}
body.dta-premium-v26 .dta-platform-ring.ring-two{inset:16%;border-width:11px;border-color:rgba(53,170,255,.28);animation:dtaPlatformPulse 4.2s ease-in-out infinite;}
body.dta-premium-v26 .dta-platform-ring.ring-three{inset:31%;border-width:7px;border-color:rgba(255,255,255,.78);animation:dtaPlatformPulse 4.2s ease-in-out -1.5s infinite;}
body.dta-premium-v26 .dta-person-layer{position:absolute;left:50%;bottom:16%;width:56%;height:69%;transform:translateX(-50%) translateZ(70px);z-index:4;pointer-events:none;}
body.dta-premium-v26 .hero-img-person{width:100%;height:100%;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 28px 30px rgba(16,57,112,.23));animation:dtaPersonFloat 5.2s ease-in-out infinite;}
body.dta-premium-v26 .dta-glass-core{position:absolute;left:50%;top:38%;z-index:6;width:158px;height:158px;border-radius:50%;display:grid;place-items:center;transform:translate(-50%,-50%) translateZ(125px);background:radial-gradient(circle at 30% 24%,rgba(255,255,255,.95),rgba(109,201,255,.55) 30%,rgba(20,112,224,.3) 67%,rgba(9,65,143,.45));border:1px solid rgba(255,255,255,.78);box-shadow:inset 0 0 35px rgba(255,255,255,.72),0 25px 55px rgba(7,93,203,.28),0 0 0 12px rgba(255,255,255,.19);backdrop-filter:blur(12px);animation:dtaOrbFloat 4.4s ease-in-out infinite;overflow:hidden;}
body.dta-premium-v26 .dta-glass-core img{width:92px;filter:drop-shadow(0 8px 14px rgba(4,54,126,.18));}
body.dta-premium-v26 .dta-core-shine{position:absolute;left:22%;top:14%;width:32%;height:22%;border-radius:50%;background:rgba(255,255,255,.73);filter:blur(6px);transform:rotate(-24deg);}
body.dta-premium-v26 .dta-orbit{position:absolute;left:50%;top:48%;z-index:2;border:1px solid rgba(14,110,224,.26);border-radius:50%;transform-style:preserve-3d;}
body.dta-premium-v26 .dta-orbit-a{width:82%;height:45%;transform:translate(-50%,-50%) rotate(-15deg);animation:dtaOrbitSpinA 15s linear infinite;}
body.dta-premium-v26 .dta-orbit-b{width:58%;height:82%;transform:translate(-50%,-50%) rotate(34deg);animation:dtaOrbitSpinB 19s linear infinite reverse;}
body.dta-premium-v26 .dta-orbit-node{position:absolute;display:block;border-radius:50%;box-shadow:0 12px 25px rgba(8,84,180,.2);}
body.dta-premium-v26 .node-blue{width:31px;height:31px;left:8%;top:17%;background:radial-gradient(circle at 30% 25%,#b9ecff,#1185ee 48%,#064ea8 82%);}
body.dta-premium-v26 .node-glass{width:23px;height:23px;right:9%;bottom:18%;background:radial-gradient(circle at 30% 25%,#fff,rgba(255,255,255,.2));border:1px solid rgba(255,255,255,.9);backdrop-filter:blur(5px);}
body.dta-premium-v26 .node-gold{width:18px;height:18px;right:14%;top:8%;background:radial-gradient(circle at 30% 25%,#fff1b3,#ffc039 56%,#ec8f00);}
body.dta-premium-v26 .node-cube{width:29px;height:29px;left:3%;bottom:19%;border-radius:7px;background:linear-gradient(145deg,rgba(255,255,255,.9),rgba(46,159,255,.54));border:1px solid rgba(255,255,255,.84);transform:rotate(32deg);}
body.dta-premium-v26 .floating-card{position:absolute;z-index:8;display:flex;align-items:center;gap:10px;padding:13px 16px;border:1px solid rgba(255,255,255,.82);border-radius:17px;background:rgba(255,255,255,.78);backdrop-filter:blur(18px);box-shadow:0 18px 42px rgba(17,73,143,.14);color:#123b73;font-size:13px;animation:dtaCardFloat 5s ease-in-out infinite;}
body.dta-premium-v26 .floating-card-icon{width:30px;height:30px;display:grid;place-items:center;border-radius:10px;color:#2991cb;background:#e8f6ff;font-weight:900;}
body.dta-premium-v26 .floating-card.card-1{right:-1%;bottom:20%;animation-delay:-1.2s;}
body.dta-premium-v26 .floating-card.card-2{left:-4%;top:56%;animation-delay:-2.4s;}
body.dta-premium-v26 .floating-card.card-3{right:2%;top:18%;animation-delay:-3.3s;}
body.dta-premium-v26 .dta-data-panel{position:absolute;left:5%;bottom:8%;z-index:8;width:124px;height:84px;padding:15px;border:1px solid rgba(255,255,255,.82);border-radius:20px;background:rgba(255,255,255,.75);backdrop-filter:blur(18px);box-shadow:0 20px 48px rgba(17,73,143,.14);transform:rotate(-7deg);animation:dtaCardFloat 5.8s ease-in-out -1.6s infinite;}
body.dta-premium-v26 .panel-chart span{position:absolute;left:14px;bottom:15px;width:70%;height:2px;background:linear-gradient(90deg,#a9dcff,#0877ec);transform:rotate(-17deg);transform-origin:left;}
body.dta-premium-v26 .panel-chart i{position:relative;display:inline-block;width:11px;margin:23px 5px 0 0;border-radius:5px 5px 2px 2px;background:linear-gradient(180deg,#3abaff,#075ed0);}
body.dta-premium-v26 .panel-chart i:nth-of-type(1){height:18px}.panel-chart i:nth-of-type(2){height:30px}.panel-chart i:nth-of-type(3){height:23px}.panel-chart i:nth-of-type(4){height:39px}
body.dta-premium-v26 .hero-insight-panel{grid-column:1/-1;display:grid;grid-template-columns:1.45fr 1fr;gap:26px;padding:20px 22px;border:1px solid rgba(255,255,255,.9);border-radius:26px;background:rgba(255,255,255,.71);backdrop-filter:blur(22px);box-shadow:0 22px 65px rgba(16,73,144,.11);}
body.dta-premium-v26 .hero-awards{display:grid;grid-template-columns:auto 1fr;gap:17px;align-items:center;padding-right:25px;border-right:1px solid rgba(31,105,192,.13);}
body.dta-premium-v26 .hero-award-symbol{width:48px;height:48px;display:grid;place-items:center;border-radius:15px;color:#0877ec;background:linear-gradient(145deg,#eef9ff,#dff2ff);box-shadow:inset 0 1px 0 #fff;font-size:22px;}
body.dta-premium-v26 .hero-awards strong{display:block;margin-bottom:6px;color:#163d72;font-size:14px;}
body.dta-premium-v26 .hero-awards ul{display:flex;flex-wrap:wrap;gap:4px 18px;margin:0;padding-left:18px;color:#607896;font-size:12px;line-height:1.55;}
body.dta-premium-v26 .hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;}
body.dta-premium-v26 .hero-stats>div{display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto auto;column-gap:9px;align-items:center;padding:7px 10px;border-radius:15px;transition:.25s var(--dta-ease);}
body.dta-premium-v26 .hero-stats>div:hover{background:rgba(226,245,255,.7);transform:translateY(-3px);}
body.dta-premium-v26 .hero-stats .stat-icon{grid-row:1/3;width:34px;height:34px;display:grid;place-items:center;border-radius:11px;color:#0877ec;background:#e9f6ff;font-size:12px;}
body.dta-premium-v26 .hero-stats strong{color:#0765d6;font-size:23px;line-height:1;}
body.dta-premium-v26 .hero-stats strong:after{content:"+";font-size:.65em;margin-left:2px;}
body.dta-premium-v26 .hero-stats>div>span:last-child{color:#6b809a;font-size:10px;font-weight:650;}

/* Partner band */
body.dta-premium-v26 .partner-band{padding:30px 0;background:#fff;overflow:hidden;}
body.dta-premium-v26 .partner-panel{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:14px;border:1px solid var(--dta-line);border-radius:24px;background:linear-gradient(135deg,#f8fcff,#fff);box-shadow:var(--dta-shadow-soft);}
body.dta-premium-v26 .partner-logo{min-height:92px;display:grid;place-items:center;border-radius:17px;background:#fff;transition:.35s var(--dta-ease);overflow:hidden;}
body.dta-premium-v26 .partner-logo img{max-width:78%;max-height:62px;object-fit:contain;filter:saturate(.7) opacity(.8);transition:.35s var(--dta-ease);}
body.dta-premium-v26 .partner-logo:hover{transform:translateY(-7px) rotateX(4deg);box-shadow:0 18px 35px rgba(15,71,138,.11);}
body.dta-premium-v26 .partner-logo:hover img{filter:saturate(1.1) opacity(1);transform:scale(1.06);}

/* Sections */
body.dta-premium-v26 .about,
body.dta-premium-v26 .services,
body.dta-premium-v26 .faq-section,
body.dta-premium-v26 .news,
body.dta-premium-v26 .register{padding:112px 0;}
body.dta-premium-v26 .about{background:linear-gradient(180deg,#fff,#f6fbff);}
body.dta-premium-v26 .about-grid-real{display:grid;grid-template-columns:1fr 1fr;gap:76px;align-items:center;}
body.dta-premium-v26 .about-media-real{position:relative;min-height:560px;display:grid;place-items:center;border-radius:var(--dta-radius-xl);background:radial-gradient(circle at 50% 42%,rgba(58,188,255,.23),transparent 42%);}
body.dta-premium-v26 .about-media-real:before,
body.dta-premium-v26 .about-media-real:after{content:"";position:absolute;border-radius:32px;border:1px solid rgba(38,147,241,.18);background:rgba(255,255,255,.55);backdrop-filter:blur(14px);}
body.dta-premium-v26 .about-media-real:before{inset:4% 17% 17% 5%;transform:rotate(-5deg);}
body.dta-premium-v26 .about-media-real:after{inset:15% 4% 4% 17%;transform:rotate(5deg);}
body.dta-premium-v26 .about-media-real img{position:relative;z-index:2;width:86%;max-height:520px;object-fit:contain;border-radius:28px;filter:drop-shadow(0 25px 35px rgba(11,64,130,.18));transition:.5s var(--dta-ease);}
body.dta-premium-v26 .about-media-real:hover img{transform:translateY(-8px) scale(1.02);}
body.dta-premium-v26 .about-copy-real h2,
body.dta-premium-v26 .services-head h2,
body.dta-premium-v26 .section-head h2,
body.dta-premium-v26 .journey-head h2,
body.dta-premium-v26 .faq-copy h2{margin:0 0 22px;font-size:clamp(38px,4.5vw,66px);line-height:1.05;font-weight:900;}
body.dta-premium-v26 .about-head-real p{font-size:16px;line-height:1.78;}
body.dta-premium-v26 .about-metrics{display:grid;gap:10px;margin:28px 0;}
body.dta-premium-v26 .about-metric-row{display:grid;grid-template-columns:180px 1fr;align-items:center;padding:17px 20px;border:1px solid rgba(37,132,224,.13);border-radius:19px;background:rgba(255,255,255,.84);box-shadow:0 12px 30px rgba(20,76,138,.06);transition:.3s var(--dta-ease);}
body.dta-premium-v26 .about-metric-row:hover{transform:translateX(8px);border-color:rgba(8,119,236,.3);box-shadow:0 18px 38px rgba(20,76,138,.1);}
body.dta-premium-v26 .about-metric-number{display:flex;align-items:flex-start;color:#075fce;}
body.dta-premium-v26 .about-metric-number strong{font-size:38px;line-height:1;font-weight:900;letter-spacing:-.06em;}
body.dta-premium-v26 .about-metric-number span{font-weight:900;}
body.dta-premium-v26 .about-metric-text{display:flex;flex-direction:column;gap:3px;}
body.dta-premium-v26 .about-metric-text strong{color:#183c6d;}
body.dta-premium-v26 .about-metric-text span{color:#7388a1;font-size:12px;}

/* Services */
body.dta-premium-v26 .services{overflow:hidden;background:linear-gradient(160deg,#f1f9ff 0%,#fff 45%,#eef7ff 100%);}
body.dta-premium-v26 .services:before{content:"";position:absolute;right:-9%;top:4%;width:460px;height:460px;border-radius:50%;border:70px solid rgba(32,145,246,.045);box-shadow:0 0 0 35px rgba(32,145,246,.035),0 0 0 105px rgba(32,145,246,.025);}
body.dta-premium-v26 .services-head{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:42px;}
body.dta-premium-v26 .services-head h2{margin-bottom:0;}
body.dta-premium-v26 .services-all-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 18px;border:1px solid rgba(8,119,236,.16);border-radius:14px;color:#075ed0;background:#fff;text-decoration:none;font-size:13px;font-weight:850;box-shadow:0 12px 28px rgba(14,72,142,.07);}
body.dta-premium-v26 .services-all-btn:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(14,72,142,.12);}
body.dta-premium-v26 .service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:19px;perspective:1200px;}
body.dta-premium-v26 .service-card-simple{
  --tilt-x:0deg;--tilt-y:0deg;position:relative;min-height:260px;padding:28px;display:flex;flex-direction:column;
  border:1px solid rgba(34,129,224,.14);border-radius:25px;background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(239,249,255,.82));
  color:inherit;text-decoration:none;box-shadow:0 18px 45px rgba(12,68,137,.08),inset 0 1px 0 #fff;
  transform:perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);transform-style:preserve-3d;transition:transform .16s ease,box-shadow .35s var(--dta-ease),border-color .35s var(--dta-ease);
  overflow:hidden;
}
body.dta-premium-v26 .service-card-simple:before{content:"";position:absolute;right:-70px;bottom:-80px;width:190px;height:190px;border-radius:50%;background:radial-gradient(circle,rgba(32,157,255,.22),transparent 66%);transition:.45s var(--dta-ease);}
body.dta-premium-v26 .service-card-simple:after{content:"↗";position:absolute;right:23px;top:23px;width:35px;height:35px;display:grid;place-items:center;border-radius:12px;color:#0a6ee3;background:#eaf7ff;font-weight:900;transition:.35s var(--dta-ease);}
body.dta-premium-v26 .service-card-simple:hover{border-color:rgba(8,119,236,.34);box-shadow:0 32px 75px rgba(12,68,137,.15),inset 0 1px 0 #fff;}
body.dta-premium-v26 .service-card-simple:hover:before{transform:scale(1.45);}
body.dta-premium-v26 .service-card-simple:hover:after{color:#fff;background:#0877ec;transform:rotate(45deg);}
body.dta-premium-v26 .service-card-simple .service-icon{width:58px;height:58px;margin-bottom:42px;display:grid;place-items:center;border-radius:18px;color:#0877ec;background:linear-gradient(145deg,#fff,#dff3ff);box-shadow:0 14px 30px rgba(8,119,236,.15);transform:translateZ(36px);}
body.dta-premium-v26 .service-icon svg{width:27px;fill:none;stroke:currentColor;stroke-width:1.6;}
body.dta-premium-v26 .service-card-simple h3{margin:0 0 12px;font-size:21px;line-height:1.25;transform:translateZ(28px);}
body.dta-premium-v26 .service-card-simple p{margin:0;font-size:13px;line-height:1.65;transform:translateZ(18px);}

/* Journey */
body.dta-premium-v26 .journey{padding:116px 0;overflow:hidden;background:linear-gradient(135deg,#061a3c,#0a2f68 52%,#0c4b9f);}
body.dta-premium-v26 .journey:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 15% 20%,rgba(60,188,255,.15),transparent 28%),radial-gradient(circle at 88% 80%,rgba(12,119,236,.22),transparent 34%);}
body.dta-premium-v26 .journey-head{position:relative;text-align:center;margin-bottom:44px;}
body.dta-premium-v26 .journey-head .eyebrow{color:#0a63dd;background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.13);}
body.dta-premium-v26 .journey-head h2{max-width:900px;margin-inline:auto;color:#000000;}
body.dta-premium-v26 .journey-grid{position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:20px;perspective:1200px;}
body.dta-premium-v26 .journey-card{--tilt-x:0deg;--tilt-y:0deg;position:relative;padding:31px;border:1px solid rgba(255,255,255,.12);border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.095),rgba(255,255,255,.035));backdrop-filter:blur(18px);box-shadow:0 24px 60px rgba(0,17,49,.24);transform:perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));transform-style:preserve-3d;transition:transform .16s ease,border-color .3s,background .3s;overflow:hidden;}
body.dta-premium-v26 .journey-card:after{content:"";position:absolute;inset:-80%;background:linear-gradient(115deg,transparent 40%,rgba(255,255,255,.11),transparent 60%);transform:translateX(-50%) rotate(15deg);transition:transform .8s var(--dta-ease);}
body.dta-premium-v26 .journey-card:hover{border-color:rgba(109,214,255,.35);background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.055));}
body.dta-premium-v26 .journey-card:hover:after{transform:translateX(50%) rotate(15deg);}
body.dta-premium-v26 .journey-icon-wrap{position:relative;z-index:1;width:72px;height:72px;margin-bottom:40px;display:grid;place-items:center;border-radius:22px;color:#7fd7ff;background:rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.2);transform:translateZ(35px);}
body.dta-premium-v26 .dta-journey-icon{width:45px;fill:none;stroke:currentColor;stroke-width:2;}
body.dta-premium-v26 .journey-card h3{position:relative;z-index:1;margin:0 0 14px;color:#fff;font-size:25px;transform:translateZ(28px);}
body.dta-premium-v26 .journey-card p{position:relative;z-index:1;margin:0;color:#c6daf0;font-size:13px;line-height:1.75;transform:translateZ(18px);}
body.dta-premium-v26 .journey-footer-line{display:flex;align-items:center;justify-content:center;gap:18px;margin-top:45px;}
body.dta-premium-v26 .journey-footer-line .line{height:1px;flex:1;max-width:220px;background:linear-gradient(90deg,transparent,rgba(109,214,255,.45));}
body.dta-premium-v26 .journey-footer-line .line:last-child{transform:scaleX(-1);}
body.dta-premium-v26 .journey-play{width:46px;height:46px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.08);}
body.dta-premium-v26 .journey-play span{width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:9px solid #7fd7ff;margin-left:3px;}

/* FAQ */
body.dta-premium-v26 .faq-section{background:#fff;}
body.dta-premium-v26 .faq-grid{display:grid;grid-template-columns:1fr .92fr;gap:70px;align-items:center;}
body.dta-premium-v26 .faq-intro{font-size:16px;line-height:1.7;}
body.dta-premium-v26 .faq-list{display:grid;gap:9px;margin-top:30px;}
body.dta-premium-v26 .faq-item{border:1px solid rgba(29,119,215,.12);border-radius:18px;background:linear-gradient(145deg,#fff,#f7fbff);box-shadow:0 10px 28px rgba(18,72,137,.05);overflow:hidden;transition:.3s var(--dta-ease);}
body.dta-premium-v26 .faq-item[open]{border-color:rgba(8,119,236,.25);box-shadow:0 18px 38px rgba(18,72,137,.1);}
body.dta-premium-v26 .faq-question{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:19px 21px;color:#173d70;font-size:15px;font-weight:800;cursor:pointer;}
body.dta-premium-v26 .faq-question::-webkit-details-marker{display:none;}
body.dta-premium-v26 .faq-question span{width:31px;height:31px;display:grid;place-items:center;border-radius:10px;color:#0877ec;background:#e9f6ff;transition:.25s;}
body.dta-premium-v26 .faq-item[open] .faq-question span{transform:rotate(180deg);}
body.dta-premium-v26 .faq-answer{margin:0;padding:0 21px 20px;color:#69819e;line-height:1.7;}
body.dta-premium-v26 .faq-visual{position:relative;min-height:550px;display:grid;place-items:center;}
body.dta-premium-v26 .faq-image-card{position:relative;z-index:3;width:84%;aspect-ratio:1;border-radius:42% 58% 52% 48% / 46% 48% 52% 54%;overflow:hidden;border:12px solid rgba(255,255,255,.9);box-shadow:0 30px 75px rgba(12,72,145,.18);animation:dtaMorph 9s ease-in-out infinite;}
body.dta-premium-v26 .faq-image-card img{width:100%;height:100%;object-fit:cover;transition:.7s var(--dta-ease);}
body.dta-premium-v26 .faq-image-card:hover img{transform:scale(1.06);}
body.dta-premium-v26 .faq-corner{position:absolute;width:46%;height:46%;border:8px solid rgba(28,158,243,.32);z-index:1;}
body.dta-premium-v26 .faq-corner.top{left:1%;top:4%;border-right:0;border-bottom:0;}
body.dta-premium-v26 .faq-corner.bottom{right:1%;bottom:4%;border-left:0;border-top:0;}
body.dta-premium-v26 .faq-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:13px;margin-top:70px;padding:16px;border:1px solid var(--dta-line);border-radius:26px;background:#f7fbff;}
body.dta-premium-v26 .faq-stat{padding:20px;text-align:center;border-radius:19px;background:#fff;transition:.3s var(--dta-ease);}
body.dta-premium-v26 .faq-stat:hover{transform:translateY(-7px);box-shadow:0 18px 35px rgba(15,72,139,.1);}
body.dta-premium-v26 .faq-stat-icon{width:44px;height:44px;margin:0 auto 10px;display:grid;place-items:center;border-radius:14px;color:#0877ec;background:#e9f6ff;}
body.dta-premium-v26 .faq-stat-icon svg{width:28px;fill:none;stroke:currentColor;stroke-width:1.8;}
body.dta-premium-v26 .faq-stat-number{display:flex;justify-content:center;align-items:flex-start;color:#2991cb;font-size:30px;font-weight:900;}
body.dta-premium-v26 .faq-stat p{margin:4px 0 0;font-size:12px;}

/* Projects / logos */
body.dta-premium-v26 .dta-project-logo-section{
  padding:112px 0;
  background:#0a63dd;
  overflow:hidden;
}

body.dta-premium-v26 .dta-project-logo-section:before{
  content:none;
  display:none;
}
body.dta-premium-v26 .dta-project-logo-section .section-head,.dta-project-logo-section .dta-project-logo-head{position:relative;text-align:center;}
body.dta-premium-v26 .dta-project-logo-section .section-head h2,.dta-project-logo-section .dta-project-logo-head h2{color:#fff;}
body.dta-premium-v26 .dta-project-logo-section .section-head p,.dta-project-logo-section .dta-project-logo-head p{color:#ffffff;}
body.dta-premium-v26 .dta-project-logo-grid{position:relative;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;max-width:1060px;margin:38px auto 0;}
body.dta-premium-v26 .dta-project-logo-tile{position:relative;aspect-ratio:1.5;border:0!important;border-radius:22px!important;background:rgba(255,255,255,.94)!important;box-shadow:0 20px 50px rgba(0,18,55,.22)!important;overflow:hidden!important;transition:.38s var(--dta-ease)!important;}
body.dta-premium-v26 .dta-project-logo-tile:hover{transform:translateY(-9px) scale(1.025)!important;box-shadow:0 30px 70px rgba(0,18,55,.31)!important;}
body.dta-premium-v26 .dta-project-logo-tile img{width:100%!important;height:100%!important;object-fit:contain!important;padding:18px!important;filter:saturate(.92)!important;transition:.45s var(--dta-ease)!important;}
body.dta-premium-v26 .dta-project-logo-tile:hover img{transform:scale(1.08)!important;filter:saturate(1.1)!important;}
body.dta-premium-v26 .dta-project-logo-tile h3,
body.dta-premium-v26 .dta-project-logo-tile .dta-project-logo-title{display:none!important;}

/* News */
body.dta-premium-v26 .news{background:linear-gradient(180deg,#fff,#f2f9ff);}
body.dta-premium-v26 .section-head.centered{text-align:center;max-width:780px;margin:0 auto 44px;}
body.dta-premium-v26 .section-head.centered .eyebrow{margin-inline:auto;}
body.dta-premium-v26 .news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;perspective:1200px;}
body.dta-premium-v26 .news-card{--tilt-x:0deg;--tilt-y:0deg;position:relative;padding:14px 14px 24px;border:1px solid rgba(36,131,226,.13);border-radius:25px;background:#fff;box-shadow:0 18px 45px rgba(14,72,139,.08);transform:perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));transform-style:preserve-3d;transition:transform .16s ease,box-shadow .35s var(--dta-ease);overflow:hidden;}
body.dta-premium-v26 .news-card:hover{box-shadow:0 32px 75px rgba(14,72,139,.15);}
body.dta-premium-v26 .news-thumb{height:220px;border-radius:18px;background:linear-gradient(135deg,#dff3ff,#8dd7ff);overflow:hidden;transition:.45s var(--dta-ease);}
body.dta-premium-v26 .news-card:hover .news-thumb{transform:scale(1.025);}
body.dta-premium-v26 .news-card time{display:block;margin:18px 8px 8px;color:#2991cb;font-size:11px;font-weight:800;}
body.dta-premium-v26 .news-card h3{margin:0 8px 10px;font-size:20px;line-height:1.35;}
body.dta-premium-v26 .news-card p{margin:0 8px 15px;font-size:13px;line-height:1.65;}
body.dta-premium-v26 .news-card>a{display:inline-flex;margin:0 8px;color:#2991cb;text-decoration:none;font-size:13px;font-weight:850;}
body.dta-premium-v26 .news-card>a:after{content:"↗";margin-left:7px;}

/* Register and contact */
body.dta-premium-v26 .register{background:linear-gradient(140deg,#eef8ff,#fff);}
body.dta-premium-v26 .register-grid{display:grid;grid-template-columns:1fr .9fr;gap:60px;align-items:center;padding:52px;border:1px solid rgba(255,255,255,.9);border-radius:36px;background:rgba(255,255,255,.72);backdrop-filter:blur(22px);box-shadow:var(--dta-shadow);}
body.dta-premium-v26 .register-copy ul{display:grid;gap:12px;padding:0;margin:25px 0 0;list-style:none;}
body.dta-premium-v26 .register-copy li{position:relative;padding-left:35px;color:#395979;}
body.dta-premium-v26 .register-copy li:before{content:"✓";position:absolute;left:0;top:-2px;width:23px;height:23px;display:grid;place-items:center;border-radius:8px;color:#fff;background:#2991cb;font-size:12px;font-weight:900;}
body.dta-premium-v26 .consult-form,
body.dta-premium-v26 .dta-form-box{padding:28px;border:1px solid rgba(27,127,225,.14);border-radius:26px;background:linear-gradient(145deg,#fff,#f3faff);box-shadow:0 20px 55px rgba(12,68,137,.1);}
body.dta-premium-v26 .consult-form form,
body.dta-premium-v26 .dta-form-box form{display:grid;grid-template-columns:1fr 1fr;gap:15px;}
body.dta-premium-v26 .consult-form label{display:grid;gap:7px;color:#294c73;font-size:12px;font-weight:750;}
body.dta-premium-v26 .consult-form label:nth-child(n+3){grid-column:1/-1;}
body.dta-premium-v26 input,
body.dta-premium-v26 select,
body.dta-premium-v26 textarea{width:100%;min-height:48px;padding:12px 14px;border:1px solid rgba(28,122,216,.16);border-radius:13px;color:#183a63;background:#fff;font:inherit;outline:none;transition:.25s;}
body.dta-premium-v26 textarea{min-height:100px;resize:vertical;}
body.dta-premium-v26 input:focus,
body.dta-premium-v26 select:focus,
body.dta-premium-v26 textarea:focus{border-color:#2199f7;box-shadow:0 0 0 4px rgba(33,153,247,.1);}
body.dta-premium-v26 .consult-form button{grid-column:1/-1;}
body.dta-premium-v26 .contact-band{padding:28px 0 70px;background:#fff;}
body.dta-premium-v26 .contact-info-row{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
body.dta-premium-v26 .contact-info-card{--tilt-x:0deg;--tilt-y:0deg;display:flex;align-items:center;gap:15px;padding:22px;border:1px solid var(--dta-line);border-radius:20px;background:#f8fcff;transform:perspective(800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));transition:transform .16s ease,box-shadow .3s;}
body.dta-premium-v26 .contact-info-card:hover{box-shadow:0 18px 42px rgba(13,69,136,.11);}
body.dta-premium-v26 .contact-icon{width:52px;height:52px;flex:0 0 auto;display:grid;place-items:center;border-radius:17px;color:#0877ec;background:#e4f5ff;}
body.dta-premium-v26 .contact-icon svg{width:27px;}
body.dta-premium-v26 .contact-info-text{display:flex;flex-direction:column;gap:4px;}
body.dta-premium-v26 .contact-info-text strong{color:#153b6d;}
body.dta-premium-v26 .contact-info-text a,
body.dta-premium-v26 .contact-info-text span{color:#647c98;text-decoration:none;font-size:13px;line-height:1.5;}

/* Inner pages */
body.dta-premium-v26 .dta-page,
body.dta-premium-v26 .dta-single{background:#fff;}
body.dta-premium-v26 .dta-page-hero,
body.dta-premium-v26 .dta-single-head{position:relative;padding:110px 0 82px;overflow:hidden;background:linear-gradient(145deg,#eff8ff,#fff 58%,#eaf5ff);}
body.dta-premium-v26 .dta-page-hero:before,
body.dta-premium-v26 .dta-single-head:before{content:"";position:absolute;right:-6%;top:-38%;width:500px;height:500px;border-radius:50%;border:60px solid rgba(26,139,239,.05);box-shadow:0 0 0 38px rgba(26,139,239,.035),0 0 0 100px rgba(26,139,239,.025);animation:dtaSlowSpin 28s linear infinite;}
body.dta-premium-v26 .dta-page-hero-grid,
body.dta-premium-v26 .dta-single-head>.container{position:relative;display:grid;grid-template-columns:1.05fr .95fr;gap:64px;align-items:center;}
body.dta-premium-v26 .dta-page-hero h1,
body.dta-premium-v26 .dta-single-head h1{max-width:780px;margin:0 0 20px;font-size:clamp(46px,5.2vw,76px);line-height:1.04;font-weight:900;}
body.dta-premium-v26 .dta-page-hero p,
body.dta-premium-v26 .dta-single-head p{max-width:690px;font-size:16px;line-height:1.75;}
body.dta-premium-v26 .dta-page-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:27px;}
body.dta-premium-v26 .dta-page-visual-card,
body.dta-premium-v26 .dta-contact-card,
body.dta-premium-v26 .dta-single-image{position:relative;padding:18px;border:1px solid rgba(255,255,255,.9);border-radius:30px;background:rgba(255,255,255,.68);backdrop-filter:blur(18px);box-shadow:var(--dta-shadow);transform:perspective(900px) rotateY(-4deg) rotateX(2deg);transition:.45s var(--dta-ease);overflow:hidden;}
body.dta-premium-v26 .dta-page-visual-card:hover,
body.dta-premium-v26 .dta-contact-card:hover,
body.dta-premium-v26 .dta-single-image:hover{transform:perspective(900px) rotateY(0) rotateX(0) translateY(-7px);}
body.dta-premium-v26 .dta-page-visual-card img,
body.dta-premium-v26 .dta-single-image img{display:block;width:100%;max-height:480px;object-fit:cover;border-radius:21px;}
body.dta-premium-v26 .dta-content{padding:92px 0;}
body.dta-premium-v26 .dta-content-designed>.container,
body.dta-premium-v26 .entry-content.dta-editable-block{position:relative;}
body.dta-premium-v26 .dta-two-col-section{display:grid;grid-template-columns:1fr .85fr;gap:60px;align-items:start;}
body.dta-premium-v26 .dta-two-col-section h2{font-size:clamp(38px,4vw,58px);margin:0 0 20px;}
body.dta-premium-v26 .dta-metric-panel{display:grid;gap:13px;}
body.dta-premium-v26 .dta-metric-panel>div{padding:23px;border:1px solid var(--dta-line);border-radius:20px;background:#f7fbff;}
body.dta-premium-v26 .dta-metric-panel strong{display:block;color:#2991cb;font-size:36px;}
body.dta-premium-v26 .dta-metric-panel span{color:#69809b;}
body.dta-premium-v26 .dta-soft-section{padding:100px 0;background:#f3f9ff;}
body.dta-premium-v26 .dta-list-grid,
body.dta-premium-v26 .dta-designed-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:19px;}
body.dta-premium-v26 .dta-feature-card,
body.dta-premium-v26 .dta-designed-card,
body.dta-premium-v26 .dta-editable-block{padding:28px;border:1px solid var(--dta-line);border-radius:24px;background:#fff;box-shadow:0 16px 42px rgba(13,69,136,.07);}
body.dta-premium-v26 .dta-feature-card span{display:grid;place-items:center;width:48px;height:48px;margin-bottom:35px;border-radius:15px;color:#2991cb;background:#e9f6ff;font-weight:900;}
body.dta-premium-v26 .dta-feature-card h3{font-size:23px;}
body.dta-premium-v26 .dta-designed-card:hover,
body.dta-premium-v26 .dta-feature-card:hover{transform:translateY(-7px);box-shadow:0 25px 58px rgba(13,69,136,.12);}
body.dta-premium-v26 .dta-clean-archive-content{padding-top:70px;min-height:50vh;}
body.dta-premium-v26 .dta-single-head-designed .dta-meta{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:20px;color:#0877ec;font-size:12px;font-weight:800;}
body.dta-premium-v26 .dta-pill{display:inline-flex;margin-bottom:18px;padding:8px 13px;border-radius:999px;color:#2991cb;background:#e9f6ff;font-size:12px;font-weight:850;}
body.dta-premium-v26 .entry-content{font-size:16px;line-height:1.85;}
body.dta-premium-v26 .entry-content h2{font-size:34px;margin-top:1.5em;}
body.dta-premium-v26 .entry-content img{border-radius:20px;}

/* Footer */
body.dta-premium-v26 .site-footer{position:relative;padding:90px 0 0;overflow:hidden;color:#d7ebff;background:linear-gradient(135deg,#04152f 0%,#082b63 54%,#0759bd 100%);}
body.dta-premium-v26 .site-footer:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:45px 45px;mask-image:linear-gradient(to bottom,black,transparent 85%);}
body.dta-premium-v26 .dta-footer-orbit{position:absolute;border:1px solid rgba(100,209,255,.12);border-radius:50%;}
body.dta-premium-v26 .dta-footer-orbit-one{width:430px;height:430px;right:-180px;bottom:-160px;box-shadow:0 0 0 35px rgba(100,209,255,.035),0 0 0 90px rgba(100,209,255,.025);}
body.dta-premium-v26 .dta-footer-orbit-two{width:270px;height:270px;left:-120px;top:80px;box-shadow:0 0 0 25px rgba(100,209,255,.035),0 0 0 65px rgba(100,209,255,.02);}
body.dta-premium-v26 .footer-grid{position:relative;display:grid;grid-template-columns:1.2fr .7fr 1fr 1.05fr;gap:50px;align-items:start;}
body.dta-premium-v26 .footer-logo{width:164px;padding:9px;border-radius:20px;background:#fff;box-shadow:0 14px 34px rgba(0,12,34,.2);}
body.dta-premium-v26 .site-footer h4{margin:20px 0 16px;color:#fff;font-size:17px;letter-spacing:-.02em;}
body.dta-premium-v26 .site-footer p{color:#bdd6ee;font-size:13px;line-height:1.75;}
body.dta-premium-v26 .site-footer ul{margin:0;padding:0;list-style:none;}
body.dta-premium-v26 .site-footer li{margin:0 0 10px;}
body.dta-premium-v26 .site-footer a{color:#d9ebfb;text-decoration:none;font-size:13px;}
body.dta-premium-v26 .site-footer a:hover{color:#75d6ff;transform:translateX(4px);}
body.dta-premium-v26 .footer-socials{display:flex;gap:8px;margin-top:20px;}
body.dta-premium-v26 .footer-socials span{width:34px;height:34px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.15);border-radius:11px;color:#fff;background:rgba(255,255,255,.06);font-size:11px;font-weight:800;transition:.25s;}
body.dta-premium-v26 .footer-socials span:hover{background:#0877ec;transform:translateY(-4px);}
body.dta-premium-v26 .site-footer form{display:grid;gap:10px;}
body.dta-premium-v26 .site-footer input{color:#fff;background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.14);}
body.dta-premium-v26 .site-footer input::placeholder{color:#a9c8e6;}
body.dta-premium-v26 .footer-map{position:relative;margin-top:58px;padding:10px;border:1px solid rgba(255,255,255,.11);border-radius:28px;background:rgba(255,255,255,.07);box-shadow:0 25px 70px rgba(0,12,34,.25);}
body.dta-premium-v26 .footer-map iframe{display:block;width:100%;height:330px;border:0;border-radius:20px;filter:saturate(.8) contrast(.92);}
body.dta-premium-v26 .copyright{position:relative;display:flex;justify-content:space-between;gap:20px;margin:55px 0 0;padding:23px max(24px,calc((100vw - 1240px)/2));border-top:1px solid rgba(255,255,255,.1);color:#91b7d7;font-size:11px;}
body.dta-premium-v26 .zalo-float{position:fixed;right:22px;bottom:22px;z-index:1000;display:inline-flex;align-items:center;gap:8px;padding:13px 18px;border:1px solid rgba(255,255,255,.45);border-radius:999px;color:#fff;text-decoration:none;background:#2991cb;box-shadow:0 17px 40px rgba(8,105,229,.32);font-size:13px;font-weight:850;}
body.dta-premium-v26 .zalo-float:hover{color:#fff;transform:translateY(-4px) scale(1.03);}
body.dta-premium-v26 .zalo-dot{width:8px;height:8px;border-radius:50%;background:#fff;box-shadow:0 0 0 5px rgba(255,255,255,.15);animation:dtaDotPulse 1.8s ease-in-out infinite;}

/* Reveals and JS interaction */
body.dta-premium-v26 .reveal{opacity:0;transform:translateY(30px) scale(.985);transition:opacity .75s var(--dta-ease),transform .75s var(--dta-ease);}
body.dta-premium-v26 .reveal.visible{opacity:1;transform:none;}
body.dta-premium-v26 .reveal.delay-1{transition-delay:.12s;}
body.dta-premium-v26 .reveal.delay-2{transition-delay:.22s;}
body.dta-premium-v26 .dta-magnetic{will-change:transform;}

/* Responsive */
@media(max-width:1120px){
  body.dta-premium-v26 .container{width:min(100% - 36px,1040px);}
  body.dta-premium-v26 .main-nav{gap:1px;}
  body.dta-premium-v26 .main-nav>a,
  body.dta-premium-v26 .nav-service-trigger{padding-inline:10px;font-size:12px;}
  body.dta-premium-v26 .hero-grid-real{grid-template-columns:1fr 1fr;gap:24px;}
  body.dta-premium-v26 .dta-3d-stage{width:530px;max-width:100%;}
  body.dta-premium-v26 .hero-copy h1{font-size:clamp(46px,5vw,66px);}
  body.dta-premium-v26 .service-grid{grid-template-columns:repeat(2,1fr);}
  body.dta-premium-v26 .footer-grid{grid-template-columns:1.1fr .75fr 1fr;}
  body.dta-premium-v26 .footer-grid>div:last-child{grid-column:1/-1;max-width:540px;}
}

@media(max-width:980px){
  body.dta-premium-v26 .site-header{padding-top:8px;}
  body.dta-premium-v26 .nav-wrap{min-height:68px;padding:8px 10px 8px 15px;border-radius:21px;}
  body.dta-premium-v26 .brand img{width:142px;}
  body.dta-premium-v26 .menu-toggle{display:flex;position:relative;z-index:1302;}
  body.dta-premium-v26 .main-nav{
    position:fixed;top:0;right:0;z-index:1300;width:min(430px,100vw);height:100dvh;padding:max(98px,calc(env(safe-area-inset-top) + 82px)) 24px max(30px,env(safe-area-inset-bottom));
    display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start;gap:7px;overflow-y:auto;
    background:rgba(249,253,255,.98);backdrop-filter:none;
    -webkit-backdrop-filter:none;box-shadow:-25px 0 80px rgba(5,42,95,.22);
    transform:translateX(108%);visibility:hidden;transition:transform .38s var(--dta-ease),visibility .38s;
  }
  body.dta-premium-v26 .main-nav.open{transform:translateX(0);visibility:visible;}
  body.dta-premium-v26 .main-nav>a,
  body.dta-premium-v26 .nav-service-trigger{width:100%;min-height:52px;justify-content:space-between;padding:14px 16px;border:1px solid rgba(31,123,216,.1);border-radius:15px;background:#fff;font-size:14px;box-shadow:0 8px 24px rgba(14,69,132,.05);}
  body.dta-premium-v26 .nav-dropdown{display:block;width:100%;}
  body.dta-premium-v26 .nav-submenu,
  body.dta-premium-v26 .nav-dropdown:hover .nav-submenu,
  body.dta-premium-v26 .nav-dropdown:focus-within .nav-submenu{
    position:static;width:100%;max-height:0;padding:0 8px;border:0;border-radius:15px;background:#edf8ff;box-shadow:none;opacity:1;visibility:visible;transform:none;overflow:hidden;transition:max-height .35s var(--dta-ease),padding .35s var(--dta-ease),margin .35s var(--dta-ease);
  }
  body.dta-premium-v26 .nav-dropdown.submenu-open .nav-submenu{max-height:55vh;margin-top:7px;padding:8px;overflow-y:auto;}
  body.dta-premium-v26 .nav-submenu a{padding:11px 12px 11px 42px;}
  body.dta-premium-v26 .nav-dropdown:hover .nav-service-trigger:after{transform:none;}
  body.dta-premium-v26 .nav-dropdown.submenu-open .nav-service-trigger:after{transform:rotate(180deg);}
  body.dta-mobile-menu-open:before{content:"";position:fixed;inset:0;z-index:1290;background:rgba(3,24,55,.28);backdrop-filter:none;
    -webkit-backdrop-filter:none;}
  body.dta-mobile-menu-open{overflow:hidden;}
  body.dta-mobile-menu-open .menu-toggle{position:fixed;top:max(17px,env(safe-area-inset-top));right:20px;background:#0a5fd1;color:#fff;border-color:transparent;box-shadow:0 15px 40px rgba(7,82,176,.28);}
  body.admin-bar.dta-mobile-menu-open .menu-toggle{top:50px;}
  body.dta-premium-v26 .hero-grid-real{grid-template-columns:1fr;padding-top:20px;}
  body.dta-premium-v26 .hero-copy{max-width:760px;text-align:center;margin-inline:auto;}
  body.dta-premium-v26 .dta-premium-eyebrow{margin-inline:auto;}
  body.dta-premium-v26 .hero-copy .lead{margin-inline:auto;}
  body.dta-premium-v26 .hero-actions{justify-content:center;}
  body.dta-premium-v26 .dta-3d-stage{margin-inline:auto;width:600px;}
  body.dta-premium-v26 .hero-insight-panel{grid-template-columns:1fr;}
  body.dta-premium-v26 .hero-awards{border-right:0;border-bottom:1px solid rgba(31,105,192,.13);padding:0 0 18px;}
  body.dta-premium-v26 .about-grid-real,
  body.dta-premium-v26 .faq-grid,
  body.dta-premium-v26 .register-grid,
  body.dta-premium-v26 .dta-page-hero-grid,
  body.dta-premium-v26 .dta-single-head>.container,
  body.dta-premium-v26 .dta-two-col-section{grid-template-columns:1fr;}
  body.dta-premium-v26 .about-copy-real{order:-1;}
  body.dta-premium-v26 .journey-grid{grid-template-columns:1fr;}
  body.dta-premium-v26 .journey-card{min-height:auto;}
  body.dta-premium-v26 .faq-visual{min-height:500px;}
  body.dta-premium-v26 .dta-project-logo-grid{grid-template-columns:repeat(3,1fr);}
  body.dta-premium-v26 .news-grid{grid-template-columns:repeat(2,1fr);}
  body.dta-premium-v26 .contact-info-row{grid-template-columns:1fr;}
  body.dta-premium-v26 .footer-grid{grid-template-columns:1fr 1fr;}
  body.dta-premium-v26 .footer-grid>div:last-child{grid-column:auto;max-width:none;}
  body.dta-premium-v26 .dta-list-grid,
  body.dta-premium-v26 .dta-designed-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:782px){
  body.admin-bar.dta-premium-v26 .site-header{top:46px;}
  body.admin-bar.dta-mobile-menu-open .menu-toggle{top:62px;}
}

@media(max-width:680px){
  body.dta-premium-v26 .container{width:calc(100% - 28px);}
  body.dta-premium-v26 .top-strip-note{display:none;}
  body.dta-premium-v26 .top-strip-inner{justify-content:center;}
  body.dta-premium-v26 .site-header{padding-top:7px;}
  body.dta-premium-v26 .nav-wrap{min-height:62px;border-radius:18px;}
  body.dta-premium-v26 .brand img{width:130px;max-height:48px;}
  body.dta-premium-v26 .menu-toggle{padding:9px 10px;}
  body.dta-premium-v26 .menu-toggle-label{display:none;}
  body.dta-premium-v26 .main-nav{width:100vw;padding-inline:16px;}
  body.dta-premium-v26 .dta-premium-hero{min-height:auto;padding:68px 0 45px;}
  body.dta-premium-v26 .hero-copy h1{font-size:clamp(39px,12vw,56px);line-height:1.02;}
  body.dta-premium-v26 .hero-copy .lead{font-size:15px;line-height:1.7;}
  body.dta-premium-v26 .hero-actions .btn{width:100%;}
  body.dta-premium-v26 .dta-3d-stage{width:min(100%,430px);}
  body.dta-premium-v26 .floating-card{padding:9px 11px;font-size:10px;border-radius:13px;}
  body.dta-premium-v26 .floating-card-icon{width:24px;height:24px;border-radius:8px;}
  body.dta-premium-v26 .dta-glass-core{width:116px;height:116px;}
  body.dta-premium-v26 .dta-glass-core img{width:72px;}
  body.dta-premium-v26 .dta-data-panel{width:90px;height:66px;padding:10px;}
  body.dta-premium-v26 .hero-insight-panel{padding:16px;border-radius:21px;}
  body.dta-premium-v26 .hero-awards{grid-template-columns:1fr;text-align:left;}
  body.dta-premium-v26 .hero-award-symbol{display:none;}
  body.dta-premium-v26 .hero-awards ul{display:grid;gap:3px;}
  body.dta-premium-v26 .hero-stats{grid-template-columns:1fr;}
  body.dta-premium-v26 .hero-stats>div{grid-template-columns:auto auto 1fr;grid-template-rows:auto;}
  body.dta-premium-v26 .hero-stats .stat-icon{grid-row:auto;}
  body.dta-premium-v26 .hero-stats>div>span:last-child{font-size:11px;}
  body.dta-premium-v26 .partner-panel{grid-template-columns:repeat(2,1fr);}
  body.dta-premium-v26 .about,
  body.dta-premium-v26 .services,
  body.dta-premium-v26 .faq-section,
  body.dta-premium-v26 .news,
  body.dta-premium-v26 .register{padding:78px 0;}
  body.dta-premium-v26 .about-media-real{min-height:390px;}
  body.dta-premium-v26 .about-metric-row{grid-template-columns:125px 1fr;padding:14px;}
  body.dta-premium-v26 .about-metric-number strong{font-size:30px;}
  body.dta-premium-v26 .services-head{align-items:start;flex-direction:column;}
  body.dta-premium-v26 .service-grid,
  body.dta-premium-v26 .news-grid,
  body.dta-premium-v26 .dta-list-grid,
  body.dta-premium-v26 .dta-designed-grid{grid-template-columns:1fr;}
  body.dta-premium-v26 .service-card-simple{min-height:225px;}
  body.dta-premium-v26 .service-card-simple .service-icon{margin-bottom:30px;}
  body.dta-premium-v26 .journey{padding:80px 0;}
  body.dta-premium-v26 .faq-visual{min-height:390px;}
  body.dta-premium-v26 .faq-stats{grid-template-columns:repeat(2,1fr);}
  body.dta-premium-v26 .dta-project-logo-grid{grid-template-columns:repeat(2,1fr);gap:10px;}
  body.dta-premium-v26 .dta-project-logo-tile{border-radius:16px!important;}
  body.dta-premium-v26 .register-grid{padding:25px;gap:35px;border-radius:27px;}
  body.dta-premium-v26 .consult-form form,
  body.dta-premium-v26 .dta-form-box form{grid-template-columns:1fr;}
  body.dta-premium-v26 .consult-form label:nth-child(n+3),
  body.dta-premium-v26 .consult-form button{grid-column:auto;}
  body.dta-premium-v26 .dta-page-hero,
  body.dta-premium-v26 .dta-single-head{padding:76px 0 58px;}
  body.dta-premium-v26 .dta-page-hero h1,
  body.dta-premium-v26 .dta-single-head h1{font-size:clamp(40px,11.5vw,56px);}
  body.dta-premium-v26 .dta-page-visual-card,
  body.dta-premium-v26 .dta-contact-card,
  body.dta-premium-v26 .dta-single-image{transform:none;}
  body.dta-premium-v26 .footer-grid{grid-template-columns:1fr;gap:32px;}
  body.dta-premium-v26 .footer-map iframe{height:240px;}
  body.dta-premium-v26 .copyright{flex-direction:column;text-align:center;}
  body.dta-premium-v26 .zalo-float{right:12px;bottom:12px;padding:11px 15px;}
}

@media(max-width:420px){
  body.dta-premium-v26 .container{width:calc(100% - 22px);}
  body.dta-premium-v26 .top-strip a{font-size:12px;}
  body.dta-premium-v26 .hero-copy h1{font-size:38px;}
  body.dta-premium-v26 .dta-3d-stage{width:350px;max-width:100%;}
  body.dta-premium-v26 .floating-card.card-2{left:0;}
  body.dta-premium-v26 .floating-card.card-1{right:0;}
  body.dta-premium-v26 .dta-project-logo-grid{grid-template-columns:1fr 1fr;}
  body.dta-premium-v26 .faq-stats{grid-template-columns:1fr;}
}

/* Motion accessibility */
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  body.dta-premium-v26 *,body.dta-premium-v26 *:before,body.dta-premium-v26 *:after{animation-duration:.001ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.001ms!important;}
  body.dta-premium-v26 .reveal{opacity:1;transform:none;}
}

@keyframes dtaHeaderShine{0%{transform:translateX(-70%)}100%{transform:translateX(70%)}}
@keyframes dtaSlowSpin{to{transform:rotate(360deg)}}
@keyframes dtaHaloPulse{0%,100%{transform:scale(.96);opacity:.82}50%{transform:scale(1.04);opacity:1}}
@keyframes dtaPlatformPulse{0%,100%{transform:scale(.96);opacity:.6}50%{transform:scale(1.04);opacity:1}}
@keyframes dtaPersonFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-13px)}}
@keyframes dtaOrbFloat{0%,100%{transform:translate(-50%,-50%) translateZ(125px) translateY(0) rotate(-2deg)}50%{transform:translate(-50%,-50%) translateZ(125px) translateY(-12px) rotate(2deg)}}
@keyframes dtaOrbitSpinA{to{transform:translate(-50%,-50%) rotate(345deg)}}
@keyframes dtaOrbitSpinB{to{transform:translate(-50%,-50%) rotate(394deg)}}
@keyframes dtaCardFloat{0%,100%{translate:0 0}50%{translate:0 -10px}}
@keyframes dtaMorph{0%,100%{border-radius:42% 58% 52% 48% / 46% 48% 52% 54%}50%{border-radius:56% 44% 42% 58% / 53% 57% 43% 47%}}
@keyframes dtaDotPulse{0%,100%{box-shadow:0 0 0 4px rgba(255,255,255,.12)}50%{box-shadow:0 0 0 9px rgba(255,255,255,0)}}

/* WordPress archive cards */
body.dta-premium-v26 .dta-card{
  --tilt-x:0deg;--tilt-y:0deg;display:block;overflow:hidden;border:1px solid var(--dta-line);border-radius:24px;background:#fff;color:inherit;text-decoration:none;
  box-shadow:0 18px 46px rgba(13,69,136,.08);transform:perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));transform-style:preserve-3d;
  transition:transform .16s ease,box-shadow .35s var(--dta-ease),border-color .35s var(--dta-ease);
}
body.dta-premium-v26 .dta-card:hover{border-color:rgba(8,119,236,.28);box-shadow:0 30px 70px rgba(13,69,136,.14);}
body.dta-premium-v26 .dta-card-media{height:235px;overflow:hidden;background:#e9f6ff;}
body.dta-premium-v26 .dta-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--dta-ease);}
body.dta-premium-v26 .dta-card:hover .dta-card-media img{transform:scale(1.065);}
body.dta-premium-v26 .dta-card-body{padding:24px;transform:translateZ(20px);}
body.dta-premium-v26 .dta-card-body h2{margin:12px 0 10px;font-size:23px;line-height:1.3;}
body.dta-premium-v26 .dta-card-body p{margin:0;font-size:13px;line-height:1.7;}
body.dta-premium-v26 .dta-card .dta-meta{display:flex;flex-wrap:wrap;gap:8px;color:#0877ec;font-size:11px;font-weight:800;}


/* === V27 hero refinement: centered 3D logo showcase, safer layout === */
body.dta-premium-v26 .hero-visual{overflow:visible;}
body.dta-premium-v26 .dta-3d-stage{
  position:relative;
  width:min(100%,620px);
  aspect-ratio:1;
  margin-inline:auto;
  isolation:isolate;
}
body.dta-premium-v26 .dta-stage-grid{
  position:absolute;
  inset:9% 8% 7%;
  border-radius:34px;
  background:
    linear-gradient(rgba(18,118,211,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,118,211,.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.75), rgba(234,246,255,.42) 45%, rgba(225,241,255,.08) 72%);
  background-size:48px 48px,48px 48px,100% 100%;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.65), 0 18px 54px rgba(10,77,161,.08);
  transform:translateZ(0);
  opacity:.72;
}
body.dta-premium-v26 .dta-logo-showcase{
  position:absolute;
  inset:17% 18% 18%;
  display:grid;
  place-items:center;
  transform-style:preserve-3d;
  z-index:5;
}
body.dta-premium-v26 .dta-logo-backplate{
  position:absolute;
  border-radius:34px;
  background:linear-gradient(145deg, rgba(255,255,255,.92), rgba(235,245,255,.84));
  border:1px solid rgba(255,255,255,.9);
  box-shadow:0 18px 48px rgba(17,81,160,.10), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter:blur(14px);
}
body.dta-premium-v26 .dta-logo-backplate-one{ inset:4% 5% 11% 12%; transform:translateZ(24px) rotate(-7deg); }
body.dta-premium-v26 .dta-logo-backplate-two{ inset:9% 10% 6% 8%; transform:translateZ(62px) rotate(5deg); }
body.dta-premium-v26 .dta-logo-backplate-three{ inset:0; transform:translateZ(102px); }
body.dta-premium-v26 .dta-glass-core{
  left:50%;top:50%;
  width:174px;height:174px;
  transform:translate(-50%,-50%) translateZ(160px);
  z-index:7;
}
body.dta-premium-v26 .dta-glass-core img{ width:112px; }
body.dta-premium-v26 .dta-data-panel{
  z-index:8;
  right:8%;
  bottom:8%;
  width:124px;
  height:92px;
}
body.dta-premium-v26 .floating-card{
  min-width:188px;
  max-width:230px;
  gap:12px;
}
body.dta-premium-v26 .floating-card > div{display:grid;gap:4px;}
body.dta-premium-v26 .floating-card strong{display:block;color:#123b73;font-size:14px;line-height:1.15;}
body.dta-premium-v26 .floating-card span:last-child{display:block;color:#5c7697;font-size:11px;font-weight:700;line-height:1.4;}
body.dta-premium-v26 .floating-card.card-1{right:-2%;top:21%;bottom:auto;}
body.dta-premium-v26 .floating-card.card-2{left:-3%;top:58%;}
body.dta-premium-v26 .floating-card.card-3{right:2%;bottom:16%;top:auto;}
body.dta-premium-v26 .dta-mini-pill{
  position:absolute;
  z-index:7;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:90px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.85);
  background:rgba(255,255,255,.84);
  box-shadow:0 15px 36px rgba(17,81,160,.10);
  color:#2a58c9;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  backdrop-filter:blur(16px);
  animation:dtaCardFloat 6.2s ease-in-out infinite;
}
body.dta-premium-v26 .dta-mini-pill.pill-1{left:10%;top:21%;animation-delay:-1s;}
body.dta-premium-v26 .dta-mini-pill.pill-2{right:9%;top:44%;animation-delay:-2.2s;}
body.dta-premium-v26 .dta-mini-pill.pill-3{left:17%;bottom:14%;animation-delay:-3.1s;}
body.dta-premium-v26 .dta-person-layer,
body.dta-premium-v26 .hero-img-person{display:none !important;}

@media(max-width:980px){
  body.dta-premium-v26 .dta-logo-showcase{inset:17% 16% 16%;}
  body.dta-premium-v26 .floating-card{min-width:160px;max-width:190px;}
  body.dta-premium-v26 .floating-card.card-1{right:1%;top:16%;}
  body.dta-premium-v26 .floating-card.card-2{left:0;top:61%;}
  body.dta-premium-v26 .floating-card.card-3{right:2%;bottom:13%;}
}
@media(max-width:680px){
  body.dta-premium-v26 .dta-stage-grid{inset:10% 5% 8%;background-size:34px 34px,34px 34px,100% 100%;}
  body.dta-premium-v26 .dta-logo-showcase{inset:19% 12% 17%;}
  body.dta-premium-v26 .dta-logo-backplate{border-radius:26px;}
  body.dta-premium-v26 .dta-glass-core{width:128px;height:128px;transform:translate(-50%,-50%) translateZ(150px);}
  body.dta-premium-v26 .dta-glass-core img{width:84px;}
  body.dta-premium-v26 .floating-card{min-width:124px;max-width:148px;padding:10px 11px;font-size:10px;border-radius:13px;gap:8px;}
  body.dta-premium-v26 .floating-card strong{font-size:11px;}
  body.dta-premium-v26 .floating-card span:last-child{font-size:9px;}
  body.dta-premium-v26 .floating-card-icon{width:24px;height:24px;border-radius:8px;}
  body.dta-premium-v26 .floating-card.card-1{right:0;top:14%;}
  body.dta-premium-v26 .floating-card.card-2{left:0;top:60%;}
  body.dta-premium-v26 .floating-card.card-3{right:0;bottom:12%;}
  body.dta-premium-v26 .dta-mini-pill{min-width:72px;padding:7px 10px;font-size:10px;}
  body.dta-premium-v26 .dta-mini-pill.pill-1{left:6%;top:18%;}
  body.dta-premium-v26 .dta-mini-pill.pill-2{right:4%;top:44%;}
  body.dta-premium-v26 .dta-mini-pill.pill-3{left:11%;bottom:10%;}
  body.dta-premium-v26 .dta-data-panel{right:4%;bottom:5%;width:88px;height:64px;padding:10px;}
}
@media(max-width:420px){
  body.dta-premium-v26 .dta-3d-stage{width:min(100%,340px);}
  body.dta-premium-v26 .dta-logo-showcase{inset:21% 10% 18%;}
  body.dta-premium-v26 .floating-card{min-width:112px;max-width:124px;}
  body.dta-premium-v26 .dta-mini-pill{display:none;}
}


/* Custom adjustments */
body.dta-premium-v26 .dta-project-logo-tile{
  aspect-ratio: 1.35;
  border-radius: 14px!important;
}
body.dta-premium-v26 .dta-project-logo-tile img{
  padding: 8px!important;
}
@media(max-width:980px){

body.dta-mobile-menu-open .main-nav,
body.dta-mobile-menu-open .main-nav *{
    filter:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    opacity:1 !important;
}

}

/* ===== FIX MOBILE MENU OVERLAY / CLICK ===== */
@media(max-width:980px){

  body.dta-mobile-menu-open:before{
      z-index:1200 !important;
      background:rgba(3,24,55,.28) !important;
      backdrop-filter:none !important;
      -webkit-backdrop-filter:none !important;
      pointer-events:none !important;
  }

  body.dta-premium-v26 .main-nav{
      z-index:9999 !important;
      filter:none !important;
      backdrop-filter:none !important;
      -webkit-backdrop-filter:none !important;
      opacity:1 !important;
  }

  body.dta-premium-v26 .main-nav.open,
  body.dta-premium-v26 .main-nav.open a,
  body.dta-premium-v26 .main-nav.open button{
      pointer-events:auto !important;
      opacity:1 !important;
      filter:none !important;
  }

  body.dta-mobile-menu-open .site-header,
  body.dta-mobile-menu-open .nav-wrap{
      filter:none !important;
      backdrop-filter:none !important;
      -webkit-backdrop-filter:none !important;
  }

}