/* =========================================================
   Let's Redefine Private Limited — Main Stylesheet
   ========================================================= */

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

/* ── CSS Variables ── */
:root {
  --navy:        #1B3A6B;
  --navy-light:  #2A5298;
  --burgundy:    #8B2252;
  --burg-light:  #B33070;
  --bg:          #FAFAF9;
  --bg-alt:      #F0F3FA;
  --bg-dark:     #0F2347;
  --surface:     #FFFFFF;
  --text:        #1a1a2e;
  --text-muted:  #556080;
  --text-light:  #8090B0;
  --border:      #DDE3F0;
  --grad:        linear-gradient(135deg, var(--navy), var(--burgundy));
  --radius:      16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:   0 8px 32px rgba(27,58,107,0.10);
  --shadow-lg:   0 20px 60px rgba(27,58,107,0.15);
  --max-w:       1280px;
  --font-body:   'DM Sans', sans-serif;
  --font-display:'Playfair Display', serif;
  --transition:  0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 8px; font-weight: 600;
  font-size: 15px; font-family: var(--font-body);
  transition: var(--transition); cursor: pointer; border: none;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 16px rgba(27,58,107,0.25);
}
.btn--primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn--outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border);
}
.btn--outline:hover { border-color: var(--navy); background: var(--bg-alt); }
.btn--outline-light {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }

/* ── Section Label ── */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--burgundy);
  text-transform: uppercase; margin-bottom: 16px;
}
.section-label--light { color: rgba(200,215,240,0.6); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--text); line-height: 1.15; margin-bottom: 20px;
}
.section-heading--light { color: #EEF2FC; }
.section-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.8; max-width: 560px; margin-bottom: 64px;
}
.section-sub--light { color: rgba(200,215,240,0.65); }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(250,250,249,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 700; color: var(--navy);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition); white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--grad); color: #fff !important;
  padding: 10px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: opacity var(--transition) !important;
}
.nav-cta:hover { opacity: 0.85 !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  background: rgba(250,250,249,0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 32px; font-size: 16px; font-weight: 500;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: var(--navy); background: var(--bg-alt); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  min-height: 100vh; background: var(--bg);
  display: flex; align-items: center; position: relative;
  overflow: hidden; padding-top: 72px;
}
.hero-bg-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-bg-blob--1 {
  top: -200px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27,58,107,0.09) 0%, transparent 70%);
}
.hero-bg-blob--2 {
  bottom: -100px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,34,82,0.07) 0%, transparent 70%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
  background-image: linear-gradient(var(--navy) 1px, transparent 1px),
                    linear-gradient(90deg, var(--navy) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px 32px; width: 100%; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,58,107,0.08); border: 1px solid rgba(27,58,107,0.15);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--navy);
  letter-spacing: 0.04em; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad); flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 66px);
  line-height: 1.1; margin-bottom: 24px; color: var(--text);
}
.hero-sub {
  font-size: 18px; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 44px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 32px;
  font-weight: 700; color: var(--navy);
}
.hero-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-orbit {
  width: 420px; height: 420px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(27,58,107,0.18);
}
.hero-orbit-ring--1 { width: 280px; height: 280px; }
.hero-orbit-ring--2 { width: 380px; height: 380px; }
.hero-center-orb {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 80px rgba(27,58,107,0.25), 0 0 40px rgba(139,34,82,0.15);
  position: relative; z-index: 2;
}
.hero-center-orb-inner {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: #fff; text-align: center; line-height: 1.1;
}
.hero-orbit-dot {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: var(--shadow-sm);
  animation: orbit-float 3s ease-in-out infinite;
}
.hero-orbit-dot:nth-child(2) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hero-orbit-dot:nth-child(3) { right: 0; top: 50%; transform: translateY(-50%); animation-delay: 0.6s; }
.hero-orbit-dot:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; }
.hero-orbit-dot:nth-child(5) { left: 0; top: 50%; transform: translateY(-50%); animation-delay: 1.8s; }
.hero-orbit-dot:nth-child(6) { top: 14%; right: 14%; animation-delay: 2.4s; }

