/* Lucintel Premium Website Styles (includes design system from common.css) */

/* ========== DESIGN SYSTEM (variables, resets, components) ========== */
:root {
  --color-navy: #0f172a;
  --color-navy-mid: #1e3a5f;
  --color-primary: #295492;
  --color-primary-light: #3a6cb8;
  --color-primary-dark: #25497a;
  --color-accent-green: #77ad11;
  --color-accent-green-dark: #5f8b0e;
  --color-accent-green-light: #8fc41a;
  --color-accent-blue: #0ea5e9;
  --color-accent-cyan: #06b6d4;
  --color-accent-red: #f43f5e;
  --color-accent-pink: #ec4899;
  --color-white: #ffffff;
  --color-off-white: #f8fafc;
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-900: #0f172a;
  --font-sans: 'Plus Jakarta Sans', 'system-ui', sans-serif;
  --font-body: 'Inter', 'system-ui', sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  --transition-slower: 500ms ease;
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal-backdrop: 40;
  --z-modal: 50;
  --z-popover: 60;
  --z-tooltip: 70;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-slate-900);
  background-color: var(--color-white);
  line-height: 1.6;
}

/* Restore list styles inside prose containers (Tailwind Preflight strips them) */
.prose ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 0.75em 0;
}
.prose ol {
  list-style-type: decimal;
  padding-left: 1.5em;
  margin: 0.75em 0;
}
.prose li {
  margin: 0.25em 0;
}

/* Market report detail page content typography.
   Scoped to .mr-content so it does not affect other detail pages
   (country_research, value_chain, about_us). The CMS stores body as a
   single <div> with <br /> separators and inline-styled <h2>/<h3>; Tailwind
   Preflight zeros heading margins, which collapses headings against body
   text. These rules restore the breathing room. */
.mr-content,
.mr-content p,
.mr-content div,
.mr-content li,
.prose.mr-content,
.prose.mr-content p,
.prose.mr-content div,
.prose.mr-content li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.mr-content { line-height: 1.7; }
.mr-content h1,
.mr-content h2,
.mr-content h3,
.mr-content h4 {
  margin: 1.5em 0 0.6em;
  font-weight: 700;
  color: #295492;
  line-height: 1.3;
}
.mr-content > :first-child { margin-top: 0; }
.mr-content img {
  display: block;
  margin: 1em auto;
  max-width: 100%;
  height: auto;
}
/* Bullet lines emitted by the |bulletize template filter. Each "&bull; X <br />"
   pattern in the CMS body becomes a real <p class="mr-bullet">…</p>, so we can
   use standard block margins instead of relying on fragile <br> styling. */
.mr-content .mr-bullet {
  display: block;
  margin: 0.75em 0;
  padding-left: 1.25em;
  text-indent: -1.25em;
  text-align: left;
}
.mr-content .mr-bullet + .mr-bullet {
  margin-top: 1em;
}

/* Defensive fix for report detail pages where TOC / Methodology / Buy Now /
   FAQ / Key Questions sections are rendered OUTSIDE the <main> column
   (siblings of the sidebar+main flex row instead of children of <main>).
   In that layout they take the full max-w-7xl width and look wider than
   the upper content card which is constrained to the main column width.
   The selector only matches sections that are DIRECT children of the
   `.max-w-7xl` wrapper — when they're properly inside <main>, this rule
   doesn't apply and nothing changes. At lg+ we offset them by the
   sidebar width (lg:w-80 = 20rem) + the flex gap (gap-12 = 3rem) so
   they line up with the main column. */
@media (min-width: 1024px) {
  .max-w-7xl > #table-of-content,
  .max-w-7xl > #methodology,
  .max-w-7xl > #buy-now,
  .max-w-7xl > #faq,
  .max-w-7xl > #key-questions {
    margin-left: calc(20rem + 3rem);
  }
}

