*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red-50:#fff1f2; --red-100:#ffe4e6; --red-200:#fecdd3; --red-300:#fca5a5;
  --red-400:#f87171; --red-500:#ef4444; --red-600:#b31b1b; --red-700:#8f1414; --red-800:#611010;
  --brown-50:#fdf8f3; --brown-100:#f5e6d3; --brown-200:#e8d0b3; --brown-300:#d4a76a;
  --brown-400:#c08552; --brown-500:#a96d3a; --brown-600:#8b5a2b; --brown-700:#6b4423; --brown-800:#4a2f1a;
  --gray-50:#f9fafb; --gray-100:#f3f4f6; --gray-200:#e5e7eb; --gray-300:#d1d5db;
  --gray-400:#9ca3af; --gray-500:#6b7280; --gray-600:#4b5563; --gray-700:#374151;
  --gray-800:#1f2937; --gray-900:#111827;
  --amber-100:#fef3c7; --amber-600:#d97706; --amber-700:#b45309;
  --emerald-50:#ecfdf5; --emerald-100:#d1fae5; --emerald-600:#059669; --emerald-700:#047857;
  --blue-50:#eff6ff; --blue-100:#dbeafe; --blue-600:#2563eb; --blue-700:#1d4ed8;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --glass: rgba(255,255,255,.7);
  --glass-border: rgba(255,255,255,.2);
  --glass-dark: rgba(20,20,20,.6);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.06);
  --shadow-md: 0 12px 30px -10px rgba(0,0,0,.08);
  --shadow-lg: 0 25px 50px -15px rgba(0,0,0,.12);
  --shadow-red: 0 18px 30px -12px rgba(179,27,27,.4);
  --ease: cubic-bezier(.2,0,0,1);
}