@keyframes orbit-float {
  0%, 100% { box-shadow: 0 4px 12px rgba(27,58,107,0.12); }
  50% { box-shadow: 0 8px 24px rgba(27,58,107,0.22); transform: translateY(calc(var(--ty,0px) - 4px)); }
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.service-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 36px 32px; border: 1px solid var(--border);
  transition: all var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(27,58,107,0.25); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(27,58,107,0.10), rgba(139,34,82,0.07));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-bottom: 20px;
}
.service-short {
  font-size: 11px; font-weight: 700; color: var(--burgundy);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.service-title { font-size: 21px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.25; }
.service-desc { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 24px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 12px; font-weight: 600; color: var(--navy);
  background: rgba(27,58,107,0.06); border-radius: 100px; padding: 4px 12px;
}

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 64px;
}
.product-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all var(--transition); text-decoration: none;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(27,58,107,0.25); }
.product-card-top {
  padding: 48px 36px 36px;
  background: linear-gradient(135deg, rgba(27,58,107,0.06), rgba(139,34,82,0.04));
  position: relative; overflow: hidden; flex: 1;
}
.product-card-number {
  font-family: var(--font-display); font-size: 72px; font-weight: 700;
  color: rgba(27,58,107,0.06); position: absolute; top: 16px; right: 24px;
  line-height: 1; user-select: none;
}
.product-icon-badge {
  width: 75px; height: 75px; border-radius: 18px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(27,58,107,0.25);
}
.product-tagline {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--burgundy); margin-bottom: 10px;
}
.product-name {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--text); margin-bottom: 12px; line-height: 1.2;
}
.product-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.product-card-footer {
  padding: 20px 36px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.product-url { font-size: 13px; font-weight: 600; color: var(--navy); }
.product-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(27,58,107,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all var(--transition);
}
.product-card:hover .product-arrow { background: var(--navy); color: #fff; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.value-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,58,107,0.07); border: 1px solid rgba(27,58,107,0.12);
  border-radius: 8px; padding: 10px 16px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.value-pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad); flex-shrink: 0;
}
.about-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-stat-box {
  background: var(--surface); border-radius: var(--radius);
  padding: 32px 24px; border: 1px solid var(--border); text-align: center;
}
.about-stat-box:nth-child(2) { margin-top: 24px; }
.about-stat-box:nth-child(4) { margin-top: -24px; }
.about-stat-num {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px;
}
.about-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.whyus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 72px;
}
.whyus-card { padding: 36px 32px; border-radius: var(--radius); position: relative; }
.whyus-card::before {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
}
.whyus-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px; line-height: 1;
}
.whyus-title { font-size: 19px; font-weight: 700; color: #EEF2FC; margin-bottom: 12px; }
.whyus-desc { font-size: 14px; color: rgba(200,215,240,0.6); line-height: 1.75; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonial-wrap { max-width: 840px; margin: 64px auto 0; }
.testimonial-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 48px 56px;
  display: none; animation: fadeIn 0.4s ease;
}
.testimonial-card.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.testimonial-quote-icon {
  font-size: 64px; line-height: 1; color: rgba(139,34,82,0.4); margin-bottom: 24px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 19px; line-height: 1.8; color: rgba(7, 60, 139, 0.9);
  font-style: italic; margin-bottom: 36px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 16px; font-weight: 700; color: #070c1a; }
.testimonial-role { font-size: 13px; color: rgba(20, 25, 34, 0.55); margin-top: 3px; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.2); cursor: pointer; transition: var(--transition);
}
.testimonial-dot.active { background: var(--burgundy); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════
   TEAM
═══════════════════════════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 64px;
}
.team-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 36px 24px; border: 1px solid var(--border);
  text-align: center; transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(27,58,107,0.2); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 24px; font-weight: 700; color: #fff;
  box-shadow: 0 8px 24px rgba(27,58,107,0.25);
}
.team-name { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 13px; font-weight: 600; color: var(--burgundy); letter-spacing: 0.04em; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 64px;
}
.blog-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all var(--transition); cursor: pointer; display: block; color: inherit;
  text-decoration: none;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(27,58,107,0.2); }