.gradient-primary { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); }
.gradient-accent { background: linear-gradient(135deg, var(--color-accent-green) 0%, var(--color-accent-blue) 50%, var(--color-accent-cyan) 100%); }
.gradient-hero { background: linear-gradient(135deg, rgba(41, 84, 146, 0.92) 0%, rgba(37, 73, 122, 0.95) 100%); }
.gradient-overlay { background: linear-gradient(135deg, rgba(41, 84, 146, 0.4) 0%, rgba(30, 58, 95, 0.6) 50%, rgba(15, 23, 42, 0.3) 100%); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--spacing-sm); padding: var(--spacing-sm) var(--spacing-lg); font-family: var(--font-sans); font-weight: 600; font-size: 0.875rem; line-height: 1.5; border-radius: var(--radius-full); transition: all var(--transition-base); cursor: pointer; border: none; text-decoration: none; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); color: var(--color-white); box-shadow: 0 4px 14px 0 rgba(41, 84, 146, 0.4); }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(41, 84, 146, 0.5); transform: translateY(-2px); }
.btn-secondary { background-color: var(--color-off-white); color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-secondary:hover { background-color: var(--color-primary); color: var(--color-white); }
.btn-accent { background: linear-gradient(135deg, var(--color-accent-green) 0%, var(--color-accent-green-light) 100%); color: var(--color-white); }
.btn-ghost { background-color: transparent; color: var(--color-slate-600); border: 1px solid var(--color-slate-300); }
.btn-ghost:hover { background-color: var(--color-slate-50); border-color: var(--color-primary); color: var(--color-primary); }
.btn-sm { padding: var(--spacing-xs) var(--spacing-md); font-size: 0.75rem; }
.btn-lg { padding: var(--spacing-md) var(--spacing-2xl); font-size: 1rem; }

.card { background-color: var(--color-white); border-radius: var(--radius-xl); padding: var(--spacing-xl); box-shadow: var(--shadow-md); transition: all var(--transition-base); border: 1px solid var(--color-slate-100); }
.card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--color-primary); }
.card-minimal { background-color: var(--color-white); border-radius: var(--radius-lg); padding: var(--spacing-lg); border: 1px solid var(--color-slate-200); transition: all var(--transition-base); }
.card-minimal:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); }
.card-glass { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15); }

.badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600; border-radius: var(--radius-full); line-height: 1; }
.badge-primary { background-color: var(--color-primary); color: var(--color-white); }
.badge-accent { background: linear-gradient(135deg, var(--color-accent-red) 0%, var(--color-accent-pink) 100%); color: var(--color-white); }
.badge-green { background-color: var(--color-accent-green); color: var(--color-white); }
.badge-outline { background-color: transparent; border: 1px solid var(--color-slate-300); color: var(--color-slate-600); }