html { scroll-behavior: smooth; font-family: var(--font-body); -webkit-text-size-adjust: 100%; }
body { background: #fafafa; color: #171717; -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--red-600); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #eee; }
::-webkit-scrollbar-thumb { background: var(--red-600); border-radius: 4px; }

/* ═══════ KEYFRAMES ═══════ */
@keyframes fadeInUp { from{opacity:0;transform:translateY(40px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-40px);} to{opacity:1;transform:translateY(0);} }
@keyframes slideDown { from{transform:translateY(-100%);opacity:0;} to{transform:translateY(0);opacity:1;} }
@keyframes floatBlob { 0%,100%{transform:translate3d(0,0,0) scale(1);} 50%{transform:translate3d(15px,-30px,0) scale(1.05);} }
@keyframes titleGlow { 0%,100%{filter:brightness(1);} 50%{filter:brightness(1.15);} }
@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.04);} }
@keyframes rotate360 { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
@keyframes badgePulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.75;transform:scale(1.06);} }
@keyframes iconFloat { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-10px) rotate(4deg);} }
@keyframes swing { 0%,100%{transform:rotate(0deg);} 25%{transform:rotate(8deg);} 75%{transform:rotate(-8deg);} }
@keyframes cookieBounce { 0%,100%{transform:rotate(-4deg) scale(1);} 50%{transform:rotate(4deg) scale(1.05);} }
@keyframes msgPop { from{opacity:0;transform:translateY(6px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
@keyframes ringPulse { 0%{transform:scale(.8);opacity:.6;} 100%{transform:scale(2);opacity:0;} }
@keyframes iconSpin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
@keyframes newGlow { 0%,100%{box-shadow:0 0 4px rgba(139,90,43,.6);} 50%{box-shadow:0 0 12px rgba(139,90,43,1);} }
@keyframes soonGlow { 0%,100%{box-shadow:0 0 4px rgba(217,119,6,.6);} 50%{box-shadow:0 0 12px rgba(217,119,6,1);} }

/* ═══════ SCROLL REVEAL ═══════ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.88); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ═══════ COOKIE BANNER ═══════ */
#cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 440px;
  background: var(--glass-dark); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 28px;
  padding: 1rem 1.4rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 1rem; z-index: 10000;
  border: 1px solid var(--glass-border); color: #fff;
  transform: translateY(200%); transition: transform .5s cubic-bezier(.34,1.56,.64,1); pointer-events: none;
}
#cookie-banner.show { transform: translateY(0); pointer-events: all; }
.cookie-content { display: flex; align-items: center; gap: .8rem; flex: 1; }
.cookie-icon { width: 40px; height: 40px; background: var(--red-600); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; animation: cookieBounce 2s ease-in-out infinite; flex-shrink: 0; }
.cookie-text { font-size: .82rem; line-height: 1.45; opacity: .9; }
.cookie-text a { color: #ffb3b3; text-decoration: underline; font-weight: 500; }
.cookie-buttons { display: flex; gap: .5rem; flex-shrink: 0; }
.cookie-btn { padding: .45rem 1rem; border-radius: 40px; font-weight: 600; cursor: pointer; border: none; font-size: .8rem; transition: .2s; font-family: var(--font-body); }
.cookie-btn-accept { background: var(--red-600); color: white; }
.cookie-btn-accept:hover { background: var(--red-700); transform: scale(.96); }
.cookie-btn-decline { background: rgba(255,255,255,.2); color: white; }
.cookie-btn-decline:hover { background: rgba(255,255,255,.3); }

/* ═══════ NAVBAR ═══════ */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,.04); padding: .6rem 1rem; animation: slideDown .5s ease-out; transition: padding .3s ease, box-shadow .3s ease; }
#navbar.scrolled { padding: .4rem 1rem; box-shadow: 0 4px 30px rgba(0,0,0,.08); }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo-icon { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.12); transition: transform .3s ease, box-shadow .3s ease; position: relative; }
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-icon::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--red-600); opacity: 0; transition: opacity .3s; }
.nav-logo-icon:hover { transform: scale(1.08) rotate(5deg); box-shadow: 0 10px 20px -6px rgba(179,27,27,.4); }
.nav-logo-icon:hover::after { opacity: .4; animation: ringPulse 1s ease-out infinite; }
.nav-logo-text { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; background: linear-gradient(145deg, var(--red-600), var(--red-700)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; }
.menu-toggle { display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--red-600); background: none; border: none; cursor: pointer; padding: .3rem; transition: transform .3s; }
.menu-toggle:hover { transform: scale(1.1); }
.nav-links { display: none; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.nav-links a { color: #2d2d2d; font-weight: 550; font-size: .85rem; transition: color .3s ease; display: flex; align-items: center; gap: .25rem; padding-bottom: 4px; white-space: nowrap; position: relative; }
.nav-links a i { color: #c94545; font-size: .9rem; transition: transform .3s ease; }
.nav-links a:hover i { transform: translateY(-3px) scale(1.1); }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--red-600); border-radius: 2px; transition: width .3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--red-600); }
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red-600); }
.nav-mobile { display: none; flex-direction: column; gap: 1.2rem; position: absolute; top: 60px; left: 0; width: 100%; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 1.5rem 1.2rem; box-shadow: 0 20px 30px -12px rgba(0,0,0,.15); border-bottom: 1px solid #e0e0e0; max-height: 80vh; overflow-y: auto; }
.nav-mobile.active { display: flex; animation: fadeInDown .3s ease; }
.nav-mobile a { color: #2d2d2d; font-weight: 550; font-size: .88rem; display: flex; align-items: center; gap: .5rem; transition: color .2s; padding: .3rem 0; }
.nav-mobile a i { color: #c94545; }
.nav-mobile a:hover { color: var(--red-600); }

/* Nav badges */
.nav-badge { font-size: .5rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: linear-gradient(135deg, var(--amber-600), var(--amber-700)); color: white; padding: .12rem .4rem; border-radius: 20px; margin-left: .25rem; animation: badgePulse 1.5s ease-in-out infinite; line-height: 1.2; display: inline-block; }
.nav-badge-new { font-size: .5rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: linear-gradient(135deg, var(--brown-500), var(--brown-700)); color: white; padding: .12rem .4rem; border-radius: 20px; margin-left: .25rem; animation: newGlow 1.5s ease-in-out infinite; line-height: 1.2; display: inline-block; }
.nav-badge-soon { font-size: .5rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: linear-gradient(135deg, var(--amber-600), var(--amber-700)); color: white; padding: .12rem .4rem; border-radius: 20px; margin-left: .25rem; animation: soonGlow 1.5s ease-in-out infinite; line-height: 1.2; display: inline-block; }

/* IT Solutions highlight in nav */
.nav-links .nav-it-highlight { color: var(--amber-700); font-weight: 700; }
.nav-links .nav-it-highlight i { color: var(--amber-600); }
.nav-links .nav-it-highlight::after { background: var(--amber-600); }
.nav-mobile .nav-it-highlight { color: var(--amber-700); font-weight: 700; }
.nav-mobile .nav-it-highlight i { color: var(--amber-600); }

/* ═══════ HERO ═══════ */
#hero { min-height: 90vh; padding: 120px 1.5rem 60px; margin-top: 60px; background: radial-gradient(ellipse at 30% 40%, #241212, #0b0b0b 80%); position: relative; display: flex; align-items: center; justify-content: center; isolation: isolate; overflow: hidden; }
.hero-mesh { position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(circle at 25% 25%, rgba(179,27,27,.08) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(179,27,27,.06) 0%, transparent 50%); }
.hero-grid-bg { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }
.hero-graphics { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero-graphic { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .6; background: radial-gradient(circle, rgba(255,255,255,.9), rgba(179,27,27,.5) 55%, transparent 80%); animation: floatBlob 14s ease-in-out infinite; }
.hero-graphic:nth-child(1) { width: 260px; height: 260px; top: 40%; left: 55%; transform: translate(-50%,-50%); }
.hero-graphic:nth-child(2) { width: 320px; height: 320px; left: 60%; top: 10%; animation-delay: 2s; background: radial-gradient(circle, rgba(255,255,255,.7), rgba(179,27,27,.35) 55%, transparent 85%); }
.hero-graphic:nth-child(3) { width: 180px; height: 180px; right: 10%; bottom: 5%; animation-delay: 4s; background: radial-gradient(circle, rgba(179,27,27,.7), rgba(255,255,255,0) 70%); }
.hero-content { text-align: center; color: white; max-width: 900px; z-index: 2; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); padding: .45rem 1.2rem; border-radius: 40px; margin-bottom: 1.2rem; backdrop-filter: blur(8px); animation: fadeInDown .8s ease-out; }
.hero-badge i { color: #ffb3b3; font-size: 1rem; animation: swing 2s ease-in-out infinite; }
.hero-badge span { font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; opacity: .9; }
.hero-title { font-family: var(--font-head); font-weight: 700; line-height: 1.15; background: linear-gradient(135deg, #ffffff, #ffe0e0, #ffffff); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: titleGlow 3s ease-in-out infinite, fadeInUp .8s ease-out .1s backwards; }
.hero-sub { max-width: 600px; margin: 1.2rem auto 2rem; opacity: .9; font-weight: 300; letter-spacing: .2px; animation: fadeInUp .8s ease-out .3s backwards; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp .8s ease-out .5s backwards; }
.btn { padding: .85rem 2rem; border-radius: 60px; font-weight: 600; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease; display: inline-flex; align-items: center; gap: .6rem; font-size: .95rem; border: 1px solid transparent; position: relative; overflow: hidden; font-family: var(--font-body); }
.btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255,255,255,.2); transform: translate(-50%,-50%); transition: width .6s, height .6s; }
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary { background: linear-gradient(135deg, var(--red-600), var(--red-700)); color: white; box-shadow: var(--shadow-red); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 25px 35px -10px rgba(179,27,27,.8); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.3); color: white; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.btn-outline:hover { background: white; color: #0b0b0b; border-color: white; transform: translateY(-4px); }
.btn i { transition: transform .3s ease; }
.btn:hover i { transform: translateX(4px); }

/* ═══════ PAGE HERO (sub-pages) ═══════ */
.page-hero { margin-top: 60px; padding: 80px 1.5rem 50px; position: relative; text-align: center; overflow: hidden; isolation: isolate; }
.page-hero-grid { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; color: white; animation: fadeInUp .8s ease-out; }
.page-hero-icon { width: 72px; height: 72px; border-radius: 22px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; box-shadow: 0 15px 30px rgba(0,0,0,.3); animation: iconFloat 3s ease-in-out infinite; }
.page-hero-icon i { font-size: 2.2rem; color: white; }
.page-hero h1 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; background: linear-gradient(135deg, #ffffff, #ffe0e0, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { font-size: 1.05rem; opacity: .85; margin-top: .8rem; line-height: 1.6; }

/* Brown hero for SGRCR */
.page-hero.brown-hero { background: radial-gradient(ellipse at 30% 40%, #3d2817, #1a0f08 80%); }
.page-hero.brown-hero .page-hero-icon { background: linear-gradient(135deg, var(--brown-500), var(--brown-700)); box-shadow: 0 15px 30px rgba(107,68,35,.4); }
.page-hero.brown-hero h1 { background: linear-gradient(135deg, #ffffff, #f5e6d3, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Red hero (default) */
.page-hero.red-hero { background: radial-gradient(ellipse at 30% 40%, #241212, #0b0b0b 80%); }
.page-hero.red-hero .page-hero-icon { background: linear-gradient(135deg, var(--red-600), var(--red-700)); }

/* Emerald hero */
.page-hero.emerald-hero { background: radial-gradient(ellipse at 30% 40%, #0d2818, #06140d 80%); }
.page-hero.emerald-hero .page-hero-icon { background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700)); box-shadow: 0 15px 30px rgba(5,150,105,.4); }
.page-hero.emerald-hero h1 { background: linear-gradient(135deg, #ffffff, #d1fae5, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Blue hero */
.page-hero.blue-hero { background: radial-gradient(ellipse at 30% 40%, #0d1a2e, #060d1a 80%); }
.page-hero.blue-hero .page-hero-icon { background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); box-shadow: 0 15px 30px rgba(37,99,235,.4); }
.page-hero.blue-hero h1 { background: linear-gradient(135deg, #ffffff, #dbeafe, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Amber hero */
.page-hero.amber-hero { background: radial-gradient(ellipse at 30% 40%, #2e1d08, #1a1104 80%); }
.page-hero.amber-hero .page-hero-icon { background: linear-gradient(135deg, var(--amber-600), var(--amber-700)); box-shadow: 0 15px 30px rgba(217,119,6,.4); }
.page-hero.amber-hero h1 { background: linear-gradient(135deg, #ffffff, #fef3c7, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ═══════ MAIN ═══════ */
.main-content { max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem; }
.section { margin-bottom: 6rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge { color: var(--red-600); font-weight: 600; letter-spacing: 4px; font-size: .72rem; text-transform: uppercase; margin-bottom: .5rem; display: inline-flex; align-items: center; gap: .4rem; background: rgba(179,27,27,.08); padding: .3rem 1.2rem; border-radius: 40px; animation: pulse 2s ease-in-out infinite; }
.section-badge i { font-size: .85rem; animation: swing 2s ease-in-out infinite; }
.section-title { font-family: var(--font-head); font-weight: 700; color: #121212; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, transparent, var(--red-600), transparent); border-radius: 4px; }
.section-sub { color: var(--gray-500); font-size: .92rem; line-height: 1.75; max-width: 600px; margin: 1.5rem auto 0; }

/* Brown section badge for SGRCR page */
.section-badge.brown-badge { color: var(--brown-600); background: rgba(139,90,43,.1); }
.section-badge.brown-badge i { color: var(--brown-500); }
.section-title.brown-title { color: var(--brown-700); }
.section-title.brown-title::after { background: linear-gradient(90deg, transparent, var(--brown-500), transparent); }

/* ═══════ STATS ═══════ */
.stats-section { background: linear-gradient(135deg, #f2e8e8, #faf5f5); border-radius: 60px 16px 60px 16px; padding: 3.5rem 1.5rem; margin: 4rem 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(179,27,27,.06), transparent 70%); border-radius: 50%; }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem; text-align: center; position: relative; }
.stat-item { position: relative; }
.stat-number { font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; gap: .5rem; color: var(--red-600); }
.stat-number i { animation: bounce 2s ease-in-out infinite; }
.stat-label { font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; color: #3d3d3d; margin-top: .4rem; }

/* ═══════ ABOUT ═══════ */
.about-box { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 40px; padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid rgba(179,27,27,.1); }
.about-box.brown-border { border-color: rgba(139,90,43,.2); }
.about-box.blue-border { border-color: rgba(37,99,235,.15); }
.about-box.emerald-border { border-color: rgba(5,150,105,.15); }
.about-lead { line-height: 1.85; margin-bottom: 1.5rem; color: #333; }
.about-lead:last-child { margin-bottom: 0; }
.about-badges { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0; justify-content: center; }
.about-badge { display: flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.6); border: 1px solid rgba(179,27,27,.15); border-radius: 40px; padding: .45rem 1rem; box-shadow: 0 3px 10px rgba(0,0,0,.03); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.about-badge:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(179,27,27,.15); border-color: var(--red-600); }
.about-badge i { color: var(--red-600); transition: transform .3s; }
.about-badge:hover i { transform: scale(1.2); }
.about-badge span { font-size: .78rem; font-weight: 600; }

/* ═══════ MISSION / VISION ═══════ */
.mv-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.mv-card { position: relative; background: white; border-radius: 28px; padding: 2rem 1.8rem 1.8rem; box-shadow: var(--shadow-md); border: 1px solid rgba(179,27,27,.08); transition: transform .3s var(--ease), box-shadow .3s var(--ease); overflow: hidden; }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; border-radius: 28px 28px 0 0; }
.mv-card.mission::before { background: linear-gradient(90deg, var(--red-600), var(--red-700)); }
.mv-card.vision::before { background: linear-gradient(90deg, var(--amber-600), var(--amber-700)); }
.mv-card:hover { transform: translateY(-6px); box-shadow: 0 25px 40px -12px rgba(179,27,27,.2); }
.mv-icon-wrap { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: transform .3s ease; }
.mv-card.mission .mv-icon-wrap { background: linear-gradient(135deg, var(--red-600), var(--red-700)); box-shadow: 0 8px 20px -5px rgba(179,27,27,.4); }
.mv-card.vision .mv-icon-wrap { background: linear-gradient(135deg, var(--amber-600), var(--amber-700)); box-shadow: 0 8px 20px -5px rgba(217,119,6,.4); }
.mv-card:hover .mv-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.mv-icon-wrap i { font-size: 1.5rem; color: white; }
.mv-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: .4rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.mv-card.mission h3 { color: var(--red-600); }
.mv-card.vision h3 { color: var(--amber-700); }
.mv-card h3 .mv-tag { font-size: .6rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: .2rem .6rem; border-radius: 40px; }
.mv-card.mission h3 .mv-tag { background: var(--red-50); color: var(--red-600); }
.mv-card.vision h3 .mv-tag { background: var(--amber-100); color: var(--amber-700); }
.mv-card p { line-height: 1.75; color: #444; font-size: .92rem; }
.mv-footer { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px dashed rgba(0,0,0,.08); display: flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 600; }
.mv-card.mission .mv-footer { color: var(--red-600); }
.mv-card.vision .mv-footer { color: var(--amber-700); }

/* ═══════ FOUNDER / SANTOSH ═══════ */
.founder-box { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 40px; padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid rgba(179,27,27,.1); }
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.founder-img-wrap { border-radius: 32px; overflow: hidden; box-shadow: 0 20px 35px -12px rgba(179,27,27,.25); max-width: 400px; width: 100%; aspect-ratio: 4/5; margin: 0 auto; border: 3px solid white; transition: transform .3s ease, box-shadow .3s ease; }
.founder-img-wrap:hover { transform: scale(1.03); box-shadow: 0 25px 45px -12px rgba(179,27,27,.35); }
.founder-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-quote { font-size: 1rem; font-style: italic; padding: 1.5rem; background: rgba(255,243,243,.8); border-left: 5px solid var(--red-600); border-radius: 0 24px 24px 0; margin: 1.2rem 0; }
.founder-quote i { color: var(--red-600); margin-right: .5rem; animation: swing 2s ease-in-out infinite; }
.tag-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.tag { background: rgba(179,27,27,.08); padding: .35rem .9rem; border-radius: 40px; font-size: .8rem; font-weight: 500; display: flex; align-items: center; gap: .4rem; transition: background .3s, color .3s; }
.tag:hover { background: var(--red-600); color: white; }
.tag:hover i { color: white; }
.tag i { color: var(--red-600); transition: color .3s; }
.info-panel { background: rgba(255,243,243,.6); border-radius: 24px; padding: 1.2rem; border: 1px solid rgba(179,27,27,.2); }
.info-panel-title { font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--red-600); font-weight: 600; margin-bottom: .6rem; }
.info-row { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: #333; margin-bottom: .5rem; }
.info-row:last-child { margin-bottom: 0; }
.info-row i { color: var(--red-600); width: 16px; flex-shrink: 0; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.exp-tag { background: #f9f0f0; border: 1px solid rgba(179,27,27,.3); padding: .25rem .8rem; border-radius: 40px; font-size: .78rem; color: #444; transition: background .3s, color .3s, border-color .3s; }
.exp-tag:hover { background: var(--red-600); color: white; border-color: var(--red-600); }
.exp-stats-box { background: linear-gradient(135deg, var(--red-600), var(--red-700)); border-radius: 24px; padding: 1.5rem; color: white; text-align: center; position: relative; overflow: hidden; }
.exp-stats-box::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,.1), transparent 60%); animation: rotate360 8s linear infinite; }
.exp-stats-box > * { position: relative; z-index: 1; }
.exp-stats-box .num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.exp-stats-box .lbl { font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; opacity: .85; margin-top: .3rem; }

/* ═══════ CARDS GRID ═══════ */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.card { background: white; border-radius: 28px; padding: 1.8rem; box-shadow: var(--shadow-md); border: 1px solid rgba(179,27,27,.08); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red-600), var(--red-700)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-6px); box-shadow: 0 25px 40px -12px rgba(179,27,27,.2); }
.card-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; display: flex; gap: .5rem; align-items: center; margin-bottom: .5rem; }
.card-title i { color: #c94545; transition: transform .3s ease; }
.card:hover .card-title i { transform: scale(1.2) rotate(-5deg); }
.card-sub { color: var(--gray-500); font-size: .85rem; margin-bottom: .6rem; font-weight: 600; }
.card p { font-size: .88rem; color: #444; line-height: 1.6; }

/* Brown cards for SGRCR */
.card.brown-card::before { background: linear-gradient(90deg, var(--brown-500), var(--brown-700)); }
.card.brown-card:hover { box-shadow: 0 25px 40px -12px rgba(139,90,43,.2); }
.card.brown-card .card-title i { color: var(--brown-500); }

/* ═══════ PUBLICATIONS ═══════ */
.press-box { background: white; border-radius: 36px; padding: 2.2rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-md); border: 1px solid rgba(179,27,27,.1); }
.press-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.press-cat-title { font-size: 1.2rem; color: var(--red-600); border-bottom: 2px dashed rgba(179,27,27,.25); padding-bottom: .5rem; margin-bottom: 1rem; display: flex; gap: .5rem; align-items: center; font-weight: 700; }
.press-cat-title i { animation: swing 2s ease-in-out infinite; }
.press-list li { background: #f9f4f4; margin-bottom: .6rem; border-radius: 60px; padding: .35rem .9rem .35rem .7rem; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; border-left: 4px solid var(--red-600); display: flex; align-items: center; }
.press-list li:hover { background: #fceaea; transform: translateX(8px); box-shadow: 0 5px 15px rgba(179,27,27,.15); }
.press-list a { color: #2c2c2c; display: flex; align-items: center; gap: .5rem; width: 100%; font-size: .85rem; }
.press-list a i { color: #c94545; transition: transform .3s ease; flex-shrink: 0; }
.press-list li:hover a i { transform: scale(1.2); }

/* ═══════ INTERNSHIP BANNER ═══════ */
.intern-banner { background: linear-gradient(135deg, var(--red-600), var(--red-800)); color: white; border-radius: 40px; padding: 3rem 1.5rem; text-align: center; margin: 3rem 0; position: relative; overflow: hidden; }
.intern-banner::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%); animation: rotate360 10s linear infinite; }
.intern-banner::after { content: ''; position: absolute; bottom: -30%; left: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 60%); border-radius: 50%; }
.intern-banner > * { position: relative; z-index: 1; }
.intern-icon-circle { width: 64px; height: 64px; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: .5rem; backdrop-filter: blur(8px); animation: iconFloat 3s ease-in-out infinite; }
.intern-icon-circle i { font-size: 1.8rem; color: white; }
.intern-label { color: #ffcfcf; margin-top: .5rem; font-size: .9rem; }
.intern-topic { font-size: 1.5rem; font-weight: 600; margin: .8rem 0; font-style: italic; }
.intern-desc { max-width: 650px; margin: 0 auto; font-size: .95rem; opacity: .9; }
.apply-link { display: inline-flex; align-items: center; gap: .5rem; background: white; color: var(--red-600); padding: .75rem 2rem; border-radius: 60px; font-weight: 700; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; margin-top: 1.2rem; font-size: .95rem; }
.apply-link:hover { background: #ffe1e1; transform: scale(1.05); box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.apply-link i { transition: transform .3s ease; }
.apply-link:hover i { transform: translateX(5px); }

/* Blue banner for IT solutions */
.intern-banner.blue-banner { background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); }
.intern-banner.blue-banner .intern-label { color: #bfdbfe; }

/* ═══════ ACCREDITATION CARDS ═══════ */
.accred-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.accred-card { background: white; border-radius: 28px; padding: 1.8rem; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,.06); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease; display: flex; gap: 1.2rem; align-items: flex-start; position: relative; overflow: hidden; }
.accred-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--emerald-600), var(--emerald-700)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.accred-card:hover::before { transform: scaleX(1); }
.accred-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -12px rgba(0,0,0,.1); border-color: rgba(5,150,105,.3); }
.accred-icon { width: 50px; height: 50px; border-radius: 16px; background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 20px -5px rgba(5,150,105,.4); transition: transform .3s ease; }
.accred-card:hover .accred-icon { transform: scale(1.1) rotate(-5deg); }
.accred-icon i { font-size: 1.3rem; color: white; }
.accred-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--emerald-700); margin-bottom: .3rem; }
.accred-card p { font-size: .85rem; color: #444; line-height: 1.6; }

/* ═══════ IT SOLUTIONS CARDS ═══════ */
.it-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.it-card { background: white; border-radius: 28px; padding: 1.8rem; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,.06); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease; position: relative; overflow: hidden; }
.it-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-600), var(--blue-700)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.it-card:hover::before { transform: scaleX(1); }
.it-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -12px rgba(0,0,0,.1); border-color: rgba(37,99,235,.3); }
.it-card-icon { width: 50px; height: 50px; border-radius: 16px; background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; box-shadow: 0 8px 20px -5px rgba(37,99,235,.4); transition: transform .3s ease; }
.it-card:hover .it-card-icon { transform: scale(1.1) rotate(-5deg); }
.it-card-icon i { font-size: 1.3rem; color: white; }
.it-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--blue-700); margin-bottom: .5rem; }
.it-card p { font-size: .85rem; color: #444; line-height: 1.6; }

/* ═══════ JOURNAL ═══════ */
.journal-box { background: white; border-radius: 36px; padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid rgba(179,27,27,.1); }
.journal-box.brown-border { border-color: rgba(139,90,43,.2); }
.journal-meta, .journal-meta-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin: 1.5rem 0; }
.journal-meta-item { text-align: center; padding: 1.2rem 1rem; background: #fff5f5; border-radius: 20px; border: 1px solid rgba(179,27,27,.1); transition: transform .3s, box-shadow .3s; }
.journal-meta-item:hover { transform: translateY(-4px); box-shadow: 0 12px 25px -8px rgba(179,27,27,.15); }
.journal-meta-item i { font-size: 1.6rem; color: var(--red-600); margin-bottom: .4rem; transition: transform .3s; }
.journal-meta-item:hover i { transform: scale(1.2); }
.journal-meta-item .label { font-size: .65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-500); margin-bottom: .2rem; }
.journal-meta-item .value { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: #1a1a1a; }

/* Brown journal meta for SGRCR */
.journal-meta-item.brown-meta { background: var(--brown-50); border-color: rgba(139,90,43,.15); }
.journal-meta-item.brown-meta i { color: var(--brown-500); }
.journal-meta-item.brown-meta:hover { box-shadow: 0 12px 25px -8px rgba(139,90,43,.15); }

/* ═══════ CERT / DORA ═══════ */
.cert-card { max-width: 900px; margin: 0 auto; text-align: center; background: white; border-radius: 28px; padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid rgba(179,27,27,.08); }
.cert-icon-circle { width: 56px; height: 56px; background: linear-gradient(135deg, var(--red-600), var(--red-700)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 8px 20px rgba(179,27,27,.3); animation: iconFloat 3s ease-in-out infinite; }
.cert-icon-circle i { font-size: 1.6rem; color: white; }
.cert-card h3 { color: var(--red-600); margin-bottom: .8rem; font-family: var(--font-head); font-size: 1.2rem; }
.cert-card p { font-size: .88rem; margin-bottom: .5rem; color: #333; }
.dora-card { max-width: 900px; margin: 1.5rem auto; text-align: left; line-height: 1.7; background: white; border-radius: 28px; padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid rgba(179,27,27,.08); }
.dora-icon-circle { width: 48px; height: 48px; background: #fff3f3; border: 1px solid rgba(179,27,27,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; animation: iconFloat 3s ease-in-out infinite; }
.dora-icon-circle i { font-size: 1.3rem; color: var(--red-600); }
.dora-icon-circle.emerald-icon { background: var(--emerald-50); border-color: rgba(5,150,105,.2); }
.dora-icon-circle.emerald-icon i { color: var(--emerald-600); }
.dora-card h3 { color: var(--red-600); margin-bottom: 1rem; font-family: var(--font-head); font-size: 1.2rem; text-align: center; }
.dora-card.emerald-card h3 { color: var(--emerald-700); }
.dora-card p { margin-bottom: .8rem; color: #333; font-size: .9rem; }
.dora-card p:last-child { margin-bottom: 0; }

/* ═══════ COMING SOON ═══════ */
.coming-soon-section { min-height: 50vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
.coming-soon-card { max-width: 650px; width: 100%; text-align: center; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 40px; padding: 3rem 2rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(179,27,27,.1); position: relative; overflow: hidden; }
.coming-soon-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--amber-600), var(--amber-700), var(--red-600)); }
.coming-soon-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--amber-600), var(--amber-700)); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 12px 30px -6px rgba(217,119,6,.4); animation: iconFloat 3s ease-in-out infinite; }
.coming-soon-icon i { font-size: 2.5rem; color: white; }
.coming-soon-badge { display: inline-block; background: linear-gradient(135deg, var(--amber-600), var(--amber-700)); color: white; padding: .45rem 1.5rem; border-radius: 40px; font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.2rem; animation: badgePulse 1.5s ease-in-out infinite; }
.coming-soon-title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: #1a1a1a; margin-bottom: .8rem; }
.coming-soon-desc { font-size: 1rem; line-height: 1.75; color: #555; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.coming-soon-features { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 2rem 0; text-align: left; }
.coming-soon-feature { display: flex; align-items: center; gap: .7rem; font-size: .85rem; color: #444; }
.coming-soon-feature i { color: var(--amber-600); font-size: 1rem; flex-shrink: 0; }
.coming-soon-notify { margin-top: 1.5rem; }
.coming-soon-notify input { border: 1.5px solid var(--gray-200); border-radius: 60px; padding: .75rem 1.4rem; font-size: .88rem; width: 100%; max-width: 300px; outline: none; font-family: var(--font-body); transition: border-color .2s, box-shadow .2s; }
.coming-soon-notify input:focus { border-color: var(--amber-600); box-shadow: 0 0 0 3px rgba(217,119,6,.15); }
.coming-soon-notify button { margin-top: 1rem; background: linear-gradient(135deg, var(--amber-600), var(--amber-700)); color: white; padding: .75rem 2.2rem; border-radius: 60px; font-weight: 600; font-size: .88rem; border: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 10px 22px -6px rgba(217,119,6,.4); font-family: var(--font-body); display: inline-flex; align-items: center; gap: .5rem; }
.coming-soon-notify button:hover { transform: translateY(-3px); box-shadow: 0 15px 28px -6px rgba(217,119,6,.5); }
.notify-msg { margin-top: 1rem; font-size: .82rem; color: var(--emerald-600); font-weight: 600; display: none; }
.notify-msg.show { display: block; animation: fadeInUp .3s ease; }
.coming-soon-links { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px dashed rgba(0,0,0,.08); }
.coming-soon-links p { font-size: .82rem; color: #999; margin-bottom: .8rem; }
.coming-soon-links .links-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.coming-soon-links .links-row a { font-size: .82rem; padding: .5rem 1.2rem; }

/* ═══════ CONTACT ═══════ */
.contact-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.contact-card { background: white; padding: 2rem 1.5rem; border-radius: 32px; text-align: center; box-shadow: var(--shadow-md); border: 1px solid rgba(179,27,27,.12); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.contact-card:hover { border-color: var(--red-600); transform: translateY(-5px); box-shadow: 0 20px 35px -12px rgba(179,27,27,.15); }
.contact-card i { font-size: 2.2rem; color: #c94545; margin-bottom: .8rem; transition: transform .3s ease; }
.contact-card:hover i { transform: scale(1.2); }
.contact-card h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: .3rem; }
.contact-card a { color: #333; font-weight: 500; font-size: .88rem; }
.social-links { display: flex; gap: .8rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.social-icon { width: 44px; height: 44px; border-radius: 60px; background: #f0f0f0; display: flex; align-items: center; justify-content: center; color: #c94545; transition: transform .3s ease, background .3s ease, box-shadow .3s ease; font-size: 1.05rem; }
.social-icon:hover { background: var(--red-600); transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 20px rgba(179,27,27,.3); }
.social-icon:hover i { color: white; }
.social-icon i { transition: color .3s ease; }

/* ═══════ FOOTER ═══════ */
footer { background: linear-gradient(180deg, #131313, #0a0a0a); color: #fff; padding: 4rem 1.5rem 2rem; border-radius: 40px 40px 0 0; margin-top: 4rem; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red-600), transparent); }
footer::after { content: ''; position: absolute; bottom: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(179,27,27,.08), transparent 70%); border-radius: 50%; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; position: relative; z-index: 1; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand-icon { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.2); transition: transform .3s ease; }
.footer-brand-icon img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-icon:hover { transform: scale(1.08) rotate(5deg); filter: drop-shadow(0 6px 12px rgba(179,27,27,.4)); }
.footer-brand-text { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; }
.footer-desc { color: #aaa; margin-top: .8rem; font-size: .88rem; }
.footer-col-title { color: var(--red-600); font-size: 1.05rem; margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem; font-weight: 600; }
.footer-col-title::before { content: ''; width: 4px; height: 18px; background: var(--red-600); border-radius: 2px; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #aaa; display: flex; align-items: center; gap: .4rem; transition: color .2s ease, transform .2s ease; font-size: .88rem; }
.footer-links a i { color: #c94545; transition: transform .3s ease; font-size: .7rem; }
.footer-links a:hover { color: var(--red-600); transform: translateX(5px); }
.footer-links a:hover i { transform: scale(1.2); }
.footer-contact-row { display: flex; gap: .6rem; align-items: center; margin-bottom: .6rem; color: #aaa; font-size: .88rem; transition: color .3s ease; }
.footer-contact-row:hover { color: #fff; }
.footer-contact-row i { color: #c94545; width: 18px; flex-shrink: 0; }
.footer-contact-row a { color: inherit; transition: color .3s ease; }
.footer-contact-row a:hover { color: var(--red-600); }
.footer-copy { text-align: center; padding-top: 2.5rem; margin-top: 2.5rem; border-top: 1px solid #333; color: #777; font-size: .82rem; }

/* ═══════ CHATBOT ═══════ */
.copilot-fab { position: fixed; bottom: 20px; right: 20px; z-index: 10001; width: 56px; height: 56px; background: linear-gradient(145deg, var(--red-600), var(--red-700)); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 10px 20px rgba(179,27,27,.4); transition: transform .25s ease, box-shadow .25s ease; border: 1px solid rgba(255,255,255,.2); }
.copilot-fab::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--red-600); opacity: 0; animation: ringPulse 2s ease-out infinite; }
.copilot-fab:hover { transform: scale(1.08); box-shadow: 0 15px 25px rgba(179,27,27,.5); }
.copilot-fab i { font-size: 1.5rem; color: white; }
.copilot-window { position: fixed; bottom: 85px; right: 16px; width: 320px; max-width: calc(100vw - 32px); background: #fff; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,.25); z-index: 10002; display: none; flex-direction: column; overflow: hidden; border: 1px solid rgba(179,27,27,.2); font-family: var(--font-body); }
.copilot-window.open { display: flex; animation: fadeSlideUp .2s ease; }
.copilot-header { background: linear-gradient(135deg, var(--red-600), var(--red-700)); color: white; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; }
.copilot-header h4 { font-size: 1rem; font-weight: 600; display: flex; gap: 8px; align-items: center; margin: 0; }
.copilot-header h4 i { animation: iconSpin 4s linear infinite; }
.close-copilot { background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; opacity: .8; transition: opacity .2s, transform .2s; }
.close-copilot:hover { opacity: 1; transform: rotate(90deg); }
.copilot-messages { height: 300px; overflow-y: auto; padding: 14px; background: #fefcf8; display: flex; flex-direction: column; gap: 10px; }
.message { display: flex; gap: 8px; align-items: flex-start; animation: msgPop .2s ease; }
.bot-msg { justify-content: flex-start; }
.user-msg { justify-content: flex-end; }
.avatar-bot { width: 28px; height: 28px; background: var(--red-600); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; flex-shrink: 0; }
.bubble { max-width: 80%; padding: 8px 12px; border-radius: 18px; font-size: .82rem; line-height: 1.4; }
.bot-msg .bubble { background: #f0e9e9; color: #1f1f1f; border-bottom-left-radius: 4px; }
.user-msg .bubble { background: var(--red-600); color: white; border-bottom-right-radius: 4px; }
.copilot-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 12px; background: #fffbf5; border-top: 1px solid #ede3e3; }
.quick-chip { background: #f3ecec; padding: 4px 12px; border-radius: 40px; font-size: .68rem; font-weight: 500; cursor: pointer; transition: background .2s, color .2s, transform .2s; color: var(--red-600); }
.quick-chip:hover { background: var(--red-600); color: white; transform: translateY(-2px); }
.copilot-input { display: flex; padding: 10px; background: white; gap: 6px; border-top: 1px solid #efefef; }
.copilot-input input { flex: 1; border: 1px solid #ddd; border-radius: 60px; padding: 8px 12px; font-size: .82rem; outline: none; font-family: var(--font-body); }
.copilot-input input:focus { border-color: var(--red-600); box-shadow: 0 0 0 2px rgba(179,27,27,.2); }
.copilot-input button { background: var(--red-600); border: none; color: white; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; transition: background .2s, transform .2s; flex-shrink: 0; }
.copilot-input button:hover { background: var(--red-700); transform: scale(.94); }

/* ═══════ RESPONSIVE: TABLET (481px+) ═══════ */
@media (min-width: 481px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .stat-number { font-size: 2.5rem; }
  .coming-soon-features { grid-template-columns: 1fr 1fr; }
  .coming-soon-card { padding: 3rem 2.5rem; }
  .cookie-text { font-size: .88rem; }
  .hero-sub { font-size: 1.1rem; }
  .section-title { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .page-hero p { font-size: 1.1rem; }
  .nav-logo-text { font-size: 1.4rem; }
  .nav-logo-icon { width: 52px; height: 52px; }
  .main-content { padding: 4rem 2rem; }
  .about-box, .founder-box { padding: 2.5rem; }
  .press-box { padding: 2.5rem; }
  .journal-box { padding: 2.5rem; }
}

/* ═══════ RESPONSIVE: DESKTOP (768px+) ═══════ */
@media (min-width: 768px) {
  .nav-links { display: flex; gap: 1.5rem; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .hero-title { font-size: 3.5rem; }
  .hero-sub { font-size: 1.15rem; }
  .section-title { font-size: 2.5rem; }
  .section { margin-bottom: 7rem; }
  .main-content { padding: 5rem 2rem; }
  .stats-grid { grid-template-columns: repeat(4,1fr); gap: 2.5rem; }
  .stat-number { font-size: 3rem; }
  .mv-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .founder-grid { grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; }
  .founder-img-wrap { max-width: 380px; }
  .cards-grid { grid-template-columns: repeat(2,1fr); gap: 1.8rem; }
  .press-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .accred-grid { grid-template-columns: repeat(2,1fr); gap: 1.8rem; }
  .it-grid { grid-template-columns: repeat(2,1fr); gap: 1.8rem; }
  .contact-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .journal-meta, .journal-meta-grid { grid-template-columns: repeat(2,1fr); }
  .journal-meta-item .value { font-size: 1.05rem; }
  .about-box, .founder-box { padding: 3rem; border-radius: 44px; }
  .press-box { padding: 2.8rem; }
  .journal-box { padding: 2.8rem; }
  .footer-inner { grid-template-columns: repeat(3,1fr); gap: 3rem; }
  .page-hero { padding: 90px 2rem 55px; }
  .page-hero h1 { font-size: 2.8rem; }
  .page-hero-icon { width: 76px; height: 76px; }
  .page-hero-icon i { font-size: 2.3rem; }
  .intern-banner { padding: 3.5rem 2rem; }
  .intern-topic { font-size: 1.7rem; }
  .coming-soon-card { padding: 3.5rem 3rem; }
  .coming-soon-title { font-size: 2rem; }
  .copilot-fab { width: 60px; height: 60px; bottom: 24px; right: 24px; }
  .copilot-fab i { font-size: 1.7rem; }
  .copilot-window { width: 340px; bottom: 95px; right: 24px; }
  .copilot-messages { height: 320px; }
  #cookie-banner { bottom: 24px; left: 24px; right: 24px; padding: 1.25rem 1.75rem; }
}

/* ═══════ RESPONSIVE: WIDE (1024px+) ═══════ */
@media (min-width: 1024px) {
  .nav-links { gap: 1.8rem; }
  .nav-links a { font-size: .9rem; }
  .nav-logo-text { font-size: 1.5rem; }
  .nav-logo-icon { width: 55px; height: 55px; }
  #hero { min-height: 90vh; padding: 140px 2rem 80px; }
  .hero-title { font-size: 5rem; }
  .hero-sub { font-size: 1.2rem; max-width: 650px; }
  .hero-cta { gap: 1.5rem; }
  .section { margin-bottom: 8rem; }
  .section-title { font-size: 3.2rem; }
  .section-header { margin-bottom: 4rem; }
  .main-content { padding: 5rem 2rem; max-width: 1400px; }
  .stats-section { border-radius: 80px 20px 80px 20px; padding: 4.5rem 2rem; margin: 5rem 0; }
  .stats-grid { gap: 3rem; }
  .stat-number { font-size: 3.8rem; }
  .about-box, .founder-box { padding: 3.2rem; border-radius: 48px; }
  .mv-grid { gap: 2rem; }
  .mv-card { padding: 2.5rem 2rem 2rem; }
  .mv-icon-wrap { width: 64px; height: 64px; }
  .mv-icon-wrap i { font-size: 1.8rem; }
  .mv-card h3 { font-size: 1.4rem; }
  .founder-grid { gap: 2.8rem; }
  .founder-img-wrap { max-width: 440px; }
  .founder-quote { font-size: 1.1rem; padding: 1.8rem; }
  .cards-grid { grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 2.2rem; }
  .card { padding: 2.2rem; border-radius: 32px; }
  .card-title { font-size: 1.3rem; }
  .press-box { padding: 2.8rem; border-radius: 40px; }
  .press-grid { gap: 2.8rem; }
  .press-cat-title { font-size: 1.3rem; }
  .accred-grid { gap: 2rem; }
  .accred-card { padding: 2.2rem; border-radius: 32px; }
  .accred-icon { width: 56px; height: 56px; }
  .accred-icon i { font-size: 1.5rem; }
  .accred-card h3 { font-size: 1.2rem; }
  .it-grid { gap: 2rem; }
  .it-card { padding: 2.2rem; border-radius: 32px; }
  .it-card-icon { width: 56px; height: 56px; }
  .it-card-icon i { font-size: 1.5rem; }
  .it-card h3 { font-size: 1.2rem; }
  .journal-box { padding: 3rem; border-radius: 40px; }
  .journal-meta, .journal-meta-grid { grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
  .journal-meta-item { padding: 1.5rem 1rem; }
  .journal-meta-item i { font-size: 1.8rem; }
  .journal-meta-item .value { font-size: 1.1rem; }
  .cert-card { padding: 2.2rem; border-radius: 32px; }
  .cert-card h3 { font-size: 1.3rem; }
  .cert-icon-circle { width: 64px; height: 64px; }
  .cert-icon-circle i { font-size: 1.8rem; }
  .dora-card { padding: 2.2rem; border-radius: 32px; }
  .dora-card h3 { font-size: 1.3rem; }
  .dora-icon-circle { width: 56px; height: 56px; }
  .dora-icon-circle i { font-size: 1.5rem; }
  .contact-grid { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 2.2rem; }
  .contact-card { padding: 2.8rem 1.8rem; border-radius: 40px; }
  .contact-card i { font-size: 2.5rem; }
  .social-icon { width: 48px; height: 48px; font-size: 1.1rem; }
  .intern-banner { border-radius: 48px; padding: 3.8rem 2rem; margin: 4rem 0; }
  .intern-topic { font-size: 1.8rem; }
  .intern-icon-circle { width: 72px; height: 72px; }
  .intern-icon-circle i { font-size: 2rem; }
  .coming-soon-card { max-width: 700px; padding: 4rem 3rem; border-radius: 48px; }
  .coming-soon-icon { width: 100px; height: 100px; }
  .coming-soon-icon i { font-size: 3rem; }
  .coming-soon-title { font-size: 2.2rem; }
  .coming-soon-desc { font-size: 1.05rem; }
  footer { padding: 4.5rem 2rem 2rem; border-radius: 48px 48px 0 0; }
  .footer-inner { gap: 3.5rem; }
  .footer-brand-icon { width: 56px; height: 56px; }
  .footer-brand-text { font-size: 1.4rem; }
  .footer-copy { padding-top: 3rem; margin-top: 3rem; font-size: .85rem; }
  .copilot-window { width: 360px; }
  .copilot-messages { height: 340px; }
}

/* ═══════ RESPONSIVE: MOBILE (max-width 480px) ═══════ */
@media (max-width: 480px) {
  #navbar { padding: .5rem .8rem; }
  .nav-logo-icon { width: 42px; height: 42px; }
  .nav-logo-text { font-size: 1.15rem; }
  .menu-toggle { font-size: 1.3rem; }
  #hero { min-height: 80vh; padding: 100px 1rem 50px; }
  .hero-badge { padding: .35rem .9rem; }
  .hero-badge span { font-size: .65rem; letter-spacing: 2px; }
  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: .95rem; margin: 1rem auto 1.5rem; }
  .hero-cta { flex-direction: column; gap: .8rem; width: 100%; max-width: 280px; margin: 0 auto; }
  .btn { width: 100%; justify-content: center; padding: .8rem 1.5rem; font-size: .9rem; }
  .page-hero { padding: 70px 1rem 40px; }
  .page-hero-icon { width: 64px; height: 64px; }
  .page-hero-icon i { font-size: 1.8rem; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero p { font-size: .95rem; }
  .main-content { padding: 3rem 1rem; }
  .section { margin-bottom: 4rem; }
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: 1.6rem; }
  .section-title::after { width: 60px; height: 3px; bottom: -8px; }
  .section-badge { font-size: .65rem; letter-spacing: 3px; padding: .25rem .9rem; }
  .section-sub { font-size: .88rem; }
  .stats-section { padding: 2.5rem 1rem; border-radius: 32px; margin: 2.5rem 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: .72rem; letter-spacing: 1px; }
  .about-box, .founder-box { padding: 1.5rem; border-radius: 24px; }
  .about-lead { font-size: .88rem; line-height: 1.7; }
  .about-badges { gap: .5rem; }
  .about-badge { padding: .35rem .7rem; }
  .about-badge span { font-size: .7rem; }
  .mv-card { padding: 1.5rem 1.2rem 1.2rem; border-radius: 22px; }
  .mv-icon-wrap { width: 48px; height: 48px; }
  .mv-icon-wrap i { font-size: 1.3rem; }
  .mv-card h3 { font-size: 1.1rem; }
  .mv-card p { font-size: .85rem; }
  .mv-footer { font-size: .72rem; }
  .founder-grid { gap: 1.5rem; }
  .founder-img-wrap { max-width: 280px; border-radius: 24px; }
  .founder-quote { font-size: .9rem; padding: 1.2rem; }
  .tag { font-size: .75rem; padding: .3rem .7rem; }
  .info-panel { padding: 1rem; border-radius: 20px; }
  .info-row { font-size: .8rem; }
  .exp-stats-box { padding: 1.2rem; }
  .exp-stats-box .num { font-size: 2rem; }
  .exp-stats-box .lbl { font-size: .68rem; }
  .exp-tag { font-size: .72rem; padding: .2rem .6rem; }
  .card { padding: 1.4rem; border-radius: 22px; }
  .card-title { font-size: 1.05rem; }
  .card-sub { font-size: .8rem; }
  .card p { font-size: .82rem; }
  .press-box { padding: 1.5rem; border-radius: 24px; margin-bottom: 1rem; }
  .press-cat-title { font-size: 1.05rem; }
  .press-list a { font-size: .8rem; }
  .press-list li { padding: .3rem .7rem .3rem .5rem; }
  .intern-banner { border-radius: 24px; padding: 2rem 1rem; margin: 2rem 0; }
  .intern-icon-circle { width: 52px; height: 52px; }
  .intern-icon-circle i { font-size: 1.5rem; }
  .intern-topic { font-size: 1.2rem; }
  .intern-desc { font-size: .88rem; }
  .apply-link { padding: .6rem 1.5rem; font-size: .88rem; }
  .accred-card { padding: 1.4rem; border-radius: 22px; flex-direction: column; gap: .8rem; }
  .accred-icon { width: 44px; height: 44px; }
  .accred-icon i { font-size: 1.2rem; }
  .accred-card h3 { font-size: 1rem; }
  .accred-card p { font-size: .8rem; }
  .it-card { padding: 1.4rem; border-radius: 22px; }
  .it-card-icon { width: 44px; height: 44px; }
  .it-card-icon i { font-size: 1.2rem; }
  .it-card h3 { font-size: 1rem; }
  .it-card p { font-size: .8rem; }
  .journal-box { padding: 1.5rem; border-radius: 24px; }
  .journal-meta-item { padding: 1rem .8rem; }
  .journal-meta-item i { font-size: 1.4rem; }
  .journal-meta-item .value { font-size: .9rem; }
  .cert-card { padding: 1.5rem; border-radius: 24px; }
  .cert-icon-circle { width: 48px; height: 48px; }
  .cert-icon-circle i { font-size: 1.4rem; }
  .cert-card h3 { font-size: 1.1rem; }
  .cert-card p { font-size: .82rem; }
  .dora-card { padding: 1.5rem; border-radius: 24px; }
  .dora-icon-circle { width: 44px; height: 44px; }
  .dora-icon-circle i { font-size: 1.2rem; }
  .dora-card h3 { font-size: 1.1rem; }
  .dora-card p { font-size: .85rem; }
  .coming-soon-card { padding: 2rem 1.2rem; border-radius: 28px; }
  .coming-soon-icon { width: 64px; height: 64px; }
  .coming-soon-icon i { font-size: 2rem; }
  .coming-soon-title { font-size: 1.4rem; }
  .coming-soon-desc { font-size: .9rem; }
  .coming-soon-feature { font-size: .8rem; }
  .coming-soon-notify input { max-width: 100%; font-size: .82rem; }
  .coming-soon-notify button { padding: .6rem 1.5rem; font-size: .82rem; }
  .contact-card { padding: 1.5rem 1.2rem; border-radius: 28px; }
  .contact-card i { font-size: 2rem; }
  .contact-card h3 { font-size: 1rem; }
  .social-icon { width: 40px; height: 40px; font-size: .95rem; }
  footer { padding: 3rem 1rem 1.5rem; border-radius: 28px 28px 0 0; margin-top: 3rem; }
  .footer-inner { gap: 2rem; }
  .footer-brand-icon { width: 44px; height: 44px; }
  .footer-brand-text { font-size: 1.2rem; }
  .footer-desc { font-size: .82rem; }
  .footer-col-title { font-size: 1rem; }
  .footer-links a { font-size: .82rem; }
  .footer-contact-row { font-size: .82rem; }
  .footer-copy { font-size: .78rem; padding-top: 2rem; margin-top: 2rem; }
  #cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: .8rem 1rem; border-radius: 24px; }
  .cookie-content { gap: .6rem; }
  .cookie-icon { width: 36px; height: 36px; font-size: .95rem; }
  .cookie-text { font-size: .75rem; }
  .cookie-btn { padding: .35rem .8rem; font-size: .75rem; }
  .copilot-fab { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .copilot-fab i { font-size: 1.3rem; }
  .copilot-window { width: calc(100vw - 24px); bottom: 75px; right: 12px; border-radius: 20px; }
  .copilot-messages { height: 260px; padding: 12px; }
  .bubble { font-size: .78rem; max-width: 85%; }
  .copilot-input input { font-size: .78rem; }
}

/* ═══════ RESPONSIVE: VERY SMALL (max-width 360px) ═══════ */
@media (max-width: 360px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.4rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .nav-logo-text { font-size: 1.05rem; }
  .nav-logo-icon { width: 38px; height: 38px; }
  .btn { font-size: .82rem; padding: .7rem 1.2rem; }
  .hero-cta { max-width: 240px; }
  .coming-soon-title { font-size: 1.2rem; }
  .intern-topic { font-size: 1rem; }
}