.blog-thumb {
  height: 180px; display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.blog-thumb-icon { font-size: 48px; opacity: 0.35; }
.blog-body { padding: 28px; }
.blog-category {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 100px; padding: 4px 12px; margin-bottom: 14px;
}
.blog-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-light); }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); }
.blog-read-more {
  font-size: 13px; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start; position: relative;
}
.contact-info-item { margin-bottom: 32px; }
.contact-info-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(200,215,240,0.4); margin-bottom: 6px;
}
.contact-info-value {
  font-size: 16px; color: rgba(220,235,255,0.85); font-weight: 500;
}
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(200,215,240,0.5); text-transform: uppercase; margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(220,235,255,0.9); font-family: var(--font-body); font-size: 15px;
  transition: border-color var(--transition); outline: none;
}
.form-control::placeholder { color: rgba(200,215,240,0.3); }
.form-control:focus { border-color: rgba(42,82,152,0.6); background: rgba(255,255,255,0.08); }
.form-control option { background: var(--bg-dark); color: var(--text); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
.form-success-icon {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(27,58,107,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 20px;
  border: 2px solid rgba(27,58,107,0.4);
}
.form-success-title { font-size: 22px; font-weight: 700; color: #EEF2FC; margin-bottom: 10px; }
.form-success-msg { font-size: 15px; color: rgba(200,215,240,0.65); line-height: 1.7; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #060E1F; padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-text {
  font-size: 14px; line-height: 1.7; color: rgba(200,215,240,0.4);
  max-width: 280px; margin-top: 20px;
}
.footer-heading {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(200,215,240,0.3); text-transform: uppercase; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(200,215,240,0.5); transition: color var(--transition);
}
.footer-links a:hover { color: rgba(200,215,240,0.9); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 13px; color: rgba(200,215,240,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(200,215,240,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(200,215,240,0.7); }

/* ═══════════════════════════════════════
   BLOG POST PAGES
═══════════════════════════════════════ */
.blog-post-hero {
  background: var(--bg-dark); padding: 160px 0 80px; position: relative; overflow: hidden;
}
.blog-post-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(139,34,82,0.15) 0%, transparent 60%);
}
.post-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: rgba(200,215,240,0.6);
  margin-bottom: 32px; transition: color var(--transition);
}
.post-back:hover { color: rgba(200,215,240,0.9); }
.post-category-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 100px; padding: 5px 16px; margin-bottom: 20px;
}
.post-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px);
  color: #EEF2FC; line-height: 1.1; max-width: 800px; margin-bottom: 24px;
}
.post-meta { display: flex; align-items: center; gap: 16px; color: rgba(200,215,240,0.5); font-size: 14px; }
.post-meta-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(200,215,240,0.3); }
.post-body {
  max-width: 740px; margin: 0 auto; padding: 80px 32px;
  font-size: 17px; line-height: 1.85; color: var(--text);
}
.post-body h2 {
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  color: var(--text); margin: 56px 0 20px; line-height: 1.2;
}
.post-body h3 {
  font-size: 22px; font-weight: 700; color: var(--text); margin: 40px 0 16px;
}
.post-body p { margin-bottom: 24px; color: var(--text-muted); }
.post-body ul, .post-body ol {
  margin: 0 0 24px 24px; color: var(--text-muted);
}
.post-body li { margin-bottom: 10px; }
.post-body blockquote {
  border-left: 4px solid var(--burgundy); padding: 20px 28px;
  margin: 36px 0; background: var(--bg-alt); border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--text-muted);
}
.post-body .highlight-box {
  background: linear-gradient(135deg, rgba(27,58,107,0.06), rgba(139,34,82,0.04));
  border: 1px solid rgba(27,58,107,0.12); border-radius: var(--radius);
  padding: 28px 32px; margin: 36px 0;
}
.post-related { background: var(--bg-alt); padding: 80px 0; }
.post-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { gap: 60px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid, .products-grid, .blog-grid, .whyus-grid, .team-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .testimonial-card { padding: 32px; }
  .post-related-grid { grid-template-columns: 1fr; }
}
