/* ==========================================================
   RJGUIDELINE — हिंदी टेक्नोलॉजी ब्लॉग
   Modern, bold, gradient-rich design system
   ========================================================== */

:root {
  --bg: #0a0613;
  --bg-2: #110a1f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4ecff;
  --text-dim: #b9b0c9;
  --text-mute: #8a819a;

  --pink: #ff3d8b;
  --orange: #ff8a3d;
  --purple: #7b5cff;
  --cyan: #3dc8ff;
  --green: #19d39d;
  --yellow: #ffb13d;

  --grad-primary: linear-gradient(135deg, #ff3d8b 0%, #7b5cff 100%);
  --grad-warm: linear-gradient(135deg, #ff3d8b 0%, #ff8a3d 100%);
  --grad-cool: linear-gradient(135deg, #7b5cff 0%, #3dc8ff 100%);
  --grad-fresh: linear-gradient(135deg, #19d39d 0%, #3dc8ff 100%);

  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 80px rgba(123, 92, 255, 0.25);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  --font-hi: "Noto Sans Devanagari", "Hind", system-ui, sans-serif;
  --font-en: "Poppins", "Noto Sans Devanagari", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-hi);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ---------- Background orbs ---------- */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.orb-1 {
  width: 520px; height: 520px;
  background: #ff3d8b;
  top: -180px; left: -160px;
}
.orb-2 {
  width: 480px; height: 480px;
  background: #7b5cff;
  top: 35%; right: -180px;
  animation-delay: -4s;
}
.orb-3 {
  width: 440px; height: 440px;
  background: #3dc8ff;
  bottom: -160px; left: 30%;
  animation-delay: -8s;
  opacity: 0.4;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.97); }
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 61, 139, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 61, 139, 0.5);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: backdrop-filter 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 6, 19, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.logo-mark {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: var(--grad-primary);
  border-radius: 12px;
  font-size: 1.05rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.4);
}
.logo-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.15rem;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.94rem;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-cta { font-size: 0.88rem; padding: 10px 22px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 60px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-dim);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.badge .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(25, 211, 157, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(25, 211, 157, 0); }
}
.hero-title {
  font-family: var(--font-hi);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num, .stat-plus {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-plus {
  display: inline-block;
  margin-left: 2px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-top: 6px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-card-main {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 61, 139, 0.4), rgba(123, 92, 255, 0.4));
  box-shadow: var(--shadow-lg);
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  50% { transform: translateY(-12px); }
}
.hero-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 61, 139, 0.6), rgba(123, 92, 255, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.hero-card-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}
.floating-tag {
  position: absolute;
  background: rgba(20, 12, 35, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatY 5s ease-in-out infinite;
}
.floating-tag strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}
.floating-tag small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-mute);
}
.floating-tag .tag-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.tag-1 {
  top: 24px; left: -30px;
  animation-delay: 0s;
}
.tag-2 {
  bottom: 80px; right: -30px;
  animation-delay: -2s;
}
.tag-2 .tag-icon { background: var(--grad-cool); }
.tag-3 {
  bottom: -10px; left: 30px;
  animation-delay: -4s;
}
.tag-3 .tag-icon { background: var(--grad-fresh); }

/* Marquee */
.marquee {
  margin-top: 70px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.marquee-track {
  display: flex;
  gap: 36px;
  align-items: center;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(90deg, #ff3d8b, #7b5cff, #3dc8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section heads ---------- */
section { padding: 90px 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 61, 139, 0.12);
  color: var(--pink);
  border: 1px solid rgba(255, 61, 139, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-hi);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--grad-primary);
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge span {
  display: block;
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge small {
  font-size: 0.82rem;
  opacity: 0.95;
}
.about-text p {
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 18px;
}
.about-text strong {
  color: var(--text);
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.point {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.point:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 61, 139, 0.3);
}
.point-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 61, 139, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.point h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.point p {
  font-size: 0.88rem !important;
  color: var(--text-mute) !important;
  margin: 0 !important;
}

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
.cat-card {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--g1, #ff3d8b), var(--g2, #7b5cff));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
}
.cat-card:hover::before { opacity: 0.18; }
.cat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.cat-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cat-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.cat-arrow {
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.cat-card:hover .cat-arrow {
  background: var(--grad-primary);
  transform: translateX(4px);
}

/* ---------- Features ---------- */
.features {
  background:
    radial-gradient(ellipse at top, rgba(123, 92, 255, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.015);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.feat-card {
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}
.feat-card:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
}
.feat-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 61, 139, 0.15), rgba(123, 92, 255, 0.15));
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.feat-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat-card p {
  color: var(--text-dim);
  font-size: 0.94rem;
}

/* ---------- Latest Articles ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 61, 139, 0.3);
}
.article-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.article-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.article-card:hover .article-img img {
  transform: scale(1.06);
}
.article-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.chip {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 61, 139, 0.15);
  color: var(--pink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
  align-self: flex-start;
}
.chip-purple {
  background: rgba(123, 92, 255, 0.15);
  color: var(--purple);
}
.chip-green {
  background: rgba(25, 211, 157, 0.15);
  color: var(--green);
}
.chip-pink {
  background: rgba(255, 138, 61, 0.15);
  color: var(--orange);
}
.chip-orange {
  background: rgba(255, 177, 61, 0.15);
  color: var(--yellow);
}
.article-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.article-card p {
  color: var(--text-dim);
  font-size: 0.93rem;
  margin-bottom: 16px;
  flex: 1;
}
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-mute);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.latest-cta {
  text-align: center;
  margin-top: 50px;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testi-card {
  padding: 30px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 10px; left: 22px;
  font-family: serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 61, 139, 0.3);
}
.testi-card p {
  color: var(--text-dim);
  font-size: 0.98rem;
  margin: 14px 0 22px;
  line-height: 1.7;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.95rem;
}
.testi-user strong {
  display: block;
  font-size: 0.96rem;
}
.testi-user small {
  color: var(--text-mute);
  font-size: 0.82rem;
}

/* ---------- Contact ---------- */
.contact {
  padding-bottom: 100px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px;
  background: linear-gradient(135deg, rgba(255, 61, 139, 0.08), rgba(123, 92, 255, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 61, 139, 0.15), transparent 70%);
  pointer-events: none;
}
.contact-text h2 { margin-bottom: 14px; }
.contact-text p {
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 22px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  color: var(--text-dim);
  font-size: 0.98rem;
}
.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: rgba(10, 6, 19, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.form-row input,
.form-row select {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s ease, background 0.3s ease;
  font-family: var(--font-hi);
}
.form-row input::placeholder { color: var(--text-mute); }
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255, 61, 139, 0.06);
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%23b9b0c9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row select option {
  background: var(--bg-2);
  color: var(--text);
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-mute);
  text-align: center;
  margin-top: 4px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 70px 0 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 18px 0 24px;
  max-width: 380px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.socials a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-3px);
}
.footer h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: var(--text-dim);
  font-size: 0.92rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer ul li a:hover {
  color: var(--pink);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { padding: 50px 0 40px; }
  .hero-grid,
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner { padding: 36px 28px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .about-points { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .hero-card { max-width: 420px; }
  .tag-1 { left: -10px; }
  .tag-2 { right: -10px; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: rgba(10, 6, 19, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 16px;
    text-align: center;
  }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-stats { gap: 24px; }
  .stat-num, .stat-plus { font-size: 1.8rem; }
  .about-badge {
    bottom: 16px;
    right: 12px;
    padding: 16px 22px;
  }
  .about-badge span { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .floating-tag { display: none; }
}