.heading-xl { font-family: var(--font-sans); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.heading-lg { font-family: var(--font-sans); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
.heading-md { font-family: var(--font-sans); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; line-height: 1.3; }
.heading-sm { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
.text-accent-green { color: var(--color-accent-green); }
.text-gradient { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-blue) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Banner highlight icons: force accent green (uploaded images are tinted, SVG uses currentColor) */
.banner-highlight-icon-wrap { color: var(--color-accent-green); display: inline-flex; align-items: center; justify-content: center; }
.banner-highlight-icon { filter: brightness(0) saturate(100%) invert(58%) sepia(89%) saturate(435%) hue-rotate(36deg) brightness(95%) contrast(92%); }

.section { padding: var(--spacing-4xl) 0; }
.section-sm { padding: var(--spacing-2xl) 0; }
.section-lg { padding: 6rem 0; }
.container { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
@media (min-width: 640px) { .container { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); } }
@media (min-width: 1024px) { .container { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); } }
.container-fluid { width: 100%; padding-left: var(--spacing-md); padding-right: var(--spacing-md); }

.hero { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-content { position: relative; z-index: 10; }

.glow-effect { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.3; pointer-events: none; }
.glow-primary { background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%); }
.glow-accent { background: radial-gradient(circle, var(--color-accent-green) 0%, transparent 70%); }

.animate-fade-in { animation: fadeIn 0.5s ease; }
.animate-slide-up { animation: slideUp 0.6s ease; }
.animate-slide-down { animation: slideDown 0.6s ease; }
.animate-scale-in { animation: scaleIn 0.4s ease; }
.animate-glow { animation: glow 2s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-auto-fit { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--spacing-lg); }
.grid-auto-fill { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--spacing-lg); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

@media (max-width: 640px) { .sm\:hidden { display: none; } .section { padding: var(--spacing-2xl) 0; } }
@media (min-width: 641px) and (max-width: 1024px) { .md\:hidden { display: none; } }
@media (min-width: 1025px) { .lg\:hidden { display: none; } }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-slate-100); }
::-webkit-scrollbar-thumb { background: var(--color-slate-400); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

*:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

@media print { .no-print { display: none !important; } a { text-decoration: underline; } .card { box-shadow: none; border: 1px solid var(--color-slate-300); } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

.skeleton { background: linear-gradient(90deg, var(--color-slate-200) 0%, var(--color-slate-100) 50%, var(--color-slate-200) 100%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.spinner { width: 40px; height: 40px; border: 4px solid var(--color-slate-200); border-top-color: var(--color-primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 15px rgba(41, 84, 146, 0.5), 0 0 30px rgba(41, 84, 146, 0.3); } 50% { box-shadow: 0 0 25px rgba(41, 84, 146, 0.7), 0 0 50px rgba(41, 84, 146, 0.4); } }

/* Nav CTA: outline button, no global .btn-primary overlap; text stays on top */
.nav-cta-btn { text-decoration: none; }
.nav-cta-btn:hover { text-decoration: none; }

/* ========== BASE ========== */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Custom selection */
::selection {
    background: rgba(119, 173, 17, 0.2);
    color: #0f172a;
}

/* Custom scrollbar - browser default */

/* ========== GROWTH SECTION CATEGORY ROTATION (LATEST DESIGN) ========== */
@keyframes socialFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.growth-category {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    inset: 0;
}
.growth-category.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
.growth-category.exit {
    opacity: 0;
    transform: translateY(-20px);
}
.growth-indicator {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.growth-indicator.active {
    transform: scale(1.15);
}
.growth-item {
    opacity: 0;
    transform: translateX(16px);
}
.growth-category.active .growth-item {
    opacity: 1;
    transform: translateX(0);
}
.growth-category.active .growth-item:nth-child(1) { transition: all 0.4s 0.1s cubic-bezier(0.4, 0, 0.2, 1); }
.growth-category.active .growth-item:nth-child(2) { transition: all 0.4s 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.growth-category.active .growth-item:nth-child(3) { transition: all 0.4s 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
.growth-category.active .growth-item:nth-child(4) { transition: all 0.4s 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.growth-category.active .growth-item:nth-child(5) { transition: all 0.4s 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.growth-category.active .growth-item:nth-child(6) { transition: all 0.4s 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.growth-category.active .growth-item:nth-child(7) { transition: all 0.4s 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.growth-category.active .growth-item:nth-child(8) { transition: all 0.4s 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.growth-progress-bar {
    height: 2px;
    background: linear-gradient(90deg, var(--bar-color) var(--progress, 0%), transparent var(--progress, 0%));
    transition: none;
}

/* ========== KEYFRAMES ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes draw-line {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

@keyframes counter-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(119, 173, 17, 0); }
    50% { text-shadow: 0 0 20px rgba(119, 173, 17, 0.3); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

@keyframes subtle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes border-dance {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* ========== ANIMATION CLASSES ========== */
.animate-fadeInUp { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fadeInDown { animation: fadeInDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fadeInRight { animation: fadeInRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fadeIn { animation: fadeIn 0.7s ease-out forwards; }
.animate-scaleIn { animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-scroll { animation: marquee 35s linear infinite; }
.animate-float { animation: float 4s ease-in-out infinite; }

/* Stagger delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* ========== SCROLL REVEAL ========== */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ========== NAVBAR ========== */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #77ad11;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}
.nav-link:hover::after {
    width: 100%;
}

/* ========== GLASSMORPHISM ========== */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(119, 173, 17, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========== PREMIUM CARDS ========== */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #77ad11, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Shine effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    pointer-events: none;
}
.service-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

/* ========== GROWTH TREE ========== */
.growth-tree .tree-node {
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.growth-tree.revealed .tree-node {
    opacity: 1;
    transform: translateY(0);
}
.growth-tree.revealed .tree-node:nth-child(1) { transition-delay: 0.05s; }
.growth-tree.revealed .tree-node:nth-child(2) { transition-delay: 0.1s; }
.growth-tree.revealed .tree-node:nth-child(3) { transition-delay: 0.15s; }
.growth-tree.revealed .tree-node:nth-child(4) { transition-delay: 0.2s; }
.growth-tree.revealed .tree-node:nth-child(5) { transition-delay: 0.25s; }
.tree-branch-line {
    position: relative;
    overflow: hidden;
}
.tree-branch-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}
.tree-node:hover {
    transform: translateY(-2px) !important;
}

/* ========== ORBITAL DIAGRAM ========== */

/* Register custom property for orbit angle animation */
@property --orbit-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Center node — premium glow + hover lift */
.orbital-center {
    box-shadow:
        0 0 50px rgba(6, 182, 212, 0.12),
        0 0 100px rgba(6, 182, 212, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.orbital-center:hover {
    box-shadow:
        0 0 70px rgba(6, 182, 212, 0.2),
        0 0 120px rgba(6, 182, 212, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    filter: brightness(1.1);
}

/* Satellite nodes — opacity-only animation to preserve Tailwind transforms */
.orbital-node {
    opacity: 0;
    animation: node-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--node-delay, 0s);
}
@keyframes node-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Node inner — gradient border reveal + glow on hover */
.orbital-node-inner {
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.orbital-node-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), rgba(119, 173, 17, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.orbital-node-inner:hover::before {
    opacity: 1;
}
.orbital-node-inner:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.12), 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Key Questions Cards — light theme (matching Tailwind HTML) */
.key-question {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.key-question:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* ========== INDUSTRY TILES ========== */
.industry-tile {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.industry-tile:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ========== STAT CARDS ========== */
.stat-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(119, 173, 17, 0.3), transparent, rgba(14, 165, 233, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.stat-card:hover::before {
    opacity: 1;
}
.stat-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.counter-value {
    animation: counter-glow 3s ease-in-out infinite;
}

/* ========== PREMIUM BUTTONS ========== */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(119, 173, 17, 0.3);
}

.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* ========== GRADIENT TEXT ========== */
.gradient-text {
    background: linear-gradient(135deg, #77ad11, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #8fc41a, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== ANIMATED GRADIENT BG ========== */
.animated-gradient {
    background: #0f172a;
}

/* ========== LOGO CAROUSEL ========== */
.logo-carousel {
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-reverse {
    0% { transform: translateX(-33.333%); }
    100% { transform: translateX(0); }
}
.animate-scroll-reverse {
    animation: marquee-reverse 40s linear infinite;
}

/* Logo Items */
.logo-item {
    width: 180px;
    height: 64px;
}
.logo-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.logo-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(119, 173, 17, 0.15) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.logo-inner:hover::before {
    opacity: 1;
}
.logo-inner span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(148, 163, 184, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
}
.logo-inner:hover {
    border-color: rgba(119, 173, 17, 0.15);
    background: rgba(119, 173, 17, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(119, 173, 17, 0.06);
}
.logo-inner:hover span {
    color: rgba(255, 255, 255, 0.85);
}



/* ========== CTA CARD ========== */
.cta-card {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 80px rgba(119, 173, 17, 0.06), 0 0 40px rgba(14, 165, 233, 0.04);
}
.cta-primary-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-primary-btn:hover::after {
    left: 130%;
}

/* ========== LEAD CAPTURE FORM ========== */
.lead-form-card {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead-form-card:hover {
    border-color: rgba(119, 173, 17, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(119, 173, 17, 0.05);
}
.lead-input {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead-input:focus {
    box-shadow: 0 0 0 3px rgba(119, 173, 17, 0.1);
}
.lead-input::placeholder {
    transition: opacity 0.3s ease;
}
.lead-input:focus::placeholder {
    opacity: 0.4;
}
select.lead-input option {
    background-color: #ffffff;
    color: #0f172a;
}

/* Form success animation */
@keyframes successPop {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
#form-success:not(.hidden) {
    animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#form-success:not(.hidden) svg {
    animation: successPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

/* ========== TESTIMONIALS ========== */
/* Masonry layout (Template 2) – column grid for testimonial cards */
.testimonials-masonry {
    column-count: 1;
    column-gap: 1.5rem;
}
@media (min-width: 768px) {
    .testimonials-masonry {
        column-count: 2;
        column-gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .testimonials-masonry {
        column-count: 3;
        column-gap: 2rem;
    }
}
.testimonials-masonry .break-inside-avoid {
    break-inside: avoid;
    page-break-inside: avoid;
}
/* Masonry template: heading on light background – force visible text (override carousel-style text-white) */
.testimonials-masonry-heading {
    color: #295492;
}
.testimonials-masonry-heading .text-white,
.testimonials-masonry-heading [class*="text-white"] {
    color: #295492 !important;
}
.testimonials-masonry-heading .text-accent-green,
.testimonials-masonry-heading [class*="text-accent-green"] {
    color: #77ad11 !important;
}

.testimonial-dot {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.testimonial-dot:hover {
    transform: scale(1.3);
}
.testimonial-dot.active {
    background-color: #77ad11 !important;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(119, 173, 17, 0.2);
}

/* ========== PARTNERS TEMPLATE 2 – CLIENT SHOWCASE GRID ========== */
.clients-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .clients-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}
@media (max-width: 640px) {
    .clients-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
.client-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.client-card:hover {
    border-color: #295492;
    box-shadow: 0 4px 12px rgba(41, 84, 146, 0.08);
}
.client-card img {
    max-height: 2.75rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* ========== CUSTOMER STATS – STAT COUNTER ========== */
.stat-counter {
    background: linear-gradient(135deg, #295492 0%, #3a6cb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== SECTION DIVIDERS ========== */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(119, 173, 17, 0.3), transparent);
}

/* ========== PREMIUM BADGES ========== */
.badge-glow {
    position: relative;
}
.badge-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, #77ad11, #0ea5e9);
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0.4;
}

/* ========== PARALLAX DOTS PATTERN ========== */
.dots-pattern {
    background-image: radial-gradient(rgba(119, 173, 17, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ========== FORM STYLES ========== */
.form-input {
    transition: all 0.3s ease;
}
.form-input:focus {
    border-color: #77ad11;
    box-shadow: 0 0 0 3px rgba(119, 173, 17, 0.1);
}

/* ========== INSIGHT CARDS ========== */
.insight-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.insight-card:hover {
    transform: translateY(-6px);
}

/* ========== EXPERT CARD FLIP ========== */
.expert-card { perspective: 1000px; }
.expert-card-inner { transition: transform 0.6s; transform-style: preserve-3d; }
.expert-card:hover .expert-card-inner { transform: rotateY(180deg); }
.expert-card-front, .expert-card-back { backface-visibility: hidden; }
.expert-card-back { transform: rotateY(180deg); }

/* ========== LOADING SKELETON ========== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ========== FILTERS ========== */
.filter-pill {
    transition: all 0.2s ease;
}
.filter-pill.active {
    background-color: #0f172a;
    color: white;
}
.filter-pill:hover:not(.active) {
    background-color: #e2e8f0;
}

/* ========== BREADCRUMBS ========== */
.breadcrumb-item::after {
    content: '/';
    margin: 0 0.5rem;
    color: #94a3b8;
}
.breadcrumb-item:last-child::after {
    content: '';
}

/* ========== TIMELINE ========== */
.timeline-item {
    position: relative;
    padding-left: 2rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}
.timeline-item::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #77ad11;
    border-radius: 50%;
    border: 2px solid white;
}

/* ========== MAP ========== */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== MEGA MENU ========== */
.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========== PAGE TRANSITIONS ========== */
.page-transition {
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== HOVER GLOW ========== */
.hover-glow {
    transition: all 0.4s ease;
}
.hover-glow:hover {
    box-shadow: 0 0 30px rgba(119, 173, 17, 0.15);
}

/* ========== MAGNETIC BUTTON WRAPPER ========== */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== COUNTER HIGHLIGHT ========== */
.counter-highlight {
    position: relative;
    display: inline-block;
}
.counter-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #77ad11, transparent);
    border-radius: 2px;
}

/* ========== GROWTH STEPS PATH ========== */
#growth-path-line,
.growth-path-line {
    animation: dash-flow 25s linear infinite;
}
@keyframes dash-flow {
    to { stroke-dashoffset: -500; }
}
.growth-step-circle {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.growth-step-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(119, 173, 17, 0.15), 0 8px 25px rgba(119, 173, 17, 0.3);
}

/* ========== GROWTH OPPORTUNITIES BG ANIMATIONS ========== */
@keyframes growth-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    25% { transform: translate(100px, 50px) scale(1.2); opacity: 1; }
    50% { transform: translate(40px, -40px) scale(0.9); opacity: 0.6; }
    75% { transform: translate(-60px, 30px) scale(1.1); opacity: 0.9; }
}
@keyframes growth-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(-80px, -60px) scale(1.15); opacity: 0.9; }
    50% { transform: translate(60px, 40px) scale(0.95); opacity: 0.7; }
    75% { transform: translate(30px, -50px) scale(1.1); opacity: 1; }
}
@keyframes growth-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(70px, -40px) scale(1.1); opacity: 0.8; }
    50% { transform: translate(-40px, 60px) scale(1.15); opacity: 1; }
    75% { transform: translate(-70px, -20px) scale(0.9); opacity: 0.7; }
}
@keyframes growth-gradient-shift {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}
@keyframes growth-sweep {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* ========== NEWSLETTER BG ANIMATIONS ========== */
@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.1); }
    50% { transform: translate(-30px, -80px) scale(0.95); }
    75% { transform: translate(-60px, 20px) scale(1.05); }
}
@keyframes float-orb-reverse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-50px, 30px) scale(1.08); }
    50% { transform: translate(40px, 60px) scale(0.92); }
    75% { transform: translate(70px, -30px) scale(1.04); }
}
@keyframes drift-up {
    0% { transform: translateY(100%) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes morph-blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%; }
    75% { border-radius: 60% 30% 60% 40% / 70% 40% 50% 60%; }
}
@keyframes grid-pulse {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.07; }
}

.newsletter-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.newsletter-orb-1 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, rgba(119, 173, 17, 0.08), rgba(14, 165, 233, 0.05));
    top: -50px; left: -80px;
    animation: float-orb 15s ease-in-out infinite, morph-blob 20s ease-in-out infinite;
}
.newsletter-orb-2 {
    width: 250px; height: 250px;
    background: linear-gradient(225deg, rgba(14, 165, 233, 0.07), rgba(6, 182, 212, 0.05));
    bottom: -60px; right: -60px;
    animation: float-orb-reverse 18s ease-in-out infinite, morph-blob 22s ease-in-out infinite;
}
.newsletter-orb-3 {
    width: 180px; height: 180px;
    background: linear-gradient(45deg, rgba(6, 182, 212, 0.06), rgba(119, 173, 17, 0.04));
    top: 40%; left: 60%;
    animation: float-orb 22s ease-in-out infinite 3s;
}

.newsletter-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: drift-up linear infinite;
}

.newsletter-ring {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    pointer-events: none;
    animation: rotate-slow linear infinite;
}

.newsletter-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(119, 173, 17, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(119, 173, 17, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-pulse 6s ease-in-out infinite;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* ========== NEWSLETTER SECTION BG ========== */
.newsletter-bg-gradient {
    background: linear-gradient(135deg,
        rgba(119,173,17,0.04) 0%,
        rgba(255,255,255,1) 20%,
        rgba(14,165,233,0.03) 40%,
        rgba(255,255,255,1) 60%,
        rgba(6,182,212,0.04) 80%,
        rgba(119,173,17,0.03) 100%
    );
}

/* ========== NEWSLETTER CARD GRADIENT ========== */
.newsletter-card-bg {
    background: linear-gradient(-45deg, #1e293b, #1a2e4a, #1e3a3a, #1e293b);
}

/* ========== READING PROGRESS BAR ========== */
#reading-progress {
    will-change: width;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(119, 173, 17, 0.4), 0 0 5px rgba(14, 165, 233, 0.3);
}

/* ========== HERO SCROLL INDICATOR ========== */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-10px) translateX(-50%); }
}
.animate-bounce-slow {
    animation: bounce-slow 2.5s ease-in-out infinite;
}
@keyframes scroll-dot {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}
.animate-scroll-dot {
    animation: scroll-dot 1.8s ease-in-out infinite;
}

/* ========== SECTION HEADING POLISH ========== */
h2 {
    letter-spacing: -0.02em;
}
h1 {
    letter-spacing: -0.03em;
}

/* ========== BODY TEXT POLISH (Inter) ========== */
.font-body {
    font-family: 'Inter', system-ui, sans-serif;
}

/* ========== SECTION TRANSITIONS ========== */
section {
    position: relative;
}

/* Subtle text shadows for dark section text readability */
.animated-gradient h2,
.animated-gradient h1 {
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

/* ========== FOOTER CTA BANNER ========== */
.footer-cta-glow {
    box-shadow: 0 0 60px rgba(119, 173, 17, 0.06), 0 0 30px rgba(14, 165, 233, 0.04);
}

/* ========== HERO SCROLL INDICATOR FADE ========== */
.animate-bounce-slow {
    transition: opacity 0.5s ease;
}

/* ========== SECTION LABEL BADGES ========== */
.section-badge {
    letter-spacing: 0.12em;
}

/* ========== ENHANCED LINK HOVER UNDERLINE ========== */
footer a {
    position: relative;
}
footer ul a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #77ad11;
    transition: width 0.3s ease;
}
footer ul a:hover::after {
    width: 100%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-padding { padding-top: 4rem; padding-bottom: 4rem; }
    .logo-track { animation-duration: 20s; }
    .animate-scroll-reverse { animation-duration: 25s; }
    .logo-item { width: 150px; height: 56px; }
    .logo-inner span { font-size: 0.8rem; }
}

/* ========== PRINT ========== */
@media print {
    .no-print { display: none !important; }
    body { font-size: 12pt; line-height: 1.5; }
    a[href]::after { content: " (" attr(href) ")"; }
}

/* ========== ACCESSIBILITY ========== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #77ad11;
    outline-offset: 2px;
}

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


.footer-logo {
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    filter: none !important;
}