/* =============================================
   ADAIGO — DIGITAL MARKETING AGENCY
   Style v4.0 | Light Theme | Animated
============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* =============================================
   CSS VARIABLES
============================================= */
:root {
   /* Brand */
   --orange:        #FF4D00;
   --orange-2:      #FF7A3D;
   --orange-3:      #FFA875;
   --teal:          #00C4B4;
   --teal-2:        #00E5D8;
   --purple:        #8B5CF6;
   --purple-2:      #A78BFA;
   --green:         #10B981;
   --yellow:        #FBBF24;
   --pink:          #F472B6;

   /* Gradients */
   --grad-orange:   linear-gradient(135deg, #FF4D00 0%, #FF7A3D 100%);
   --grad-teal:     linear-gradient(135deg, #00C4B4 0%, #00E5D8 100%);
   --grad-purple:   linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
   --grad-brand:    linear-gradient(135deg, #FF4D00 0%, #8B5CF6 50%, #00C4B4 100%);
   --grad-hero:     linear-gradient(135deg, #FF4D00 0%, #FF7A3D 100%);
   --grad-warm:     linear-gradient(135deg, #FFF4EF 0%, #FFF8F5 100%);

   /* Backgrounds — LIGHT THEME */
   --bg:            #FFFFFF;
   --bg-soft:       #F8F9FF;
   --bg-warm:       #FFF5F0;
   --bg-teal:       #F0FDFB;
   --bg-card:       #FFFFFF;
   --bg-dark:       #080C14;
   --bg-dark-2:     #0D1117;

   /* Text */
   --txt-h:         #080C14;
   --txt-b:         #374151;
   --txt-m:         #6B7280;
   --txt-light:     #9CA3AF;
   --txt-white:     #FFFFFF;

   /* Borders */
   --border:        rgba(0,0,0,0.07);
   --border-orange: rgba(255,77,0,0.2);
   --border-teal:   rgba(0,196,180,0.2);

   /* Shadows */
   --shadow-xs:     0 2px 8px rgba(0,0,0,0.06);
   --shadow-sm:     0 4px 16px rgba(0,0,0,0.08);
   --shadow-md:     0 8px 32px rgba(0,0,0,0.1);
   --shadow-lg:     0 20px 60px rgba(0,0,0,0.12);
   --shadow-xl:     0 32px 80px rgba(0,0,0,0.16);
   --shadow-orange: 0 8px 32px rgba(255,77,0,0.28);
   --shadow-teal:   0 8px 32px rgba(0,196,180,0.25);
   --shadow-purple: 0 8px 32px rgba(139,92,246,0.28);

   /* Tokens */
   --radius:        20px;
   --radius-sm:     12px;
   --radius-xs:     8px;
   --radius-pill:   100px;
   --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
   --transition-f:  all 0.2s cubic-bezier(0.4,0,0.2,1);
   --font-main:     'DM Sans', sans-serif;
   --font-head:     'Plus Jakarta Sans', sans-serif;
}

/* =============================================
   ANIMATIONS — KEYFRAMES
============================================= */
@keyframes blobFloat {
   0%,100% { transform: translate(0,0) scale(1); border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
   25%      { transform: translate(30px,-20px) scale(1.04); border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; }
   50%      { transform: translate(-10px,30px) scale(0.97); border-radius: 50% 30% 50% 70%/30% 50% 70% 50%; }
   75%      { transform: translate(-30px,-10px) scale(1.03); border-radius: 40% 70% 30% 60%/60% 40% 60% 30%; }
}
@keyframes blobFloat2 {
   0%,100% { transform: translate(0,0) scale(1); border-radius: 40% 60% 50% 50%/50% 40% 60% 50%; }
   33%      { transform: translate(-25px,20px) scale(1.06); border-radius: 60% 40% 60% 40%/40% 60% 40% 60%; }
   66%      { transform: translate(20px,-15px) scale(0.96); border-radius: 50% 50% 40% 60%/60% 50% 50% 40%; }
}
@keyframes float {
   0%,100% { transform: translateY(0) rotate(0deg); }
   50%      { transform: translateY(-14px) rotate(1.5deg); }
}
@keyframes floatAlt {
   0%,100% { transform: translateY(0) rotate(0deg); }
   50%      { transform: translateY(12px) rotate(-1deg); }
}
@keyframes pulse {
   0%,100% { transform: scale(1); opacity: 1; }
   50%      { transform: scale(1.5); opacity: 0.4; }
}
@keyframes blink { 50% { border-color: transparent; } }
@keyframes scrollDown {
   0%   { top: 6px; opacity: 1; }
   100% { top: 26px; opacity: 0; }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes shimmer {
   0%   { left: -100%; }
   100% { left: 200%; }
}
@keyframes gradShift {
   0%,100% { background-position: 0% 50%; }
   50%      { background-position: 100% 50%; }
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes glowPulse {
   0%,100% { box-shadow: 0 0 0 0 rgba(255,77,0,0.35); }
   50%      { box-shadow: 0 0 0 14px rgba(255,77,0,0); }
}
@keyframes glowTeal {
   0%,100% { box-shadow: 0 0 0 0 rgba(0,196,180,0.35); }
   50%      { box-shadow: 0 0 0 14px rgba(0,196,180,0); }
}
@keyframes slideUp {
   from { transform: translateY(30px); opacity: 0; }
   to   { transform: translateY(0);    opacity: 1; }
}
@keyframes popIn {
   from { transform: scale(0.8); opacity: 0; }
   to   { transform: scale(1);   opacity: 1; }
}
@keyframes borderDance {
   0%   { border-radius: 20px; }
   50%  { border-radius: 30px 12px 26px 16px; }
   100% { border-radius: 20px; }
}
@keyframes numberFly {
   from { transform: translateY(20px); opacity: 0; }
   to   { transform: translateY(0);    opacity: 1; }
}

/* =============================================
   BASE RESET
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
   font-family: var(--font-main);
   color: var(--txt-b);
   background: var(--bg);
   overflow-x: hidden;
   line-height: 1.68;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--txt-h); line-height: 1.18; letter-spacing: -0.4px; }
p { font-size: 16px; color: var(--txt-m); line-height: 1.72; }
ul { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; transition: var(--transition); color: inherit; }
img { width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--grad-orange); border-radius: 10px; }

/* =============================================
   UTILITY
============================================= */
.section-pad  { padding: 100px 0; }
.bg-soft      { background: var(--bg-soft); }
.bg-warm      { background: var(--bg-warm); }
.bg-teal-soft { background: var(--bg-teal); }
.bg-cream     { background: var(--bg-soft); }

/* Animated gradient text */
.text-gradient {
   background: linear-gradient(135deg, var(--orange) 0%, var(--purple) 50%, var(--teal) 100%);
   background-size: 200% 200%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: gradShift 5s ease infinite;
}
.text-gradient-warm {
   background: var(--grad-orange);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}
.text-gradient-cool {
   background: var(--grad-teal);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}
.text-gradient-light {
   background: linear-gradient(135deg, #fff 0%, var(--teal-2) 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}
.text-orange { color: var(--orange); }
.text-teal   { color: var(--teal); }
.text-green  { color: var(--green); }
.text-purple { color: var(--purple); }
.text-muted  { color: var(--txt-m); }

/* =============================================
   SECTION LABELS
============================================= */
.section-tag {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: linear-gradient(135deg, rgba(255,77,0,0.08), rgba(139,92,246,0.08));
   border: 1.5px solid rgba(255,77,0,0.18);
   color: var(--orange);
   font-size: 11.5px;
   font-weight: 800;
   letter-spacing: 2px;
   text-transform: uppercase;
   padding: 7px 18px;
   border-radius: var(--radius-pill);
}
.section-tag::before {
   content: '';
   width: 6px; height: 6px;
   background: var(--orange);
   border-radius: 50%;
   animation: pulse 2s ease infinite;
}
.section-title {
   font-size: clamp(30px, 4.2vw, 50px);
   font-weight: 800;
   color: var(--txt-h);
   margin-top: 16px;
   line-height: 1.14;
   letter-spacing: -1.2px;
}
.section-sub {
   font-size: 17px;
   color: var(--txt-m);
   max-width: 580px;
   margin: 18px auto 0;
   line-height: 1.75;
}
.section-head .section-sub { text-align: center; }

/* =============================================
   BUTTONS
============================================= */
.btn-primary-adaigo {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: var(--grad-orange);
   color: #fff !important;
   font-family: var(--font-head);
   font-weight: 700;
   font-size: 15px;
   padding: 14px 32px;
   border-radius: var(--radius-pill);
   border: none;
   cursor: pointer;
   transition: var(--transition);
   box-shadow: var(--shadow-orange);
   white-space: nowrap;
   position: relative;
   overflow: hidden;
   letter-spacing: 0.1px;
}
.btn-primary-adaigo::before {
   content: '';
   position: absolute;
   top: 0; left: -100%; width: 60%; height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
   transform: skewX(-20deg);
   transition: none;
}
.btn-primary-adaigo:hover::before { animation: shimmer 0.6s ease forwards; }
.btn-primary-adaigo:hover {
   transform: translateY(-3px);
   box-shadow: 0 18px 44px rgba(255,77,0,0.42);
}
.btn-primary-adaigo:active { transform: translateY(0); }
.btn-lg-adaigo { padding: 17px 40px; font-size: 16px; }

.btn-outline-adaigo {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: transparent;
   color: var(--orange) !important;
   font-family: var(--font-head);
   font-weight: 700;
   font-size: 15px;
   padding: 13px 32px;
   border-radius: var(--radius-pill);
   border: 2px solid var(--orange);
   transition: var(--transition);
   white-space: nowrap;
   position: relative;
   overflow: hidden;
}
.btn-outline-adaigo::before {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--grad-orange);
   opacity: 0;
   transition: opacity 0.3s;
   border-radius: inherit;
}
.btn-outline-adaigo span, .btn-outline-adaigo i { position: relative; z-index: 1; }
.btn-outline-adaigo:hover { color: #fff !important; transform: translateY(-3px); box-shadow: var(--shadow-orange); }
.btn-outline-adaigo:hover::before { opacity: 1; }

.btn-white-adaigo {
   display: inline-flex;
   align-items: center;
   background: #fff;
   color: var(--orange) !important;
   font-family: var(--font-head);
   font-weight: 700;
   font-size: 15px;
   padding: 15px 36px;
   border-radius: var(--radius-pill);
   transition: var(--transition);
   box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}
.btn-white-adaigo:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

.btn-ghost-adaigo {
   display: inline-flex;
   align-items: center;
   background: rgba(255,255,255,0.12);
   color: #fff !important;
   font-family: var(--font-head);
   font-weight: 600;
   font-size: 15px;
   padding: 15px 36px;
   border-radius: var(--radius-pill);
   border: 1.5px solid rgba(255,255,255,0.28);
   backdrop-filter: blur(10px);
   transition: var(--transition);
}
.btn-ghost-adaigo:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-outline-light-adaigo {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: transparent;
   color: var(--txt-b) !important;
   font-family: var(--font-head);
   font-weight: 700;
   font-size: 15px;
   padding: 13px 32px;
   border-radius: var(--radius-pill);
   border: 2px solid var(--border);
   transition: var(--transition);
   white-space: nowrap;
}
.btn-outline-light-adaigo:hover {
   color: var(--orange) !important;
   border-color: var(--orange);
   transform: translateY(-3px);
   box-shadow: var(--shadow-orange);
}

/* =============================================
   HEADER
============================================= */
.adaigo-header {
   position: fixed;
   top: 0; left: 0;
   width: 100%; z-index: 1000;
   padding: 12px 0;
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.adaigo-header.scrolled {
   background: rgba(255,255,255,0.95);
   backdrop-filter: blur(28px);
   -webkit-backdrop-filter: blur(28px);
   box-shadow: 0 2px 30px rgba(0,0,0,0.07);
   padding: 4px 0;
}
.header-inner {
   max-width: 1360px;
   margin: 0 auto;
   padding: 0 32px;
   height: 72px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
}
.brand-logo {
   display: inline-flex;
   align-items: center;
   gap: 11px;
}
.logo-icon {
   width: 42px; height: 42px;
   background: var(--grad-orange);
   border-radius: 14px;
   display: flex; align-items: center; justify-content: center;
   color: #fff; font-size: 18px;
   box-shadow: var(--shadow-orange);
   flex-shrink: 0;
   transition: var(--transition);
}
.brand-logo:hover .logo-icon { transform: rotate(-8deg) scale(1.08); }
.logo-text {
   font-family: var(--font-head);
   font-size: 22px;
   font-weight: 800;
   color: var(--txt-h);
   letter-spacing: -1px;
}
.logo-accent { color: var(--orange); }

/* Nav */
.main-nav ul { display: flex; align-items: center; gap: 2px; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
   font-family: var(--font-main);
   font-size: 15px;
   font-weight: 500;
   color: var(--txt-b);
   padding: 8px 16px;
   border-radius: var(--radius-sm);
   display: flex; align-items: center; gap: 5px;
   transition: var(--transition-f);
}
.main-nav ul li a:hover { color: var(--orange); background: rgba(255,77,0,0.06); }
.main-nav ul li.active a {
   color: var(--orange);
   background: rgba(255,77,0,0.08);
   font-weight: 700;
}

/* Dropdown */
.dropdown-nav {
   position: absolute;
   top: calc(100% + 16px); left: 50%;
   transform: translateX(-50%) translateY(-8px);
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow-xl);
   min-width: 236px;
   padding: 10px;
   opacity: 0; visibility: hidden;
   transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
   border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown-nav {
   opacity: 1; visibility: visible;
   transform: translateX(-50%) translateY(0);
}
.dropdown-nav li a {
   display: flex !important;
   align-items: center; gap: 11px;
   padding: 11px 14px !important;
   border-radius: var(--radius-sm) !important;
   font-size: 14px !important;
   color: var(--txt-b) !important;
   font-weight: 500 !important;
}
.dropdown-nav li a i { color: var(--orange); width: 16px; font-size: 13px; }
.dropdown-nav li a:hover { background: rgba(255,77,0,0.06) !important; color: var(--orange) !important; }

.header-phone {
   font-size: 14px; font-weight: 600;
   color: var(--txt-b);
   display: flex; align-items: center; gap: 7px;
}
.header-phone i { color: var(--teal); }
.header-phone:hover { color: var(--orange); }

/* Mobile toggle */
.mobile-toggle {
   width: 42px; height: 42px;
   display: flex; flex-direction: column;
   align-items: center; justify-content: center; gap: 5px;
   background: var(--bg-soft);
   border-radius: var(--radius-sm);
}
.mobile-toggle span {
   width: 20px; height: 2px;
   background: var(--txt-h);
   border-radius: 2px;
   transition: var(--transition);
   display: block;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Drawer */
.mobile-overlay {
   position: fixed; inset: 0;
   background: rgba(8,12,20,0.6);
   backdrop-filter: blur(6px);
   z-index: 1100;
   opacity: 0; visibility: hidden;
   transition: var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer {
   position: fixed;
   top: 0; right: -340px;
   width: 320px; height: 100dvh;
   background: #fff;
   z-index: 1200;
   transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
   display: flex; flex-direction: column;
   padding: 28px;
   box-shadow: var(--shadow-xl);
   overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.drawer-close {
   width: 38px; height: 38px;
   border-radius: var(--radius-sm);
   background: var(--bg-soft);
   display: flex; align-items: center; justify-content: center;
   font-size: 18px; color: var(--txt-b);
   transition: var(--transition-f);
}
.drawer-close:hover { background: rgba(255,77,0,0.1); color: var(--orange); }
.drawer-nav ul { display: flex; flex-direction: column; gap: 3px; }
.drawer-nav ul li a {
   display: block;
   padding: 12px 16px;
   border-radius: var(--radius-sm);
   font-size: 15px; font-weight: 500;
   color: var(--txt-b);
   transition: var(--transition-f);
}
.drawer-nav ul li a:hover { background: rgba(255,77,0,0.07); color: var(--orange); padding-left: 22px; }
.drawer-footer { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--border); }
.drawer-social { display: flex; gap: 10px; margin-top: 20px; }
.drawer-social a {
   width: 40px; height: 40px;
   border-radius: var(--radius-sm);
   background: var(--bg-soft);
   display: flex; align-items: center; justify-content: center;
   color: var(--txt-b); font-size: 15px;
   transition: var(--transition-f);
}
.drawer-social a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
body.no-scroll { overflow: hidden; }

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
   min-height: 100vh;
   display: flex;
   align-items: center;
   padding: 110px 0 80px;
   position: relative;
   overflow: hidden;
   background: #fff;
}

/* Animated blobs */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
   position: absolute;
   border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
   filter: blur(50px);
   opacity: 0.14;
   will-change: transform, border-radius;
}
.blob-1 {
   width: 620px; height: 620px;
   background: var(--orange);
   top: -180px; right: -100px;
   animation: blobFloat 12s ease-in-out infinite;
}
.blob-2 {
   width: 500px; height: 500px;
   background: var(--teal);
   bottom: -140px; left: -120px;
   animation: blobFloat2 14s ease-in-out infinite;
   opacity: 0.12;
}
.blob-3 {
   width: 350px; height: 350px;
   background: var(--purple);
   top: 35%; left: 40%;
   animation: blobFloat 10s ease-in-out infinite 2s;
   opacity: 0.09;
}

/* Subtle dot grid */
.hero-section::before {
   content: '';
   position: absolute; inset: 0;
   background-image: radial-gradient(rgba(0,0,0,0.06) 1.2px, transparent 1.2px);
   background-size: 28px 28px;
   pointer-events: none;
   opacity: 0.5;
}

.min-vh-screen { min-height: calc(100vh - 80px); }

/* Hero Badge */
.hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: linear-gradient(135deg, rgba(255,77,0,0.08), rgba(139,92,246,0.08));
   border: 1.5px solid rgba(255,77,0,0.2);
   color: var(--orange);
   font-size: 13px;
   font-weight: 700;
   padding: 8px 20px 8px 10px;
   border-radius: var(--radius-pill);
   letter-spacing: 0.2px;
}
.badge-dot {
   width: 28px; height: 28px;
   background: rgba(255,77,0,0.1);
   border-radius: 50%;
   display: flex; align-items: center; justify-content: center;
   position: relative;
}
.badge-dot::before {
   content: '';
   width: 8px; height: 8px;
   background: var(--orange);
   border-radius: 50%;
   position: absolute;
   animation: pulse 2s ease infinite;
}
.badge-dot::after {
   content: '';
   width: 18px; height: 18px;
   border: 1.5px solid rgba(255,77,0,0.3);
   border-radius: 50%;
   position: absolute;
   animation: glowPulse 2s ease infinite;
}

/* Hero Title */
.hero-title {
   font-size: clamp(42px, 6.5vw, 80px);
   font-weight: 800;
   color: var(--txt-h);
   line-height: 1.06;
   letter-spacing: -2.5px;
}
.hero-typed {
   color: var(--orange);
   border-right: 3px solid var(--orange);
   animation: blink 0.9s step-end infinite;
   min-height: 1.06em;
   display: inline-block;
}

.hero-desc {
   font-size: 18px;
   color: var(--txt-b);
   max-width: 500px;
   line-height: 1.78;
}

/* Hero Stats */
.hero-stats {
   padding-top: 28px;
   border-top: 1px solid var(--border);
}
.h-stat { text-align: center; }
.h-stat-num {
   font-family: var(--font-head);
   font-size: 42px;
   font-weight: 800;
   color: var(--txt-h);
   letter-spacing: -1.5px;
   line-height: 1;
}
.h-stat-suffix { font-size: 28px; font-weight: 800; color: var(--orange); }
.h-stat p { font-size: 13px; color: var(--txt-m); margin-top: 5px; font-weight: 500; }
.h-stat-divider { width: 1px; height: 50px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; height: 560px; }

/* Central rotating ring */
.hero-circle-bg {
   position: absolute;
   top: 50%; left: 50%;
   transform: translate(-50%,-50%);
   width: 420px; height: 420px;
   border-radius: 50%;
   border: 1.5px dashed rgba(255,77,0,0.15);
   animation: spin 25s linear infinite;
}
.hero-circle-bg-2 {
   position: absolute;
   top: 50%; left: 50%;
   transform: translate(-50%,-50%);
   width: 290px; height: 290px;
   border-radius: 50%;
   border: 1px dashed rgba(139,92,246,0.15);
   animation: spin 18s linear infinite reverse;
}

/* Central grid mockup */
.hero-img-wrap {
   position: absolute;
   top: 50%; left: 50%;
   transform: translate(-50%,-50%);
}
.hero-img-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
width: 600px; height: 600px;
}
.hero-img-grid .hi-item img{
   width: auto;
   object-fit: contain;
}
.hi-item {
   border-radius: 22px;
   overflow: hidden;
   position: relative;
}
.hi-1 {
   background: var(--grad-orange);
   grid-row: span 2;
   animation: borderDance 8s ease-in-out infinite;
}
.hi-2 {
   background: var(--grad-teal);
   animation: borderDance 8s ease-in-out infinite 2s;
}
.hi-3 {
   background: var(--grad-purple);
   animation: borderDance 8s ease-in-out infinite 4s;
}
.hi-item::after {
   content: '';
   position: absolute; inset: 0;
   background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.08'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

/* Brand badge bar */
.hero-brand-badges {
   position: absolute;
   bottom: -28px; left: 50%;
   transform: translateX(-50%);
   display: flex; gap: 10px;
   background: rgba(255,255,255,0.9);
   backdrop-filter: blur(20px);
   padding: 14px 24px;
   border-radius: var(--radius-pill);
   box-shadow: var(--shadow-lg);
   border: 1px solid var(--border);
}
.hero-brand-badges span {
   width: 40px; height: 40px;
   display: flex; align-items: center; justify-content: center;
   background: var(--bg-soft);
   border-radius: 50%;
   font-size: 18px;
   color: var(--txt-m);
   transition: var(--transition-f);
}
.hero-brand-badges span:hover {
   background: var(--orange);
   color: #fff;
   transform: translateY(-4px);
   box-shadow: var(--shadow-orange);
}

/* Floating cards */
.hero-card {
   position: absolute;
   background: rgba(255,255,255,0.88);
   backdrop-filter: blur(24px);
   -webkit-backdrop-filter: blur(24px);
   border-radius: var(--radius);
   padding: 16px 22px;
   display: flex;
   align-items: center;
   gap: 14px;
   box-shadow: var(--shadow-xl);
   min-width: 195px;
   border: 1px solid rgba(255,255,255,0.9);
}
.hero-card-1 { top: 4%; left: -8%; animation: float 5s ease-in-out infinite; }
.hero-card-2 { top: 24%; right: -10%; animation: floatAlt 5.5s ease-in-out infinite; }
.hero-card-3 { bottom: 24%; left: -8%; animation: float 4.5s ease-in-out infinite 1s; }

.hc-icon {
   width: 46px; height: 46px;
   background: rgba(255,77,0,0.1);
   color: var(--orange);
   border-radius: var(--radius-sm);
   display: flex; align-items: center; justify-content: center;
   font-size: 20px; flex-shrink: 0;
}
.hc-icon.teal   { background: rgba(0,196,180,0.1); color: var(--teal); }
.hc-icon.orange { background: rgba(255,77,0,0.1);  color: var(--orange); }
.hc-label { font-size: 11px; color: var(--txt-m); margin-bottom: 2px; font-weight: 600; letter-spacing: 0.3px; }
.hc-val   { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--txt-h); }
.hc-val span { font-size: 12px; font-weight: 500; }
.hc-val.text-green { color: var(--green); }

/* Chart mini bar */
.hc-chart {
   display: flex; align-items: flex-end; gap: 3px;
   height: 28px; margin-top: 4px;
}
.hc-bar {
   width: 6px;
   border-radius: 3px;
   background: rgba(0,196,180,0.2);
   transition: var(--transition);
}
.hc-bar.active { background: var(--teal); }

.hero-scroll-hint {
   position: absolute;
   bottom: 34px; left: 50%;
   transform: translateX(-50%);
}
.hero-scroll-hint span {
   display: block;
   width: 26px; height: 44px;
   border: 2px solid rgba(255,77,0,0.25);
   border-radius: 14px;
   position: relative;
}
.hero-scroll-hint span::after {
   content: '';
   display: block;
   width: 5px; height: 5px;
   background: var(--orange);
   border-radius: 50%;
   position: absolute;
   left: 50%; top: 7px;
   transform: translateX(-50%);
   animation: scrollDown 1.8s infinite;
}

/* =============================================
   MARQUEE
============================================= */
.marquee-strip {
   background: var(--grad-orange);
   padding: 14px 0;
   overflow: hidden;
   white-space: nowrap;
}
.marquee-track {
   display: inline-flex;
   gap: 28px;
   animation: marquee 35s linear infinite;
}
.marquee-track span {
   color: rgba(255,255,255,0.9);
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.5px;
}
.marquee-track .dot { color: rgba(255,255,255,0.4); }

/* =============================================
   SERVICES SECTION
============================================= */
.service-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 36px 30px;
   height: 100%;
   border: 1.5px solid var(--border);
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
   position: relative;
   overflow: hidden;
   cursor: default;
}
.service-card::after {
   content: '';
   position: absolute;
   bottom: 0; left: 0; right: 0;
   height: 0;
   background: linear-gradient(135deg, rgba(255,77,0,0.04), rgba(139,92,246,0.04));
   transition: height 0.4s ease;
}
.service-card:hover::after { height: 100%; }
.service-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-lg);
   border-color: rgba(255,77,0,0.15);
}

/* Accent bar top */
.service-card::before {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 4px;
   background: var(--grad-orange);
   border-radius: var(--radius) var(--radius) 0 0;
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--bg-soft); border-color: rgba(255,77,0,0.1); }
.service-card.featured::before { background: linear-gradient(90deg, var(--teal), var(--purple)); }
.service-card.featured .sc-title { color: var(--txt-h); }
.service-card.featured .sc-desc  { color: var(--txt-m); }

.sc-icon-wrap { margin-bottom: 22px; position: relative; z-index: 1; }
.sc-icon {
   width: 60px; height: 60px;
   background: rgba(255,77,0,0.09);
   color: var(--orange);
   border-radius: var(--radius);
   display: flex; align-items: center; justify-content: center;
   font-size: 24px;
   transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.sc-icon.teal   { background: rgba(0,196,180,0.1); color: var(--teal); }
.sc-icon.purple { background: rgba(139,92,246,0.1); color: var(--purple); }
.service-card:hover .sc-icon {
   background: var(--grad-orange);
   color: #fff;
   transform: scale(1.1) rotate(-6deg);
   box-shadow: var(--shadow-orange);
}
.service-card.featured:hover .sc-icon.teal {
   background: var(--grad-teal);
   color: #fff;
   box-shadow: var(--shadow-teal);
   transform: scale(1.1) rotate(6deg);
}
.sc-num {
   position: absolute;
   top: -10px; right: 0;
   font-family: var(--font-head);
   font-size: 72px;
   font-weight: 800;
   color: rgba(0,0,0,0.04);
   line-height: 1;
   letter-spacing: -3px;
   pointer-events: none;
}
.sc-title { font-size: 20px; font-weight: 800; color: var(--txt-h); margin-bottom: 12px; position: relative; z-index: 1; }
.sc-desc  { font-size: 15px; color: var(--txt-m); line-height: 1.7; margin-bottom: 22px; position: relative; z-index: 1; }
.sc-features {
   display: flex; flex-direction: column;
   gap: 0; margin-bottom: 28px; position: relative; z-index: 1;
}
.sc-features li {
   display: flex; align-items: center; gap: 10px;
   font-size: 14px; font-weight: 500; color: var(--txt-b);
   padding: 9px 0;
   border-bottom: 1px solid var(--border);
}
.sc-features li:last-child { border-bottom: none; }
.sc-features li i { color: var(--orange); font-size: 11px; flex-shrink: 0; }
.sc-link {
   display: inline-flex; align-items: center; gap: 8px;
   color: var(--orange); font-size: 14px; font-weight: 700;
   position: relative; z-index: 1;
   transition: var(--transition-f);
}
.sc-link:hover { gap: 14px; }

/* =============================================
   WHY US
============================================= */
.why-visual { position: relative; height: 540px; }
.why-img-main {
   position: absolute; top: 0; right: 0;
   width: 72%; height: 78%;
   border-radius: 28px;
   background: var(--grad-orange);
   overflow: hidden;
}
.why-img-main::after {
   content: '';
   position: absolute; inset: 0;
   background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.why-img-sm {
   position: absolute;
   border-radius: 22px;
   background: var(--grad-teal);
}
.why-img-sm-1 { bottom: 0; left: 0; width: 56%; height: 44%; }
.why-img-sm-2 {
   bottom: 40%; right: -12px;
   width: 30%; height: 24%;
   background: var(--grad-purple);
}
.why-badge-float {
   position: absolute; top: 24px; left: 0;
   background: #fff;
   border-radius: var(--radius);
   padding: 16px 20px;
   display: flex; align-items: center; gap: 14px;
   box-shadow: var(--shadow-lg);
   z-index: 10;
   border: 1px solid var(--border);
   animation: float 5s ease-in-out infinite;
}
.why-badge-float i { font-size: 26px; color: var(--orange); }
.why-badge-float strong { display: block; font-size: 14px; font-weight: 800; color: var(--txt-h); }
.why-badge-float span { font-size: 12px; color: var(--txt-m); }
.why-exp-badge {
   position: absolute; bottom: 10px; right: -6px;
   background: var(--grad-purple);
   color: #fff;
   border-radius: var(--radius);
   padding: 22px 28px;
   text-align: center; z-index: 10;
   box-shadow: var(--shadow-purple);
   animation: floatAlt 5s ease-in-out infinite;
}
.exp-num   { display: block; font-size: 48px; font-weight: 800; line-height: 1; letter-spacing: -2px; }
.exp-label { font-size: 13px; opacity: 0.88; font-weight: 600; }

.why-features { display: flex; flex-direction: column; gap: 12px; }
.wf-item {
   display: flex; align-items: flex-start; gap: 18px;
   padding: 20px 24px;
   border-radius: var(--radius);
   background: #fff;
   border: 1.5px solid var(--border);
   transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
   position: relative;
   overflow: hidden;
}
.wf-item::before {
   content: '';
   position: absolute;
   left: 0; top: 0; bottom: 0;
   width: 0;
   background: var(--grad-orange);
   border-radius: var(--radius) 0 0 var(--radius);
   transition: width 0.3s ease;
}
.wf-item:hover::before { width: 4px; }
.wf-item:hover {
   border-color: rgba(255,77,0,0.18);
   box-shadow: var(--shadow-md);
   transform: translateX(6px);
}
.wf-icon {
   width: 50px; height: 50px;
   background: rgba(255,77,0,0.1);
   color: var(--orange);
   border-radius: var(--radius-sm);
   display: flex; align-items: center; justify-content: center;
   font-size: 20px; flex-shrink: 0;
   transition: var(--transition);
}
.wf-icon.teal   { background: rgba(0,196,180,0.1); color: var(--teal); }
.wf-icon.purple { background: rgba(139,92,246,0.1); color: var(--purple); }
.wf-item:hover .wf-icon { transform: scale(1.1) rotate(-5deg); }
.wf-content h4 { font-size: 16px; font-weight: 800; color: var(--txt-h); margin-bottom: 5px; }
.wf-content p  { font-size: 14px; margin: 0; line-height: 1.65; }

/* =============================================
   PROCESS
============================================= */
.process-grid {
   display: grid;
   grid-template-columns: repeat(4,1fr);
   gap: 24px;
   position: relative;
}
/* connecting line */
.process-grid::before {
   content: '';
   position: absolute;
   top: 60px; left: 12%;
   width: 76%; height: 2px;
   background: linear-gradient(90deg, var(--orange), var(--purple), var(--teal));
   z-index: 0;
   border-radius: 2px;
}
.process-step {
   background: #fff;
   border-radius: var(--radius);
   padding: 36px 26px;
   border: 1.5px solid var(--border);
   position: relative;
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
   text-align: center;
   overflow: hidden;
   z-index: 1;
}
.process-step:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-lg);
   border-color: rgba(255,77,0,0.15);
}
.ps-num {
   font-family: var(--font-head);
   font-size: 72px; font-weight: 800;
   color: rgba(0,0,0,0.04);
   line-height: 1;
   position: absolute;
   top: 10px; right: 14px;
   letter-spacing: -3px;
}
.ps-icon {
   width: 66px; height: 66px;
   background: rgba(255,77,0,0.08);
   color: var(--orange);
   border-radius: var(--radius);
   display: flex; align-items: center; justify-content: center;
   font-size: 26px;
   margin: 0 auto 22px;
   transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
   position: relative;
}
.ps-icon::after {
   content: '';
   position: absolute;
   inset: -4px;
   border-radius: calc(var(--radius) + 4px);
   border: 2px dashed rgba(255,77,0,0.2);
   animation: spin 8s linear infinite;
}
.ps-icon.teal   { background: rgba(0,196,180,0.08); color: var(--teal); }
.ps-icon.teal::after { border-color: rgba(0,196,180,0.2); }
.ps-icon.purple { background: rgba(139,92,246,0.08); color: var(--purple); }
.ps-icon.purple::after { border-color: rgba(139,92,246,0.2); }
.process-step:hover .ps-icon {
   background: var(--grad-orange);
   color: #fff;
   transform: scale(1.08) rotate(-5deg);
   box-shadow: var(--shadow-orange);
}
.process-step:hover .ps-icon.teal   { background: var(--grad-teal);   box-shadow: var(--shadow-teal); }
.process-step:hover .ps-icon.purple { background: var(--grad-purple); box-shadow: var(--shadow-purple); }
.process-step h4 { font-size: 18px; font-weight: 800; color: var(--txt-h); margin-bottom: 10px; }
.process-step p  { font-size: 14px; line-height: 1.68; }
.ps-connector { display: none; }

/* =============================================
   STATS — LIGHT THEME
============================================= */
.stats-section {
   padding: 90px 0;
   background: var(--bg-soft);
   position: relative;
   overflow: hidden;
}
.stats-section::before {
   content: '';
   position: absolute; inset: 0;
   background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,77,0,0.05) 0%, transparent 65%);
   pointer-events: none;
}
.stats-bg-overlay { display: none; }
.stat-item { position: relative; z-index: 1; text-align: center; }
.stat-icon {
   width: 62px; height: 62px;
   border-radius: var(--radius);
   display: flex; align-items: center; justify-content: center;
   font-size: 24px;
   margin: 0 auto 18px;
   transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.stat-icon:nth-child(1) { background: rgba(255,77,0,0.1); color: var(--orange); }
.col-6:nth-child(1) .stat-icon { background: rgba(255,77,0,0.1); color: var(--orange); }
.col-6:nth-child(2) .stat-icon { background: rgba(0,196,180,0.1); color: var(--teal); }
.col-6:nth-child(3) .stat-icon { background: rgba(139,92,246,0.1); color: var(--purple); }
.col-6:nth-child(4) .stat-icon { background: rgba(16,185,129,0.1); color: var(--green); }
.col-lg-3:nth-child(1) .stat-icon { background: rgba(255,77,0,0.1); color: var(--orange); }
.col-lg-3:nth-child(2) .stat-icon { background: rgba(0,196,180,0.1); color: var(--teal); }
.col-lg-3:nth-child(3) .stat-icon { background: rgba(139,92,246,0.1); color: var(--purple); }
.col-lg-3:nth-child(4) .stat-icon { background: rgba(16,185,129,0.1); color: var(--green); }
.stat-item:hover .stat-icon { transform: scale(1.12) rotate(-5deg); }
.stat-num {
   font-family: var(--font-head);
   font-size: 56px; font-weight: 800;
   color: var(--txt-h);
   line-height: 1;
   margin-bottom: 10px;
   letter-spacing: -2px;
}
.stat-num span:last-child { color: var(--orange); }
.stat-item p { font-size: 15px; color: var(--txt-m); margin: 0; font-weight: 500; }

/* =============================================
   PORTFOLIO / WORK
============================================= */
.work-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.wf-btn {
   padding: 10px 24px;
   border-radius: var(--radius-pill);
   font-size: 14px; font-weight: 700;
   color: var(--txt-b);
   background: #fff;
   border: 1.5px solid var(--border);
   cursor: pointer;
   transition: var(--transition-f);
   font-family: var(--font-main);
}
.wf-btn:hover, .wf-btn.active {
   background: var(--grad-orange);
   color: #fff;
   border-color: transparent;
   box-shadow: var(--shadow-orange);
   transform: translateY(-2px);
}
.work-card {
   background: #fff;
   border-radius: var(--radius);
   overflow: hidden;
   border: 1.5px solid var(--border);
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.work-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.wc-img { height: 230px; position: relative; overflow: hidden; }
.seo-bg     { background: linear-gradient(135deg, #667EEA, #764BA2); }
.social-bg  { background: linear-gradient(135deg, #F093FB, #F5576C); }
.ppc-bg     { background: linear-gradient(135deg, #4FACFE, #00F2FE); }
.web-bg     { background: linear-gradient(135deg, #43E97B, #38F9D7); }
.seo2-bg    { background: linear-gradient(135deg, #FA709A, #FEE140); }
.social2-bg { background: linear-gradient(135deg, #A18CD1, #FBC2EB); }
.brand-bg   { background: linear-gradient(135deg, #F7971E, #FFD200); }
.email-bg   { background: linear-gradient(135deg, #11998E, #38EF7D); }
.analytics-bg { background: linear-gradient(135deg, #1A1A2E, #16213E); }
.wc-img::before {
   content: '';
   position: absolute; inset: 0;
   background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.06'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.wc-overlay {
   position: absolute; inset: 0;
   background: linear-gradient(135deg, rgba(255,77,0,0.85), rgba(139,92,246,0.85));
   display: flex; align-items: center; justify-content: center;
   opacity: 0; transition: var(--transition);
}
.work-card:hover .wc-overlay { opacity: 1; }
.wc-view-btn {
   color: #fff;
   font-size: 14px; font-weight: 700;
   background: rgba(255,255,255,0.2);
   backdrop-filter: blur(10px);
   padding: 12px 24px;
   border-radius: var(--radius-pill);
   display: flex; align-items: center; gap: 8px;
   border: 1.5px solid rgba(255,255,255,0.4);
   transform: translateY(14px);
   transition: var(--transition);
}
.work-card:hover .wc-view-btn { transform: translateY(0); }
.wc-category {
   position: absolute; top: 14px; left: 14px;
   background: #fff;
   color: var(--txt-h);
   font-size: 11px; font-weight: 800;
   padding: 5px 14px; border-radius: var(--radius-pill);
   letter-spacing: 0.5px;
}
.wc-body { padding: 26px; }
.wc-body h4 { font-size: 17px; font-weight: 800; color: var(--txt-h); margin-bottom: 8px; letter-spacing: -0.3px; }
.wc-body p  { font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.wc-results { display: flex; flex-wrap: wrap; gap: 8px; }
.wc-results span {
   font-size: 12px; font-weight: 700;
   color: var(--orange);
   background: rgba(255,77,0,0.08);
   padding: 5px 13px;
   border-radius: var(--radius-pill);
   display: flex; align-items: center; gap: 6px;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section { background: var(--bg); }
.testimonial-slider .slick-slide { padding: 16px 12px; }
.testi-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 36px 30px;
   border: 1.5px solid var(--border);
   position: relative;
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
   height: 100%;
   overflow: hidden;
}
.testi-card::before {
   content: '';
   position: absolute;
   bottom: 0; left: 0; right: 0;
   height: 3px;
   background: var(--grad-orange);
   transform: scaleX(0);
   transition: transform 0.4s ease;
   transform-origin: left;
}
.testi-card:hover::before { transform: scaleX(1); }
.testi-card:hover {
   box-shadow: var(--shadow-lg);
   border-color: rgba(255,77,0,0.12);
   transform: translateY(-6px);
}
.testi-stars { color: var(--yellow); font-size: 14px; margin-bottom: 18px; display: flex; gap: 4px; }
.testi-text {
   font-size: 15px; line-height: 1.82;
   color: var(--txt-b);
   margin-bottom: 26px;
   font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.ta-avatar {
   width: 50px; height: 50px;
   border-radius: 50%;
   background: var(--grad-orange);
   color: #fff;
   font-family: var(--font-head);
   font-weight: 800;
   font-size: 16px;
   display: flex; align-items: center; justify-content: center;
   flex-shrink: 0;
   box-shadow: var(--shadow-orange);
}
.ta-avatar.teal   { background: var(--grad-teal);   box-shadow: var(--shadow-teal); }
.ta-avatar.purple { background: var(--grad-purple); box-shadow: var(--shadow-purple); }
.testi-author strong { display: block; font-size: 15px; color: var(--txt-h); font-weight: 700; }
.testi-author span   { font-size: 13px; color: var(--txt-m); }
.testi-quote {
   position: absolute;
   bottom: 20px; right: 26px;
   font-size: 64px;
   line-height: 1;
   background: var(--grad-orange);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   opacity: 0.08;
}
.testimonial-slider .slick-dots { bottom: -40px; }
.testimonial-slider .slick-dots li button:before { font-size: 10px; color: var(--border); }
.testimonial-slider .slick-dots li.slick-active button:before { color: var(--orange); }

/* =============================================
   CTA SECTION — GRADIENT
============================================= */
.cta-section {
   background: linear-gradient(135deg, #FF4D00 0%, #E03000 30%, #7C1BCC 65%, #00C4B4 100%);
   background-size: 300% 300%;
   animation: gradShift 8s ease infinite;
   padding: 100px 0;
   position: relative;
   overflow: hidden;
   text-align: center;
}
.cta-section::before {
   content: '';
   position: absolute; inset: 0;
   background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M40 80c22.09 0 40-17.91 40-40S62.09 0 40 0 0 17.91 0 40s17.91 40 40 40zm0-10c-16.57 0-30-13.43-30-30S23.43 10 40 10s30 13.43 30 30-13.43 30-30 30z'/%3E%3C/g%3E%3C/svg%3E");
   pointer-events: none;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 {
   position: absolute;
   width: 500px; height: 500px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
   top: -250px; right: -100px;
}
.cta-shape-2 {
   position: absolute;
   width: 400px; height: 400px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
   bottom: -200px; left: -100px;
}
.cta-inner { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; }
.cta-badge {
   display: inline-flex;
   align-items: center; gap: 8px;
   background: rgba(255,255,255,0.18);
   color: #fff;
   border: 1.5px solid rgba(255,255,255,0.3);
   padding: 8px 20px;
   border-radius: var(--radius-pill);
   font-size: 13px; font-weight: 700;
   backdrop-filter: blur(10px);
}
.cta-inner h2 {
   font-size: clamp(28px, 4.5vw, 52px);
   font-weight: 800;
   color: #fff;
   line-height: 1.12;
   margin-top: 20px;
   letter-spacing: -1.5px;
}
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-top: 16px; line-height: 1.75; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; gap: 7px; font-weight: 500; }
.cta-note i { color: rgba(255,255,255,0.8); }

/* =============================================
   CONTACT (Homepage)
============================================= */
.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.ci-item {
   display: flex; align-items: flex-start; gap: 18px;
   padding: 18px 20px;
   background: #fff;
   border-radius: var(--radius);
   border: 1.5px solid var(--border);
   transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.ci-item:hover {
   border-color: rgba(255,77,0,0.18);
   box-shadow: var(--shadow-md);
   transform: translateX(6px);
}
.ci-icon {
   width: 46px; height: 46px;
   background: rgba(255,77,0,0.1);
   color: var(--orange);
   border-radius: var(--radius-sm);
   display: flex; align-items: center; justify-content: center;
   font-size: 19px; flex-shrink: 0;
   transition: var(--transition);
}
.ci-icon.teal   { background: rgba(0,196,180,0.1); color: var(--teal); }
.ci-icon.purple { background: rgba(139,92,246,0.1); color: var(--purple); }
.ci-item:hover .ci-icon { transform: scale(1.1) rotate(-5deg); }
.ci-item strong { display: block; font-size: 12px; font-weight: 800; color: var(--txt-h); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.ci-item p   { font-size: 14px; margin: 0; line-height: 1.5; }
.ci-item a   { color: var(--txt-m); }
.ci-item a:hover { color: var(--orange); }

.contact-form-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 46px;
   box-shadow: var(--shadow-xl);
   border: 1.5px solid var(--border);
}
.contact-form-card h3 { font-size: 26px; font-weight: 800; color: var(--txt-h); margin-bottom: 8px; letter-spacing: -0.5px; }

.adaigo-form .form-group-adaigo { display: flex; flex-direction: column; gap: 7px; }
.adaigo-form label { font-size: 13px; font-weight: 700; color: var(--txt-b); letter-spacing: 0.2px; }
.adaigo-form input,
.adaigo-form select,
.adaigo-form textarea {
   width: 100%;
   padding: 13px 18px;
   border: 1.5px solid rgba(0,0,0,0.1);
   border-radius: var(--radius-sm);
   font-family: var(--font-main);
   font-size: 15px;
   color: var(--txt-h);
   background: var(--bg-soft);
   transition: var(--transition-f);
   outline: none;
   appearance: none;
   -webkit-appearance: none;
}
.adaigo-form input:focus,
.adaigo-form select:focus,
.adaigo-form textarea:focus {
   border-color: var(--orange);
   background: #fff;
   box-shadow: 0 0 0 4px rgba(255,77,0,0.09);
}
.adaigo-form textarea { resize: vertical; min-height: 120px; }

/* =============================================
   CLIENTS
============================================= */
.clients-slider .slick-slide { padding: 0 12px; }
.cl-inner {
   background: #fff;
   border: 1.5px solid var(--border);
   border-radius: var(--radius);
   padding: 24px;
   display: flex; flex-direction: column;
   align-items: center; justify-content: center;
   gap: 10px;
   text-align: center;
   transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
   height: 115px;
}
.cl-inner:hover {
   border-color: rgba(255,77,0,0.2);
   box-shadow: var(--shadow-md);
   transform: translateY(-5px);
}
.cl-inner i    { font-size: 34px; color: rgba(0,0,0,0.12); transition: var(--transition); }
.cl-inner:hover i { color: var(--orange); }
.cl-inner span { font-size: 11px; font-weight: 700; color: var(--txt-light); letter-spacing: 0.5px; }

/* =============================================
   FOOTER
============================================= */
.adaigo-footer { background: var(--bg-dark); color: #fff; }
.footer-top { padding: 80px 0 60px; }
.footer-desc { font-size: 15px; color: rgba(255,255,255,0.48); line-height: 1.78; max-width: 290px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
   width: 40px; height: 40px;
   border-radius: var(--radius-sm);
   background: rgba(255,255,255,0.07);
   color: rgba(255,255,255,0.55);
   display: flex; align-items: center; justify-content: center;
   font-size: 15px;
   transition: var(--transition-f);
   border: 1px solid rgba(255,255,255,0.07);
}
.footer-social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow-orange); }

.footer-title { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 20px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,0.48); transition: var(--transition-f); display: flex; align-items: center; gap: 6px; }
.footer-links li a:hover { color: var(--orange); padding-left: 5px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.fc-icon {
   width: 36px; height: 36px;
   background: rgba(255,77,0,0.12);
   color: var(--orange);
   border-radius: var(--radius-xs);
   display: flex; align-items: center; justify-content: center;
   font-size: 14px; flex-shrink: 0;
}
.footer-contact-list span:last-child { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.65; }
.footer-contact-list a { color: rgba(255,255,255,0.52); }
.footer-contact-list a:hover { color: var(--orange); }
.text-muted-light { color: rgba(255,255,255,0.45); }

.newsletter-form {
   display: flex;
   background: rgba(255,255,255,0.07);
   border-radius: var(--radius-sm);
   overflow: hidden;
   border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-form input {
   flex: 1; padding: 12px 16px;
   background: transparent; border: none; outline: none;
   color: #fff; font-size: 14px; font-family: var(--font-main);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.32); }
.newsletter-form button {
   width: 50px;
   background: var(--orange);
   color: #fff; font-size: 16px;
   display: flex; align-items: center; justify-content: center;
   transition: var(--transition-f);
}
.newsletter-form button:hover { background: var(--orange-2); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-credit { color: rgba(255,255,255,0.35) !important; }
.footer-credit .text-orange { color: var(--orange) !important; }

/* =============================================
   PAGE HERO — LIGHT
============================================= */
.page-hero {
   padding: 150px 0 88px;
   background: #fff;
   position: relative;
   overflow: hidden;
   text-align: center;
}
.page-hero::before {
   content: '';
   position: absolute; inset: 0;
   background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,77,0,0.09) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 0% 100%, rgba(0,196,180,0.07) 0%, transparent 50%),
      radial-gradient(ellipse 50% 50% at 100% 100%, rgba(139,92,246,0.07) 0%, transparent 50%);
   pointer-events: none;
}
/* Dot grid on page hero */
.page-hero-grid {
   position: absolute; inset: 0;
   background-image: radial-gradient(rgba(0,0,0,0.06) 1.2px, transparent 1.2px);
   background-size: 26px 26px;
   pointer-events: none;
   opacity: 0.5;
}
/* Page hero blobs */
.page-hero::after {
   content: '';
   position: absolute;
   width: 500px; height: 500px;
   background: rgba(255,77,0,0.07);
   border-radius: 50%;
   top: -200px; right: -150px;
   filter: blur(60px);
   pointer-events: none;
   animation: blobFloat 14s ease-in-out infinite;
}
.page-hero .section-tag {
   background: rgba(255,77,0,0.08);
   border-color: rgba(255,77,0,0.18);
}
.page-hero .section-title { color: var(--txt-h); }
.page-hero .section-sub { color: var(--txt-m); }

.page-hero-breadcrumb {
   display: flex; align-items: center; justify-content: center;
   gap: 8px;
   font-size: 13px;
   color: var(--txt-light);
   margin-bottom: 24px;
   font-weight: 500;
}
.page-hero-breadcrumb a { color: var(--txt-light); }
.page-hero-breadcrumb a:hover { color: var(--orange); }
.page-hero-breadcrumb i { font-size: 10px; }
.page-hero-breadcrumb span { color: var(--orange); font-weight: 700; }

/* =============================================
   ABOUT PAGE
============================================= */
.about-story-section .story-img-wrap {
   position: relative;
   border-radius: var(--radius);
   overflow: hidden;
   height: 500px;
   box-shadow: var(--shadow-xl);
}
.about-story-section .story-img-bg {
   position: absolute; inset: 0;
   background: var(--grad-orange);
}
.about-story-section .story-img-bg::after {
   content: '';
   position: absolute; inset: 0;
   background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.story-img-overlay-card {
   position: absolute;
   bottom: 32px; right: 32px;
   background: rgba(255,255,255,0.95);
   backdrop-filter: blur(20px);
   border-radius: var(--radius);
   padding: 20px 26px;
   box-shadow: var(--shadow-lg);
}
.story-img-overlay-card .soc-num { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--txt-h); letter-spacing: -1px; }
.story-img-overlay-card .soc-label { font-size: 13px; color: var(--txt-m); font-weight: 500; }

.highlight-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.highlight-item {
   display: flex; align-items: flex-start; gap: 14px;
   padding: 16px 18px;
   background: #fff;
   border-radius: var(--radius-sm);
   border: 1.5px solid var(--border);
   transition: var(--transition);
}
.highlight-item:hover { border-color: rgba(255,77,0,0.2); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.hi-check {
   width: 30px; height: 30px;
   background: rgba(255,77,0,0.1);
   color: var(--orange);
   border-radius: var(--radius-xs);
   display: flex; align-items: center; justify-content: center;
   font-size: 12px; flex-shrink: 0;
}

/* Value Cards */
.value-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 38px 30px;
   text-align: center;
   border: 1.5px solid var(--border);
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
   height: 100%;
   position: relative;
   overflow: hidden;
}
.value-card::before {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 4px;
   background: var(--grad-orange);
   transform: scaleX(0);
   transition: transform 0.4s ease;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.mv-card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-md) !important; }
.value-icon {
   width: 72px; height: 72px;
   border-radius: var(--radius);
   display: flex; align-items: center; justify-content: center;
   font-size: 28px;
   margin: 0 auto 22px;
   transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.value-icon.orange { background: rgba(255,77,0,0.1);  color: var(--orange); }
.value-icon.teal   { background: rgba(0,196,180,0.1); color: var(--teal); }
.value-icon.blue   { background: rgba(99,102,241,0.1); color: #6366F1; }
.value-icon.green  { background: rgba(16,185,129,0.1); color: var(--green); }
.value-card:hover .value-icon { transform: scale(1.12) rotate(-8deg); }
.value-card h4 { font-size: 18px; font-weight: 800; color: var(--txt-h); margin-bottom: 12px; }
.value-card p  { font-size: 15px; line-height: 1.72; margin: 0; }

/* Team */
.team-card {
   background: #fff;
   border-radius: var(--radius);
   overflow: hidden;
   border: 1.5px solid var(--border);
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.tc-photo { height: 260px; position: relative; overflow: hidden; }
.tc-photo-bg {
   position: absolute; inset: 0;
   display: flex; align-items: center; justify-content: center;
}
.tc-photo-bg i { font-size: 74px; opacity: 0.35; color: #fff; }
.tc-social {
   position: absolute; bottom: 18px; left: 50%;
   transform: translateX(-50%);
   display: flex; gap: 8px;
   opacity: 0; transition: var(--transition);
}
.team-card:hover .tc-social { opacity: 1; }
.tc-social a {
   width: 36px; height: 36px;
   background: rgba(255,255,255,0.95);
   border-radius: var(--radius-xs);
   display: flex; align-items: center; justify-content: center;
   color: var(--txt-h); font-size: 14px;
   transition: var(--transition-f);
}
.tc-social a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.tc-body { padding: 22px 24px; }
.tc-body h4   { font-size: 17px; font-weight: 800; color: var(--txt-h); margin-bottom: 4px; }
.tc-body span { font-size: 13px; color: var(--orange); font-weight: 700; }
.tc-body p    { font-size: 14px; margin-top: 10px; line-height: 1.65; }

/* Awards */
.award-card {
   display: flex; align-items: center; gap: 20px;
   padding: 22px 26px;
   background: #fff;
   border-radius: var(--radius);
   border: 1.5px solid var(--border);
   transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.award-card:hover { border-color: rgba(255,77,0,0.2); box-shadow: var(--shadow-md); transform: translateX(6px); }
.award-icon {
   width: 56px; height: 56px;
   background: rgba(255,77,0,0.1);
   color: var(--orange);
   border-radius: var(--radius-sm);
   display: flex; align-items: center; justify-content: center;
   font-size: 24px; flex-shrink: 0;
   transition: var(--transition);
}
.award-card:hover .award-icon { transform: scale(1.1) rotate(-6deg); }
.award-card h5 { font-size: 16px; font-weight: 800; color: var(--txt-h); margin-bottom: 4px; }
.award-card p  { font-size: 13px; color: var(--txt-m); margin: 0; }

/* =============================================
   SERVICES PAGE
============================================= */
.service-detail-section { padding: 100px 0; }
.service-detail-section.alt-bg { background: var(--bg-soft); }

.service-visual-wrap { position: relative; height: 490px; }
.service-visual-bg {
   position: absolute; inset: 0;
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow-xl);
}

.service-detail-tag {
   display: inline-flex; align-items: center; gap: 8px;
   font-size: 12px; font-weight: 800;
   letter-spacing: 2px; text-transform: uppercase;
   padding: 7px 18px; border-radius: var(--radius-pill);
   margin-bottom: 14px;
}
.service-detail-tag.orange { background: rgba(255,77,0,0.08); color: var(--orange); border: 1.5px solid rgba(255,77,0,0.18); }
.service-detail-tag.teal   { background: rgba(0,196,180,0.08); color: var(--teal); border: 1.5px solid rgba(0,196,180,0.18); }

.service-feature-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.sf-item {
   display: flex; align-items: flex-start; gap: 16px;
   padding: 18px 20px;
   background: #fff;
   border-radius: var(--radius-sm);
   border: 1.5px solid var(--border);
   transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.sf-item:hover { border-color: rgba(255,77,0,0.18); transform: translateX(5px); box-shadow: var(--shadow-sm); }
.sf-icon {
   width: 44px; height: 44px;
   border-radius: var(--radius-xs);
   display: flex; align-items: center; justify-content: center;
   font-size: 18px; flex-shrink: 0;
   transition: var(--transition);
}
.sf-icon.orange { background: rgba(255,77,0,0.1); color: var(--orange); }
.sf-icon.teal   { background: rgba(0,196,180,0.1); color: var(--teal); }
.sf-item:hover .sf-icon { transform: scale(1.1) rotate(-6deg); }
.sf-item h5 { font-size: 15px; font-weight: 700; color: var(--txt-h); margin-bottom: 4px; }
.sf-item p  { font-size: 14px; margin: 0; line-height: 1.65; }

/* Services Overview Grid */
.services-overview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.sov-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 30px 26px;
   border: 1.5px solid var(--border);
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
   cursor: pointer; text-decoration: none;
   display: block; position: relative; overflow: hidden;
}
.sov-card::before {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 3px;
   background: var(--grad-orange);
   transform: scaleX(0);
   transition: transform 0.35s ease;
}
.sov-card:hover::before { transform: scaleX(1); }
.sov-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.sov-num { font-size: 11px; font-weight: 800; color: var(--txt-light); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; }
.sov-icon {
   width: 56px; height: 56px;
   border-radius: var(--radius-sm);
   display: flex; align-items: center; justify-content: center;
   font-size: 22px; margin-bottom: 18px;
   transition: var(--transition);
}
.sov-icon.orange { background: rgba(255,77,0,0.1); color: var(--orange); }
.sov-icon.teal   { background: rgba(0,196,180,0.1); color: var(--teal); }
.sov-card:hover .sov-icon { transform: scale(1.1) rotate(-6deg); }
.sov-card h4  { font-size: 18px; font-weight: 800; color: var(--txt-h); margin-bottom: 10px; }
.sov-card p   { font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.sov-arrow    { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--orange); transition: var(--transition-f); }
.sov-card:hover .sov-arrow { gap: 12px; }

/* Pricing */
.pricing-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 42px 36px;
   border: 1.5px solid var(--border);
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
   position: relative; overflow: hidden;
}
.pricing-card.popular {
   background: var(--grad-orange);
   border: none;
   box-shadow: var(--shadow-orange);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pricing-popular-badge {
   position: absolute; top: 22px; right: 22px;
   background: rgba(255,255,255,0.25);
   color: #fff; font-size: 11px; font-weight: 800;
   padding: 5px 16px; border-radius: var(--radius-pill);
   letter-spacing: 0.5px; backdrop-filter: blur(10px);
   border: 1px solid rgba(255,255,255,0.3);
}
.pricing-plan { font-size: 12px; font-weight: 800; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.pricing-card.popular .pricing-plan { color: rgba(255,255,255,0.8); }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin: 16px 0; }
.pricing-price .amount { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: var(--txt-h); letter-spacing: -2px; line-height: 1; }
.pricing-card.popular .amount { color: #fff; }
.pricing-price .period { font-size: 14px; color: var(--txt-m); margin-bottom: 8px; font-weight: 500; }
.pricing-card.popular .period { color: rgba(255,255,255,0.65); }
.pricing-desc { font-size: 14px; color: var(--txt-m); margin-bottom: 28px; line-height: 1.68; }
.pricing-card.popular .pricing-desc { color: rgba(255,255,255,0.7); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--txt-b); font-weight: 500; }
.pricing-card.popular .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-features li i { font-size: 12px; }
.pricing-features li i.fa-check { color: var(--green); }
.pricing-features li i.fa-xmark  { color: var(--txt-light); }
.pricing-card.popular .pricing-features li i.fa-check { color: #fff; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.pricing-card.popular .pricing-divider { border-color: rgba(255,255,255,0.2); }

/* FAQ */
.faq-item {
   background: #fff;
   border-radius: var(--radius-sm);
   border: 1.5px solid var(--border);
   overflow: hidden;
   transition: var(--transition);
}
.faq-item:hover { border-color: rgba(255,77,0,0.15); }
.faq-item.open  { border-color: rgba(255,77,0,0.2); box-shadow: var(--shadow-sm); }
.faq-question {
   display: flex; align-items: center;
   justify-content: space-between;
   padding: 22px 28px; cursor: pointer; gap: 16px;
}
.faq-question h5 { font-size: 16px; font-weight: 700; color: var(--txt-h); margin: 0; }
.faq-toggle {
   width: 34px; height: 34px;
   background: rgba(255,77,0,0.08);
   color: var(--orange);
   border-radius: var(--radius-xs);
   display: flex; align-items: center; justify-content: center;
   font-size: 14px; flex-shrink: 0;
   transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-toggle { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-answer { padding: 0 28px 24px; font-size: 15px; color: var(--txt-m); line-height: 1.78; display: none; }
.faq-item.open .faq-answer { display: block; }

/* =============================================
   WORK / PORTFOLIO PAGE
============================================= */
.work-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 40px; }
.work-page-card {
   background: #fff;
   border-radius: var(--radius);
   overflow: hidden;
   border: 1.5px solid var(--border);
   transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.work-page-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.wpc-img { height: 250px; position: relative; overflow: hidden; }
.wpc-img::before {
   content: ''; position: absolute; inset: 0;
   background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.wpc-overlay {
   position: absolute; inset: 0;
   background: linear-gradient(135deg, rgba(255,77,0,0.88), rgba(139,92,246,0.88));
   display: flex; align-items: center; justify-content: center;
   flex-direction: column; gap: 14px;
   opacity: 0; transition: var(--transition);
}
.work-page-card:hover .wpc-overlay { opacity: 1; }
.wpc-view-btn {
   background: rgba(255,255,255,0.2);
   backdrop-filter: blur(10px);
   color: #fff; padding: 12px 26px;
   border-radius: var(--radius-pill);
   font-size: 14px; font-weight: 700;
   display: inline-flex; align-items: center; gap: 8px;
   border: 1.5px solid rgba(255,255,255,0.4);
   transform: translateY(14px);
   transition: var(--transition);
}
.work-page-card:hover .wpc-view-btn { transform: translateY(0); }
.wpc-tags { display: flex; gap: 8px; transform: translateY(14px); transition: var(--transition); transition-delay: 0.06s; }
.work-page-card:hover .wpc-tags { transform: translateY(0); }
.wpc-tags span {
   background: rgba(255,255,255,0.18);
   backdrop-filter: blur(10px);
   color: #fff; font-size: 11px; font-weight: 700;
   padding: 4px 14px; border-radius: var(--radius-pill);
   border: 1px solid rgba(255,255,255,0.3);
}
.wpc-cat { position: absolute; top: 16px; left: 16px; background: #fff; color: var(--txt-h); font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: var(--radius-pill); letter-spacing: 0.5px; }
.wpc-body { padding: 28px; }
.wpc-body h4 { font-size: 18px; font-weight: 800; color: var(--txt-h); margin-bottom: 8px; letter-spacing: -0.3px; }
.wpc-body p  { font-size: 14px; color: var(--txt-m); line-height: 1.65; margin-bottom: 18px; }
.wpc-metrics { display: flex; gap: 22px; }
.wpc-metric { display: flex; flex-direction: column; }
.wpc-metric strong { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--txt-h); letter-spacing: -0.5px; }
.wpc-metric span   { font-size: 11px; color: var(--txt-m); font-weight: 500; }

/* Results */
.results-showcase {
   background: var(--bg-soft);
   padding: 70px 0;
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
}
.rs-item { text-align: center; }
.rs-num {
   font-family: var(--font-head);
   font-size: 54px; font-weight: 800;
   color: var(--txt-h);
   letter-spacing: -2px; line-height: 1;
   margin-bottom: 8px;
}
.rs-num span { color: var(--orange); }
.rs-label { font-size: 14px; color: var(--txt-m); font-weight: 500; }

/* =============================================
   CONTACT PAGE
============================================= */
.contact-page-form-section { padding: 96px 0; }
.contact-big-form {
   background: #fff;
   border-radius: 24px;
   padding: 56px 52px;
   box-shadow: var(--shadow-xl);
   border: 1.5px solid var(--border);
}
.contact-big-form h3 { font-size: 28px; font-weight: 800; color: var(--txt-h); margin-bottom: 8px; letter-spacing: -0.5px; }
.contact-big-form > p { font-size: 15px; color: var(--txt-m); margin-bottom: 36px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.cs-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 26px 26px;
   border: 1.5px solid var(--border);
   transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.cs-card:hover { border-color: rgba(255,77,0,0.18); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cs-icon {
   width: 52px; height: 52px;
   border-radius: var(--radius-sm);
   display: flex; align-items: center; justify-content: center;
   font-size: 22px; margin-bottom: 16px;
   transition: var(--transition);
}
.cs-icon.orange { background: rgba(255,77,0,0.1);  color: var(--orange); }
.cs-icon.teal   { background: rgba(0,196,180,0.1); color: var(--teal); }
.cs-icon.blue   { background: rgba(99,102,241,0.1); color: #6366F1; }
.cs-icon.green  { background: rgba(16,185,129,0.1); color: var(--green); }
.cs-card:hover .cs-icon { transform: scale(1.1) rotate(-6deg); }
.cs-card h5 { font-size: 16px; font-weight: 800; color: var(--txt-h); margin-bottom: 6px; }
.cs-card p  { font-size: 14px; color: var(--txt-m); margin: 0; line-height: 1.65; }
.cs-card a  { color: var(--txt-m); }
.cs-card a:hover { color: var(--orange); }

.map-placeholder {
   width: 100%; height: 360px;
   background: var(--bg-soft);
   border-radius: var(--radius);
   display: flex; flex-direction: column;
   align-items: center; justify-content: center;
   gap: 14px;
   position: relative; overflow: hidden;
   border: 1.5px solid var(--border);
}
.map-placeholder::before {
   content: '';
   position: absolute; inset: 0;
   background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
   background-size: 30px 30px;
}
.map-pin-icon { font-size: 50px; color: var(--orange); opacity: 0.7; position: relative; z-index: 1; }
.map-placeholder p { font-size: 15px; color: var(--txt-b); font-weight: 600; position: relative; z-index: 1; margin: 0; }
.map-placeholder span { font-size: 13px; color: var(--txt-m); position: relative; z-index: 1; }

.contact-social-strip { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.css-link {
   display: flex; align-items: center; gap: 10px;
   padding: 12px 18px;
   background: var(--bg-soft);
   border: 1.5px solid var(--border);
   border-radius: var(--radius-sm);
   font-size: 14px; font-weight: 600;
   color: var(--txt-b);
   transition: var(--transition-f);
   flex: 1; min-width: 130px;
}
.css-link:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* =============================================
   MEGA MENU
============================================= */
/* Remove old basic dropdown — override with mega */
.has-dropdown { position: static !important; }

.mega-dropdown {
   position: fixed;
   top: 80px; left: 0;
   width: 100%;
   background: #fff;
   border-top: 1px solid var(--border);
   box-shadow: 0 24px 60px rgba(0,0,0,0.12);
   opacity: 0; visibility: hidden;
   transform: translateY(-12px);
   transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
   z-index: 900;
}
.has-dropdown:hover .mega-dropdown,
.mega-dropdown:hover {
   opacity: 1; visibility: visible;
   transform: translateY(0);
}
/* Bridge gap so mouse can travel to dropdown */
.has-dropdown::after {
   content: '';
   position: absolute;
   top: 100%; left: -20px; right: -20px;
   height: 20px;
}
.mega-inner {
   max-width: 1360px;
   margin: 0 auto;
   padding: 28px 32px;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr auto;
   gap: 0;
}
.mega-col {
   padding: 0 28px 0 0;
   border-right: 1px solid var(--border);
   margin-right: 28px;
}
.mega-col:last-of-type { border-right: none; margin-right: 0; }
.mega-col-label {
   font-size: 10.5px;
   font-weight: 800;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--txt-light);
   margin-bottom: 12px;
   padding-bottom: 8px;
   border-bottom: 1px dashed var(--border);
}
.mega-item {
   display: flex;
   align-items: center;
   gap: 13px;
   padding: 11px 12px;
   border-radius: var(--radius-sm);
   transition: all 0.22s ease;
   margin-bottom: 4px;
   text-decoration: none;
}
.mega-item:hover,
.mega-item.active {
   background: var(--bg-soft);
}
.mega-item:hover .mega-icon {
   transform: scale(1.1) rotate(-6deg);
}
.mega-icon {
   width: 42px; height: 42px;
   border-radius: var(--radius-xs);
   display: flex; align-items: center; justify-content: center;
   font-size: 17px; flex-shrink: 0;
   transition: var(--transition);
}
.mega-text h6 {
   font-size: 14px; font-weight: 700;
   color: var(--txt-h);
   margin: 0 0 2px;
   transition: color 0.2s;
}
.mega-item:hover .mega-text h6 { color: var(--orange); }
.mega-text p {
   font-size: 12px;
   color: var(--txt-m);
   margin: 0;
   line-height: 1.4;
}

/* CTA column */
.mega-cta-col {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   min-width: 200px;
}
.mega-cta-card {
   background: linear-gradient(135deg, rgba(255,77,0,0.06), rgba(139,92,246,0.06));
   border: 1.5px solid rgba(255,77,0,0.14);
   border-radius: var(--radius);
   padding: 20px 20px;
   text-align: center;
}
.mega-cta-icon {
   width: 48px; height: 48px;
   background: var(--grad-orange);
   border-radius: 50%;
   display: flex; align-items: center; justify-content: center;
   color: #fff; font-size: 20px;
   margin: 0 auto 12px;
   box-shadow: var(--shadow-orange);
}
.mega-cta-card h6 {
   font-size: 15px; font-weight: 800;
   color: var(--txt-h); margin-bottom: 5px;
}
.mega-cta-card p {
   font-size: 12px; color: var(--txt-m);
   margin-bottom: 14px; line-height: 1.5;
}
.mega-all-services {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 7px;
   font-size: 13px;
   font-weight: 700;
   color: var(--orange);
   padding: 10px;
   border-radius: var(--radius-sm);
   transition: var(--transition-f);
   margin-top: 10px;
}
.mega-all-services:hover { background: rgba(255,77,0,0.06); gap: 12px; }

/* Scrolled header: mega dropdown top offset */
.adaigo-header.scrolled ~ * .mega-dropdown,
.adaigo-header.scrolled .mega-dropdown { top: 64px; }

/* Rotate arrow when open */
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-arrow { transition: transform 0.25s ease; display: inline-block; }

/* =============================================
   MOBILE DRAWER — SUB MENU
============================================= */
.text-pink   { color: #F472B6; }
.text-yellow { color: var(--yellow); }
.drawer-has-sub .drawer-parent-link {
   display: flex !important;
   align-items: center;
   justify-content: space-between;
}
.drawer-sub-toggle { font-size: 11px; color: var(--txt-light); transition: transform 0.25s; }
.drawer-has-sub.open .drawer-sub-toggle { transform: rotate(180deg); }
.drawer-sub {
   display: none;
   padding-left: 16px;
   padding-top: 4px;
}
.drawer-sub li a {
   font-size: 14px !important;
   padding: 9px 14px !important;
   color: var(--txt-m) !important;
}
.drawer-sub li a:hover { color: var(--orange) !important; }
.drawer-has-sub.open .drawer-sub { display: block; }

/* =============================================
   SERVICE INDIVIDUAL PAGES — SHARED
============================================= */
.sp-hero {
   padding: 150px 0 90px;
   position: relative;
   overflow: hidden;
   background: var(--bg);
}
.sp-hero::before {
   content: '';
   position: absolute; inset: 0;
   background-image: radial-gradient(rgba(0,0,0,0.05) 1.2px, transparent 1.2px);
   background-size: 26px 26px;
   pointer-events: none;
}
.sp-hero-blob {
   position: absolute;
   border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
   filter: blur(70px);
   opacity: 0.12;
   pointer-events: none;
}

.sp-breadcrumb {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   color: var(--txt-m);
   margin-bottom: 22px;
}
.sp-breadcrumb a { color: var(--txt-m); font-weight: 500; }
.sp-breadcrumb a:hover { color: var(--orange); }
.sp-breadcrumb i { font-size: 9px; color: var(--txt-light); }

.sp-hero-tag {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 2px;
   text-transform: uppercase;
   padding: 8px 20px;
   border-radius: var(--radius-pill);
   margin-bottom: 20px;
}
.sp-hero-tag.orange { background: rgba(255,77,0,0.08); color: var(--orange); border: 1.5px solid rgba(255,77,0,0.2); }
.sp-hero-tag.teal   { background: rgba(0,196,180,0.08); color: var(--teal);   border: 1.5px solid rgba(0,196,180,0.2); }
.sp-hero-tag.purple { background: rgba(139,92,246,0.08); color: var(--purple); border: 1.5px solid rgba(139,92,246,0.2); }
.sp-hero-tag.green  { background: rgba(16,185,129,0.08); color: var(--green);  border: 1.5px solid rgba(16,185,129,0.2); }
.sp-hero-tag.pink   { background: rgba(244,114,182,0.08); color: #F472B6;      border: 1.5px solid rgba(244,114,182,0.2); }
.sp-hero-tag.yellow { background: rgba(251,191,36,0.08); color: var(--yellow); border: 1.5px solid rgba(251,191,36,0.2); }

.sp-hero-title {
   font-size: clamp(36px, 5.5vw, 66px);
   font-weight: 800;
   line-height: 1.08;
   letter-spacing: -2px;
   color: var(--txt-h);
}
.sp-hero-desc {
   font-size: 18px;
   color: var(--txt-b);
   max-width: 560px;
   line-height: 1.78;
   margin-top: 18px;
}
.sp-hero-stats {
   display: flex;
   flex-wrap: wrap;
   gap: 0;
   margin-top: 42px;
   padding-top: 32px;
   border-top: 1px solid var(--border);
}
.sp-stat {
   padding: 0 36px 0 0;
   margin-right: 36px;
   border-right: 1px solid var(--border);
}
.sp-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.sp-stat-num {
   font-family: var(--font-head);
   font-size: 40px;
   font-weight: 800;
   color: var(--txt-h);
   letter-spacing: -1.5px;
   line-height: 1;
}
.sp-stat p { font-size: 13px; color: var(--txt-m); margin-top: 5px; font-weight: 500; }

.sp-hero-visual {
   position: relative;
   height: 520px;
}
.sp-hero-main-card {
   position: absolute;
   top: 50%; left: 50%;
   transform: translate(-50%,-50%);
   width: 320px; height: 320px;
   border-radius: var(--radius);
   display: flex; align-items: center; justify-content: center;
   box-shadow: var(--shadow-xl);
   overflow: hidden;
}
.sp-hero-main-card i { font-size: 90px; color: rgba(255,255,255,0.2); }
.sp-float-card {
   position: absolute;
   background: #fff;
   border-radius: var(--radius-sm);
   padding: 14px 18px;
   box-shadow: var(--shadow-lg);
   border: 1px solid var(--border);
   white-space: nowrap;
}
.sp-float-card .sp-fc-num {
   font-family: var(--font-head);
   font-size: 28px; font-weight: 800;
   color: var(--txt-h);
   letter-spacing: -1px;
   line-height: 1;
}
.sp-float-card .sp-fc-label {
   font-size: 11px; font-weight: 700;
   color: var(--txt-m);
   text-transform: uppercase;
   letter-spacing: 1px;
}
.sp-float-card .sp-fc-sub {
   font-size: 11px;
   display: flex; align-items: center; gap: 5px;
   margin-top: 4px; font-weight: 600;
}

/* Service page process */
.sp-process-grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 0;
   position: relative;
   margin-top: 48px;
}
.sp-process-grid::before {
   content: '';
   position: absolute;
   top: 34px; left: 10%; right: 10%;
   height: 2px;
   background: linear-gradient(90deg, var(--orange), var(--purple), var(--teal));
   opacity: 0.3;
}
.sp-step {
   text-align: center;
   padding: 0 14px;
   position: relative;
}
.sp-step-num {
   width: 68px; height: 68px;
   border-radius: 50%;
   border: 2px solid var(--border);
   background: #fff;
   display: flex; align-items: center; justify-content: center;
   font-family: var(--font-head);
   font-size: 20px; font-weight: 800;
   color: var(--txt-h);
   margin: 0 auto 18px;
   position: relative; z-index: 1;
   transition: var(--transition);
   box-shadow: var(--shadow-sm);
}
.sp-step:hover .sp-step-num {
   background: var(--grad-orange);
   color: #fff;
   border-color: transparent;
   box-shadow: var(--shadow-orange);
   transform: scale(1.1);
}
.sp-step h5 { font-size: 15px; font-weight: 800; color: var(--txt-h); margin-bottom: 8px; }
.sp-step p  { font-size: 13px; color: var(--txt-m); line-height: 1.65; }

/* Tools we use */
.sp-tools-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 32px;
}
.sp-tool-badge {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   padding: 10px 18px;
   background: #fff;
   border: 1.5px solid var(--border);
   border-radius: var(--radius-pill);
   font-size: 14px;
   font-weight: 600;
   color: var(--txt-b);
   transition: all 0.25s ease;
}
.sp-tool-badge i { font-size: 16px; }
.sp-tool-badge:hover {
   border-color: var(--orange);
   color: var(--orange);
   transform: translateY(-2px);
   box-shadow: var(--shadow-sm);
}

/* Results strip */
.sp-results-strip {
   background: var(--bg-dark);
   padding: 64px 0;
   position: relative;
   overflow: hidden;
}
.sp-results-strip::before {
   content: '';
   position: absolute; inset: 0;
   background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,77,0,0.08) 0%, transparent 70%);
   pointer-events: none;
}
.sp-result-item { text-align: center; padding: 20px 24px; }
.sp-result-num {
   font-family: var(--font-head);
   font-size: clamp(36px, 4vw, 54px);
   font-weight: 800;
   color: #fff;
   letter-spacing: -2px;
   line-height: 1;
}
.sp-result-num span { color: var(--orange); }
.sp-result-label { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 6px; font-weight: 500; }

/* Deliverables grid */
.sp-deliverables-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-top: 40px;
}
.sp-del-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 28px 24px;
   border: 1.5px solid var(--border);
   transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
   position: relative;
   overflow: hidden;
}
.sp-del-card::before {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 3px;
   background: var(--grad-orange);
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.35s ease;
}
.sp-del-card:hover::before { transform: scaleX(1); }
.sp-del-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-lg);
   border-color: transparent;
}
.sp-del-icon {
   width: 52px; height: 52px;
   border-radius: var(--radius-sm);
   display: flex; align-items: center; justify-content: center;
   font-size: 22px;
   margin-bottom: 16px;
   transition: var(--transition);
}
.sp-del-card:hover .sp-del-icon { transform: scale(1.1) rotate(-6deg); }
.sp-del-card h5 { font-size: 16px; font-weight: 800; color: var(--txt-h); margin-bottom: 8px; }
.sp-del-card p  { font-size: 14px; color: var(--txt-m); line-height: 1.68; margin: 0; }

/* Case study card */
.sp-case-card {
   background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
   border-radius: var(--radius);
   padding: 48px 52px;
   position: relative;
   overflow: hidden;
}
.sp-case-card::before {
   content: '';
   position: absolute; inset: 0;
   background: radial-gradient(ellipse 60% 70% at 20% 50%, rgba(255,77,0,0.12) 0%, transparent 65%);
   pointer-events: none;
}
.sp-case-results {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   margin: 28px 0;
}
.sp-case-stat {
   text-align: center;
   min-width: 100px;
}
.sp-case-stat .num {
   font-family: var(--font-head);
   font-size: 42px; font-weight: 800;
   color: #fff; letter-spacing: -1.5px;
   line-height: 1;
}
.sp-case-stat .num span { color: var(--orange); }
.sp-case-stat p { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Why choose section */
.sp-why-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 16px;
   margin-top: 32px;
}
.sp-why-item {
   display: flex;
   align-items: flex-start;
   gap: 14px;
   padding: 18px 20px;
   background: var(--bg-soft);
   border-radius: var(--radius-sm);
   border: 1.5px solid var(--border);
   transition: all 0.28s ease;
}
.sp-why-item:hover {
   border-color: rgba(255,77,0,0.18);
   background: rgba(255,77,0,0.02);
   transform: translateX(5px);
}
.sp-why-check {
   width: 30px; height: 30px;
   background: rgba(255,77,0,0.1);
   color: var(--orange);
   border-radius: 50%;
   display: flex; align-items: center; justify-content: center;
   font-size: 12px; flex-shrink: 0;
}
.sp-why-item h6 { font-size: 14px; font-weight: 700; color: var(--txt-h); margin-bottom: 4px; }
.sp-why-item p  { font-size: 13px; color: var(--txt-m); margin: 0; line-height: 1.6; }

/* Packages mini */
.sp-pkg-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
   margin-top: 36px;
}
.sp-pkg-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 28px 24px;
   border: 1.5px solid var(--border);
   text-align: center;
   transition: all 0.35s ease;
   position: relative;
}
.sp-pkg-card.featured {
   background: var(--grad-orange);
   border: none;
   box-shadow: var(--shadow-orange);
}
.sp-pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.sp-pkg-plan { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.sp-pkg-card.featured .sp-pkg-plan { color: rgba(255,255,255,0.75); }
.sp-pkg-price { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--txt-h); letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.sp-pkg-card.featured .sp-pkg-price { color: #fff; }
.sp-pkg-period { font-size: 13px; color: var(--txt-m); margin-bottom: 14px; }
.sp-pkg-card.featured .sp-pkg-period { color: rgba(255,255,255,0.65); }
.sp-pkg-features { text-align: left; margin-bottom: 22px; display: flex; flex-direction: column; gap: 9px; }
.sp-pkg-features li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--txt-b); }
.sp-pkg-card.featured .sp-pkg-features li { color: rgba(255,255,255,0.85); }
.sp-pkg-features li i { font-size: 11px; color: var(--green); }
.sp-pkg-card.featured .sp-pkg-features li i { color: #fff; }

/* =============================================
   RESPONSIVE HELPERS
============================================= */
@media (max-width: 1199px) {
   .mega-inner { grid-template-columns: 1fr 1fr; padding: 22px 24px; }
   .mega-cta-col { display: none; }
   .mega-col:nth-child(2) { border-right: none; }
   .mega-col:nth-child(3) { grid-column: 1; border-right: 1px solid var(--border); }
   .mega-col:nth-child(4) { display: none; }
   .sp-process-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
   .sp-process-grid::before { display: none; }
}
@media (max-width: 991px) {
   .mega-dropdown { display: none; }
   .sp-deliverables-grid { grid-template-columns: repeat(2, 1fr); }
   .sp-pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin: 36px auto 0; }
   .sp-process-grid { grid-template-columns: repeat(2, 1fr); }
   .sp-hero { padding: 130px 0 70px; }
}
@media (max-width: 767px) {
   .sp-deliverables-grid { grid-template-columns: 1fr; }
   .sp-why-grid { grid-template-columns: 1fr; }
   .sp-process-grid { grid-template-columns: 1fr; gap: 18px; }
   .sp-hero-stats { gap: 20px; }
   .sp-stat { border-right: none; padding-right: 0; margin-right: 0; }
   .sp-case-card { padding: 32px 26px; }
   .sp-hero-visual { height: 360px; }
   .sp-hero-main-card { width: 220px; height: 220px; }
   .sp-hero-main-card i { font-size: 60px; }
}
.css-link i { font-size: 16px; }
