:root {
  --navy-950: #070b12;
  --navy-900: #111723;
  --navy-800: #1a2432;
  --navy-700: #243244;
  --teal-500: #54666a;
  --teal-400: #7f9195;
  --coral-400: #a4773e;
  --sun-300: #dbc69b;
  --gold-500: #8d652f;
  --gold-400: #b98643;
  --emerald-500: #1f5f57;
  --emerald-400: #2f8478;
  --emerald-100: #dceeea;
  --slate-50: #f6f2ea;
  --slate-100: #ece6dc;
  --slate-400: #6d7787;
  --slate-600: #4a5464;
  --white: #ffffff;
  --text: #1a2230;
  --shadow-lg: 0 24px 80px rgba(7, 17, 32, 0.16);
  --shadow-md: 0 16px 40px rgba(10, 26, 48, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-xl: 38px;
  --container: 1180px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background:
    radial-gradient(circle at top right, rgba(141, 101, 47, 0.06), transparent 20%),
    radial-gradient(circle at left 20%, rgba(31, 95, 87, 0.06), transparent 24%),
    linear-gradient(180deg, #fffefb 0%, #f4efe7 100%);
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
body::before,
body::after {
  content: "";
  position: fixed;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(26px);
  opacity: 0.42;
}
body::before {
  top: 10%;
  right: -10vw;
  background: radial-gradient(circle, rgba(141, 101, 47, 0.08), rgba(141, 101, 47, 0));
  animation: ambientFloat 18s ease-in-out infinite;
}
body::after {
  left: -12vw;
  bottom: 12%;
  background: radial-gradient(circle, rgba(31, 95, 87, 0.1), rgba(31, 95, 87, 0));
  animation: ambientFloat 22s ease-in-out infinite reverse;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }

.topbar {
  background: linear-gradient(90deg, #0e131b, #253140);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}
.topbar-inner, .topbar-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-links { flex-wrap: wrap; }
.topbar p, .topbar a { margin: 0; padding: 0.75rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 252, 247, 0.82);
  border-bottom: 1px solid rgba(17, 23, 35, 0.07);
  transition: background 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium);
}
.site-header.scrolled {
  background: rgba(255, 252, 247, 0.95);
  box-shadow: 0 18px 44px rgba(7, 11, 18, 0.08);
  border-bottom-color: rgba(17, 23, 35, 0.04);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 84px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1 1 auto;
  min-width: 0;
}
.brand strong, .brand small { display: block; }
.brand > span:last-child { min-width: 0; }
.brand strong, .brand small { overflow-wrap: anywhere; }
.brand strong {
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
   font-size: 1.08rem;
   font-weight: 900;
   line-height: 1.08;
  letter-spacing: 0.045em;
  color: #0f1823;
  text-shadow: 0 10px 22px rgba(141, 101, 47, 0.16);
}
.site-header .brand strong {
  background: linear-gradient(135deg, #0f1823 0%, #2d3c4c 48%, #8d652f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-footer .brand strong {
  color: var(--white);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}
.brand small { color: var(--slate-600); font-size: 0.78rem; line-height: 1.35; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(10, 26, 48, 0.08);
  overflow: hidden;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.site-nav a {
  position: relative;
  color: var(--slate-600);
  font-weight: 600;
  transition: color 0.25s var(--ease-premium);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), #7d8c92);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease-premium);
}
.site-nav a:hover, .site-nav a.active { color: var(--navy-900); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5efe3, #dcc8a4);
  color: var(--navy-900) !important;
  box-shadow: 0 16px 34px rgba(141, 101, 47, 0.28);
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), filter 0.3s var(--ease-premium);
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(17, 23, 35, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(10, 26, 48, 0.08);
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle:focus-visible {
  outline: none;
  border-color: rgba(31, 95, 87, 0.28);
  box-shadow: 0 0 0 4px rgba(31, 95, 87, 0.12);
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: transform 0.25s var(--ease-premium), opacity 0.25s var(--ease-premium);
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section, .page-hero { position: relative; overflow: hidden; }
.hero-section {
  padding: 7rem 0 5rem;
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.94), rgba(238, 233, 223, 0.9)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--navy-900);
}
.hero-section .container {
  position: relative;
  z-index: 1;
}
.hero-section::before,
.hero-section::after,
.page-hero::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero-section::before {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -100px;
  background: radial-gradient(circle, rgba(141, 101, 47, 0.16), rgba(141, 101, 47, 0));
}
.hero-section::after {
  width: 240px;
  height: 240px;
  left: -70px;
  bottom: 30px;
  background: radial-gradient(circle, rgba(31, 95, 87, 0.12), rgba(31, 95, 87, 0));
}
.hero-section .hero-grid::before,
.hero-section .hero-grid::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-section .hero-grid::before {
  width: 180px;
  height: 180px;
  top: 24px;
  left: 42%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  animation: orbitDrift 16s ease-in-out infinite;
}
.hero-section .hero-grid::after {
  width: 110px;
  height: 110px;
  right: 16%;
  bottom: 26px;
  border: 1px solid rgba(183, 146, 82, 0.24);
  animation: orbitDrift 14s ease-in-out infinite reverse;
}
.page-hero {
  padding: 7rem 0 3.5rem;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.95), rgba(236, 231, 223, 0.92)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--navy-900);
}
.page-hero::before {
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(31, 95, 87, 0.1), rgba(31, 95, 87, 0));
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}
.page-hero-aside {
  display: flex;
  justify-content: flex-end;
}
.page-hero-card {
  position: relative;
  overflow: hidden;
  max-width: 420px;
  padding: 1.5rem 1.55rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 233, 0.82));
  border: 1px solid rgba(16, 37, 66, 0.08);
  box-shadow: 0 24px 56px rgba(10, 26, 48, 0.1);
  backdrop-filter: blur(16px);
}
.page-hero-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 146, 82, 0.2), rgba(183, 146, 82, 0));
}
.page-hero-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: #4f3210;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.page-hero-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.18rem;
  line-height: 1.45;
}
.page-hero-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}
.page-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 37, 66, 0.06);
  color: rgba(10, 26, 48, 0.82);
  font-weight: 700;
}
.page-hero-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 6px rgba(183, 146, 82, 0.12);
}
.hero-grid, .split-layout, .contact-grid, .contact-page-grid, .two-column, .founder-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-grid { grid-template-columns: 1.15fr 0.85fr; }
.hero-panel,
.hero-copy { position: relative; z-index: 1; }
.hero-visual {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 60px 40px 28px 80px;
  border-radius: 40px;
  border: 1px solid rgba(183, 146, 82, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(
      90deg,
      rgba(16, 37, 66, 0.025) 0,
      rgba(16, 37, 66, 0.025) 1px,
      transparent 1px,
      transparent 32px
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.hero-photo-main,
.hero-photo-side {
  position: absolute;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.45s var(--ease-premium);
}
.hero-photo-main {
  inset: 36px 0 0 60px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(10, 26, 48, 0.18)),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1200&q=80") center/cover;
  animation: floatY 8s ease-in-out infinite;
}
.hero-photo-side {
  width: 210px;
  height: 260px;
  left: 0;
  bottom: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(10, 26, 48, 0.16)),
    url("../assets/images/raj-singhania-profile.jpg") center top/cover;
  animation: floatY 10s ease-in-out infinite reverse;
}
.hero-copy h1, .page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
  margin: 0.45rem 0 1rem;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #101a27 0%, #36404b 48%, #6f4a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}
.hero-copy p, .page-hero p {
  max-width: 680px;
  font-size: 1.06rem;
  color: rgba(10, 26, 48, 0.84);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #4f3210;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}
.hero-actions, .hero-highlights, .credential-list, .contact-points, .social-links, .footer-bottom,
.form-row, .stats-grid, .feature-grid, .service-grid, .industry-grid, .logo-grid, .testimonial-grid,
.blog-grid, .team-grid, .certification-grid, .value-grid, .mission-grid, .article-grid, .about-snapshot,
.service-detail-grid, .industry-detail-grid {
  display: grid;
  gap: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; margin: 2rem 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.55rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium), background 0.28s var(--ease-premium), filter 0.28s var(--ease-premium);
}
.btn:hover { transform: translateY(-3px) scale(1.01); filter: saturate(1.05); }
.btn-primary {
  background: linear-gradient(135deg, var(--navy-900), #1f5f57 72%, #8d652f);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(141, 101, 47, 0.28);
}
.btn-secondary {
  border: 1px solid rgba(10, 26, 48, 0.12);
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.68);
}
.compact-footer .btn-secondary, .contact-panel .btn-secondary {
  color: var(--navy-900);
  border-color: rgba(16, 37, 66, 0.16);
  background: var(--white);
}
.hero-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin: 0 0 1.4rem;
  color: rgba(10, 26, 48, 0.8);
  font-size: 0.95rem;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-highlights div {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(10, 26, 48, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 24px rgba(10, 26, 48, 0.04);
  position: relative;
  overflow: hidden;
}
.hero-highlights div::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 146, 82, 0.18), rgba(183, 146, 82, 0));
}
.hero-highlights strong, .hero-highlights span { display: block; }
.hero-highlights span { color: rgba(10, 26, 48, 0.62); font-size: 0.92rem; }
.glass-card, .info-card, .service-card, .feature-card, .stat-card, .industry-chip, .testimonial-card,
.blog-card, .team-card, .cert-card, .article-card, .service-detail, .contact-form, .contact-panel, .info-panel {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.glass-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-500);
  font-weight: 700;
}
.hero-card h2 { margin: 1rem 0; font-size: 1.9rem; }
.check-list { padding-left: 1.2rem; color: rgba(255, 255, 255, 0.88); }
.text-link { display: inline-flex; margin-top: 1rem; color: var(--gold-500); font-weight: 700; }
.floating-badge,
.hero-mini-card {
  position: absolute;
  z-index: 2;
}
.floating-badge {
  max-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(10, 26, 48, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}
.floating-badge strong,
.floating-badge span {
  display: block;
}
.floating-label {
  margin-bottom: 0.3rem;
  color: #6f4a1f;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}
.floating-badge strong {
  color: var(--navy-900);
  line-height: 1.35;
}
.floating-badge-top {
  top: 0;
  right: 18px;
  animation: floatY 7s ease-in-out infinite;
}
.floating-badge-bottom {
  right: 36px;
  bottom: 110px;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  animation: floatY 8s ease-in-out infinite reverse;
}
.floating-badge-bottom i {
  color: #7f8e93;
  font-size: 1.15rem;
  margin-top: 0.15rem;
}
.hero-mini-card {
  left: 140px;
  bottom: 0;
  width: 280px;
  padding: 1.2rem 1.25rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 234, 0.96));
  color: var(--navy-900);
  box-shadow: var(--shadow-lg);
  animation: floatY 9s ease-in-out infinite;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}
.hero-mini-card span {
  display: block;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.motion-strip {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(16, 37, 66, 0.06);
  border-bottom: 1px solid rgba(16, 37, 66, 0.06);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 237, 0.96));
}
.motion-strip::before,
.motion-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.motion-strip::before {
  left: 0;
  background: linear-gradient(90deg, #faf6ef, rgba(250, 246, 239, 0));
}
.motion-strip::after {
  right: 0;
  background: linear-gradient(270deg, #faf6ef, rgba(250, 246, 239, 0));
}
.motion-strip-track,
.motion-strip-group {
  display: flex;
  align-items: center;
}
.motion-strip-track {
  width: max-content;
  animation: marquee 28s linear infinite;
}
.motion-strip:hover .motion-strip-track {
  animation-play-state: paused;
}
.motion-strip-group {
  flex: 0 0 auto;
  gap: 1rem;
  padding-right: 1rem;
}
.motion-strip-group span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 37, 66, 0.06);
  box-shadow: 0 16px 28px rgba(10, 26, 48, 0.06);
  color: var(--navy-800);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.motion-strip-group a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  position: relative;
  background: linear-gradient(135deg, rgba(246, 241, 233, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(16, 37, 66, 0.08);
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(10, 26, 48, 0.06);
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}
.motion-strip-group a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(10, 26, 48, 0.1);
  border-color: rgba(31, 95, 87, 0.2);
}
.motion-strip-group i {
  color: var(--emerald-500);
}
.motion-strip-group span:nth-child(2n) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 243, 0.92));
}
.motion-strip-group a:nth-child(2n) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 243, 0.92));
}
.motion-strip-group span::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.5rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 95, 87, 0), rgba(31, 95, 87, 0.34), rgba(31, 95, 87, 0));
}
.motion-strip-compact {
  padding: 0.75rem 0;
  background: linear-gradient(90deg, rgba(248, 243, 235, 0.96), rgba(255, 255, 255, 0.96));
}
.motion-strip-compact .motion-strip-group span {
  padding: 0.82rem 1.05rem;
  font-size: 0.92rem;
  box-shadow: 0 12px 24px rgba(10, 26, 48, 0.05);
}
.motion-strip-compact .motion-strip-group a {
  padding: 0.82rem 1.05rem;
  font-size: 0.92rem;
  box-shadow: 0 12px 24px rgba(10, 26, 48, 0.05);
}
.gov-links-strip {
  background: linear-gradient(90deg, rgba(248, 243, 235, 0.96), rgba(255, 255, 255, 0.98));
}
.gov-links-heading {
  margin-bottom: 1.1rem;
}
.section { padding: 5rem 0; }
.section-alt { background: linear-gradient(180deg, #f5f0e8 0%, #f1ebe2 100%); }
.section-tight { padding: 2.1rem 0 1rem; }
.section {
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 82%, rgba(183, 146, 82, 0.03));
}
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 2.8rem; }
.left-align { text-align: left; margin-left: 0; }
.section-heading h2, .service-detail h2, .contact-panel h2, .article-card h2 {
  margin: 0.25rem 0 0.75rem;
  color: var(--navy-900);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.about-snapshot, .service-grid, .feature-grid, .stats-grid, .testimonial-grid, .blog-grid,
.team-grid, .certification-grid, .value-grid, .mission-grid, .article-grid, .service-detail-grid, .industry-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pulse-metrics {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0 0;
}
.pulse-metrics article {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 239, 230, 0.78));
  border: 1px solid rgba(16, 37, 66, 0.06);
  box-shadow: 0 18px 36px rgba(10, 26, 48, 0.07);
}
.pulse-metrics article::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -24px;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 146, 82, 0.18), rgba(183, 146, 82, 0));
}
.pulse-metrics strong,
.pulse-metrics span {
  display: block;
}
.pulse-metrics strong {
  margin-bottom: 0.4rem;
  color: var(--navy-900);
  font-size: 1rem;
}
.pulse-metrics span {
  color: rgba(10, 26, 48, 0.7);
  font-size: 0.94rem;
}
.live-signal-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.live-signal-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(220, 238, 234, 0.82));
  border: 1px solid rgba(31, 95, 87, 0.12);
  box-shadow: 0 18px 36px rgba(10, 26, 48, 0.07);
}
.live-signal-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-500), var(--gold-500));
}
.signal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 0 rgba(31, 95, 87, 0.32);
  animation: signalPulse 2.2s ease-out infinite;
}
.live-signal-card strong,
.live-signal-card p {
  display: block;
}
.live-signal-card strong {
  margin: 0.8rem 0 0.45rem;
  color: var(--navy-900);
}
.live-signal-card p {
  margin: 0;
  color: rgba(10, 26, 48, 0.7);
  font-size: 0.93rem;
}
.image-ribbon {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.1fr 0.9fr 1fr;
}
.ribbon-shot {
  min-height: 220px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.ribbon-shot-ledger {
  background-image: linear-gradient(180deg, rgba(7, 17, 32, 0.14), rgba(7, 17, 32, 0.32)), url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1200&q=80");
}
.ribbon-shot-meeting {
  transform: translateY(22px);
  background-image: linear-gradient(180deg, rgba(7, 17, 32, 0.1), rgba(7, 17, 32, 0.28)), url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80");
}
.ribbon-shot-growth {
  background-image: linear-gradient(180deg, rgba(7, 17, 32, 0.12), rgba(7, 17, 32, 0.28)), url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=80");
}
.info-card, .service-card, .feature-card, .testimonial-card, .blog-card, .cert-card,
.article-card, .service-detail, .contact-panel {
  padding: 1.8rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(249, 252, 251, 0.78));
  border: 1px solid rgba(16, 37, 66, 0.06);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.info-card,
.service-card,
.feature-card,
.blog-card,
.testimonial-card,
.service-detail,
.contact-panel,
.article-card {
  isolation: isolate;
}
.info-card::after, .service-card::after, .feature-card::after, .testimonial-card::after, .blog-card::after,
.article-card::after, .service-detail::after, .contact-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-500), rgba(185, 134, 67, 0.8));
  z-index: -1;
}
.info-card::before, .service-card::before, .feature-card::before, .testimonial-card::before, .blog-card::before, .cert-card::before,
.article-card::before, .service-detail::before, .contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.7) 35%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.9s var(--ease-premium);
  pointer-events: none;
}
.info-card:hover, .service-card:hover, .feature-card:hover, .testimonial-card:hover, .blog-card:hover,
.team-card:hover, .cert-card:hover, .article-card:hover, .service-detail:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(10, 26, 48, 0.12);
  border-color: rgba(31, 95, 87, 0.18);
}
.info-card:hover::before, .service-card:hover::before, .feature-card:hover::before, .testimonial-card:hover::before, .blog-card:hover::before, .cert-card:hover::before,
.article-card:hover::before, .service-detail:hover::before, .contact-panel:hover::before {
  transform: translateX(130%);
}
.info-card i, .service-card i, .cert-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.15rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-500), var(--gold-500));
  box-shadow: 0 12px 24px rgba(31, 95, 87, 0.18);
}
.info-card,
.service-card,
.feature-card,
.blog-card,
.industry-chip,
.testimonial-card,
.process-card,
.faq-card,
.stat-card {
  position: relative;
  overflow: hidden;
}
.industry-chip::before,
.process-card::before,
.faq-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.44) 48%, transparent 76%);
  transform: translateX(-130%);
  transition: transform 0.8s var(--ease-premium);
  pointer-events: none;
}
.industry-chip:hover::before,
.process-card:hover::before,
.faq-card:hover::before,
.stat-card:hover::before {
  transform: translateX(130%);
}
.feature-grid, .stats-grid, .industry-grid, .logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
  border: 1px solid rgba(16, 37, 66, 0.05);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(10, 26, 48, 0.1);
}
.stat-card strong {
  display: block;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  line-height: 1.2;
  color: var(--navy-900);
}
.stat-card span {
  display: block;
  margin-top: 0.65rem;
  color: rgba(10, 26, 48, 0.68);
}
.stats-section::before {
  background:
    radial-gradient(circle at center, rgba(183, 146, 82, 0.08), rgba(183, 146, 82, 0) 56%);
}
.industry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.industry-chip {
  padding: 1.3rem 1.4rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(220, 238, 234, 0.9));
  text-align: center;
  font-weight: 700;
  color: var(--navy-800);
  border: 1px solid rgba(31, 95, 87, 0.08);
}
.logo-grid span {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  text-align: center;
  color: var(--slate-600);
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(16, 37, 66, 0.06);
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), color 0.3s var(--ease-premium);
  backdrop-filter: blur(12px);
}
.logo-grid span:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(10, 26, 48, 0.08);
  color: var(--navy-900);
}
.blog-card span, .article-tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(183, 146, 82, 0.14);
  color: #4f3210;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.process-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-card,
.faq-card,
.legal-card,
.response-box {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 37, 66, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.process-card,
.faq-card {
  padding: 1.6rem;
  transition: transform 0.32s var(--ease-premium), box-shadow 0.32s var(--ease-premium);
}
.process-card:hover,
.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(10, 26, 48, 0.1);
}
.process-card strong {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--gold-500);
  font-size: 1.35rem;
  font-weight: 800;
}
.legal-card {
  padding: 2rem;
  max-width: 900px;
}
.legal-card h2 {
  color: var(--navy-900);
  margin: 0 0 0.6rem;
}
.response-box {
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
}
.response-box strong {
  display: block;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}
.cta-section { padding-top: 0; }
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.2rem 2.35rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0f141c, #1b2732 44%, #1f5f57 74%, #8d652f);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.2) 48%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 8s linear infinite;
  pointer-events: none;
}
.cta-panel .btn-primary {
  background: linear-gradient(135deg, #fffdf8, #f1e8d8);
  color: var(--navy-900);
  box-shadow: 0 18px 34px rgba(7, 17, 32, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.cta-panel .btn-primary:hover {
  box-shadow: 0 22px 40px rgba(7, 17, 32, 0.24);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.contact-grid, .contact-page-grid, .two-column, .founder-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-points a, .contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--slate-600);
}
.stacked { grid-template-columns: 1fr; }
.contact-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.3rem 0 1.2rem;
}
.contact-mode-grid article {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31, 95, 87, 0.1), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(31, 95, 87, 0.12);
}
.contact-mode-grid strong,
.contact-mode-grid span {
  display: block;
}
.contact-mode-grid strong {
  margin-bottom: 0.25rem;
  color: var(--navy-900);
}
.contact-mode-grid span {
  color: rgba(10, 26, 48, 0.68);
  font-size: 0.88rem;
}
.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 248, 0.88));
  padding: 2rem;
  border: 1px solid rgba(31, 95, 87, 0.1);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
  backdrop-filter: blur(12px);
}
.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10, 26, 48, 0.1);
}
.form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-form input, .contact-form textarea, .newsletter-form input {
  width: 100%;
  border: 1px solid rgba(16, 37, 66, 0.08);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 254, 251, 0.92);
  color: var(--text);
  transition: border-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium), background 0.25s var(--ease-premium);
}
.contact-form select {
  width: 100%;
  border: 1px solid rgba(16, 37, 66, 0.08);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 254, 251, 0.92);
  color: var(--text);
  font: inherit;
  transition: border-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium), background 0.25s var(--ease-premium);
}
.contact-form input:focus, .contact-form textarea:focus, .newsletter-form input:focus {
  outline: none;
  border-color: rgba(31, 95, 87, 0.28);
  box-shadow: 0 0 0 4px rgba(31, 95, 87, 0.12);
  background: rgba(255, 255, 255, 1);
}
.contact-form select:focus {
  outline: none;
  border-color: rgba(31, 95, 87, 0.28);
  box-shadow: 0 0 0 4px rgba(31, 95, 87, 0.12);
  background: rgba(255, 255, 255, 1);
}
.contact-points a,
.contact-points span,
.mini-footer-card li,
.mini-footer-card a,
.footer-bottom p {
  overflow-wrap: anywhere;
}
.contact-form textarea { resize: vertical; }
.form-note { margin-bottom: 0; color: var(--slate-400); font-size: 0.92rem; }
.careers-layout {
  align-items: start;
}
.careers-feature-grid {
  margin-top: 1.8rem;
}
.careers-process-grid {
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.current-status-card {
  margin-top: 0.6rem;
  padding: 1.3rem 1.4rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 251, 0.8));
  border: 1px solid rgba(16, 37, 66, 0.07);
  box-shadow: 0 18px 36px rgba(10, 26, 48, 0.06);
}
.current-status-card p {
  margin-bottom: 0;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 24, 35, 0.06);
  color: var(--navy-900);
  font-weight: 800;
}
.careers-form-heading {
  margin-bottom: 1.5rem;
}
.file-upload-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 0.9rem;
  border: 1px dashed rgba(31, 95, 87, 0.24);
  border-radius: 18px;
  background: rgba(246, 250, 248, 0.9);
  color: var(--navy-900);
  font-weight: 700;
}
.file-upload-card small {
  color: var(--slate-500);
  font-weight: 600;
}
.file-upload-card input[type="file"] {
  margin-top: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.careers-form {
  box-shadow: 0 24px 50px rgba(10, 26, 48, 0.1);
}
.careers-form .btn-primary {
  width: 100%;
}
.site-footer {
  padding-top: 4rem;
  background:
    radial-gradient(circle at top left, rgba(185, 134, 67, 0.14), transparent 26%),
    radial-gradient(circle at right, rgba(31, 95, 87, 0.16), transparent 24%),
    linear-gradient(180deg, #0d1219 0%, #141d28 100%);
  color: rgba(255, 255, 255, 0.76);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.mini-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr;
  gap: 1.4rem;
  padding-bottom: 2rem;
}
.mini-footer-card {
  padding: 1.55rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.mini-footer-card p {
  margin-bottom: 0;
}
.mini-footer-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}
.mini-footer-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mini-footer-card li + li {
  margin-top: 0.7rem;
}
.mini-footer-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini-footer-action .btn {
  align-self: flex-start;
  margin-top: 1rem;
}
.footer-brand strong,
.site-footer h3 { color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: 0.65rem; }
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.28s var(--ease-premium), background 0.28s var(--ease-premium);
}
.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}
.social-links.dark a {
  background: rgba(183, 146, 82, 0.12);
  color: #6f4a1f;
}
.footer-bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.2rem 0 calc(2rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.newsletter-form { display: flex; gap: 0.8rem; }
.newsletter-form button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.15rem;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 800;
}
.compact-footer { padding-top: 0; }
.compact-footer .footer-bottom { border-top: 0; }
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.scenic-card {
  position: relative;
  min-height: 420px;
}
.image-card img, .team-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card-note {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(7, 17, 32, 0.72);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.image-card-note span,
.image-card-note strong {
  display: block;
}
.image-card-note span {
  color: #d4a25f;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}
.image-card-note strong {
  line-height: 1.4;
}
.mission-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-panel { padding: 2rem; background: var(--white); }
.team-card { overflow: hidden; background: var(--white); }
.team-card {
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.team-card img { height: 280px; transition: transform 0.7s var(--ease-premium), filter 0.7s var(--ease-premium); }
.team-card:hover img { transform: scale(1.06); filter: saturate(1.08); }
.team-card h3, .team-card p { padding: 0 1.4rem; }
.team-card p { padding-bottom: 1.4rem; margin-top: 0; }
.credential-list { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1.5rem; }
.credential-list span {
  padding: 1rem 1.1rem;
  background: var(--slate-50);
  border-radius: 16px;
  color: var(--navy-800);
  font-weight: 700;
}
.service-detail-grid, .industry-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-detail-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-detail-head i { color: var(--gold-500); font-size: 1.25rem; }
.article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.energetic-form {
  position: relative;
}
.energetic-form::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: calc(var(--radius-md) + 12px);
  background: linear-gradient(135deg, rgba(183, 146, 82, 0.16), rgba(152, 168, 173, 0.12));
}
.map-frame iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
}
.full-width { width: 100%; }
.whatsapp-float {
  position: fixed;
  right: calc(1.25rem + env(safe-area-inset-right));
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--white);
  background: #1fa855;
  box-shadow: 0 18px 36px rgba(31, 168, 85, 0.35);
  z-index: 999;
}
.site-nav a,
.btn,
.social-links a,
.whatsapp-float {
  -webkit-tap-highlight-color: transparent;
}
.profile-page { background: var(--slate-100); }
.profile-sheet {
  width: min(860px, calc(100% - 2rem));
  margin: 2rem auto;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-wrap: anywhere;
}
.profile-header, .profile-block { margin-bottom: 2rem; }
.profile-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes signalPulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 95, 87, 0.34); }
  70% { box-shadow: 0 0 0 14px rgba(31, 95, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 95, 87, 0); }
}
@keyframes ambientFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -18px, 0) scale(1.08); }
}
@keyframes orbitDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(22px, -18px, 0) rotate(8deg); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@media (max-width: 1024px) {
  .hero-grid, .split-layout, .contact-grid, .contact-page-grid, .two-column, .founder-layout, .footer-grid,
  .about-snapshot, .service-grid, .feature-grid, .testimonial-grid, .blog-grid, .certification-grid,
  .value-grid, .article-grid, .service-detail-grid, .industry-detail-grid, .mission-grid, .process-grid, .faq-grid { grid-template-columns: 1fr 1fr; }
  .live-signal-grid, .contact-mode-grid { grid-template-columns: 1fr 1fr; }
  .mini-footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .stats-grid, .logo-grid, .team-grid, .industry-grid, .credential-list, .pulse-metrics { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .image-ribbon { grid-template-columns: 1fr; }
  .ribbon-shot-meeting { transform: none; }
  .hero-visual { min-height: 500px; }
  .hero-visual::before { inset: 42px 20px 70px 32px; }
  .page-hero-aside { justify-content: flex-start; }
  .page-hero-card { max-width: 100%; }
  .hero-photo-main { inset: 24px 0 88px 24px; }
  .hero-photo-side {
    width: 170px;
    height: 190px;
    left: 0;
    bottom: 78px;
  }
  .floating-badge-top { right: 0; }
  .floating-badge-bottom {
    right: 10px;
    bottom: 132px;
    max-width: 220px;
  }
  .hero-mini-card {
    left: 70px;
    right: 0;
    width: auto;
  }
}

@media (max-width: 820px) {
  .menu-toggle { display: flex; }
  .nav-wrap {
    min-height: 76px;
    align-items: center;
  }
  .brand { max-width: calc(100% - 72px); }
  .brand strong { font-size: 0.98rem; }
  .brand small { font-size: 0.72rem; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    max-height: calc(100vh - 108px);
    max-height: min(70dvh, calc(100dvh - 96px));
    overflow-y: auto;
    padding: 0.95rem;
    padding-bottom: calc(0.95rem + env(safe-area-inset-bottom));
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 23, 35, 0.08);
    box-shadow: var(--shadow-lg);
    z-index: 25;
  }
  .js-enabled .site-nav { display: none; }
  .site-nav a {
    width: 100%;
    padding: 0.82rem 0;
  }
  .site-nav a + a { border-top: 1px solid rgba(17, 23, 35, 0.06); }
  .site-nav a::after { display: none; }
  .nav-cta {
    width: 100%;
    justify-content: center;
  }
  .js-enabled .site-nav.open { display: flex; }
  .hero-grid, .split-layout, .contact-grid, .contact-page-grid, .two-column, .founder-layout, .about-snapshot,
  .service-grid, .feature-grid, .stats-grid, .industry-grid, .logo-grid, .testimonial-grid, .blog-grid,
  .footer-grid, .mini-footer-grid, .team-grid, .certification-grid, .value-grid, .mission-grid, .article-grid, .service-detail-grid,
  .industry-detail-grid, .credential-list, .hero-highlights, .form-row, .footer-bottom, .process-grid, .faq-grid,
  .pulse-metrics, .live-signal-grid, .contact-mode-grid { grid-template-columns: 1fr; }
  .hero-grid,
  .page-hero-grid,
  .contact-page-grid,
  .two-column,
  .founder-layout,
  .mini-footer-grid {
    gap: 1.4rem;
  }
  .cta-panel, .topbar-inner, .topbar-links, .profile-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn,
  .mini-footer-action .btn,
  .footer-bottom .btn {
    width: 100%;
  }
  .topbar { display: none; }
  .hero-section, .page-hero { padding-top: 6rem; }
  .hero-copy h1, .page-hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-section .hero-grid::before,
  .hero-section .hero-grid::after,
  .hero-section::before,
  .hero-section::after,
  .page-hero::before {
    display: none;
  }
  .page-hero-card {
    padding: 1.25rem 1.2rem;
    border-radius: 24px;
  }
  .page-hero-points span {
    font-size: 0.92rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.4rem 0;
  }
  .hero-actions .btn { width: 100%; }
  .trust-bar {
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.92rem;
  }
  .trust-bar span {
    align-items: flex-start;
  }
  .section { padding: 4rem 0; }
  .contact-form, .contact-panel, .service-detail, .info-card, .feature-card, .testimonial-card, .blog-card, .article-card { padding: 1.4rem; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .map-frame iframe { min-height: 320px; }
  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 0.9rem;
  }
  .hero-visual::before { inset: 0; }
  .hero-photo-main {
    position: relative;
    inset: auto;
    min-height: 280px;
  }
  .hero-photo-side { display: none; }
  .floating-badge-top {
    position: static;
    max-width: none;
    animation: none;
  }
  .floating-badge-bottom { display: none; }
  .hero-mini-card {
    position: static;
    width: 100%;
    animation: none;
  }
  .motion-strip {
    overflow: visible;
    padding: 0.75rem 0;
  }
  .motion-strip::before,
  .motion-strip::after { display: none; }
  .motion-strip-track {
    width: auto;
    display: block;
    animation: none;
  }
  .motion-strip-group {
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-start;
    padding-right: 0;
  }
  .motion-strip-group[aria-hidden="true"] { display: none; }
  .motion-strip-group span {
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    white-space: normal;
  }
  .scenic-card { min-height: 340px; }
  .team-card img { height: 220px; }
  .image-card-note {
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.95rem;
  }
  .contact-points a,
  .contact-points span {
    word-break: break-word;
  }
  .profile-header .btn {
    width: 100%;
  }
  .whatsapp-float {
    right: calc(1rem + env(safe-area-inset-right));
    bottom: calc(1rem + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 640px) {
  .site-header {
    backdrop-filter: blur(12px);
  }
  .nav-wrap { min-height: 72px; }
  .container { width: min(var(--container), calc(100% - 1rem)); }
  .section { padding: 3.2rem 0; }
  .section-tight { padding: 1.3rem 0 0.4rem; }
  .hero-section {
    padding: 5.2rem 0 3.25rem;
    background:
      linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(238, 233, 223, 0.96)),
      url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80") center/cover;
  }
  .page-hero {
    padding: 5.2rem 0 2.75rem;
    background:
      linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(236, 231, 223, 0.96)),
      url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80") center/cover;
  }
  .hero-copy h1,
  .page-hero h1 {
    line-height: 1.08;
    margin-bottom: 0.9rem;
  }
  .hero-copy p,
  .page-hero p {
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .hero-highlights div,
  .live-signal-card,
  .info-card,
  .service-card,
  .feature-card,
  .stat-card,
  .industry-chip,
  .blog-card,
  .team-card,
  .cert-card,
  .article-card,
  .service-detail,
  .contact-form,
  .contact-panel,
  .info-panel,
  .mini-footer-card,
  .page-hero-card {
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(10, 26, 48, 0.08);
  }
  .btn {
    min-height: 48px;
    padding: 0.88rem 1.2rem;
  }
  .contact-form input,
  .contact-form textarea,
  .newsletter-form input {
    padding: 0.88rem 0.95rem;
  }
  .hero-photo-main,
  .scenic-card,
  .map-frame iframe {
    min-height: 240px;
  }
  .hero-photo-main {
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 32px rgba(10, 26, 48, 0.12);
  }
  .hero-photo-main::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(16, 23, 33, 0) 0%, rgba(16, 23, 33, 0.34) 100%);
  }
  .signal-dot {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 6px rgba(31, 95, 87, 0.08);
  }
  .page-hero-points span,
  .credential-list span,
  .industry-chip {
    border-radius: 16px;
  }
  .cta-panel {
    border-radius: 22px;
    padding: 1.45rem 1.2rem;
  }
  .image-card-note strong,
  .page-hero-card strong {
    line-height: 1.45;
  }
  .footer-bottom {
    gap: 0.85rem;
    padding: 1rem 0 calc(1.4rem + env(safe-area-inset-bottom));
  }
  .site-footer {
    padding-top: 3rem;
  }
}

@media (max-width: 480px) {
  .container { width: min(var(--container), calc(100% - 1.25rem)); }
  .nav-wrap { min-height: 70px; }
  .section-heading { margin-bottom: 2rem; }
  .section-heading h2, .service-detail h2, .contact-panel h2, .article-card h2 { font-size: 1.7rem; }
  body::before,
  body::after { opacity: 0.22; }
  .brand {
    gap: 0.7rem;
    max-width: calc(100% - 60px);
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .brand strong {
    font-size: 0.86rem;
    line-height: 1.2;
  }
  .brand small { display: none; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
  .site-nav {
    top: calc(100% + 0.5rem);
    padding: 0.75rem;
  }
  .hero-section { padding: 5.6rem 0 4rem; }
  .page-hero { padding: 5.6rem 0 3rem; }
  .hero-copy h1,
  .page-hero h1 { font-size: clamp(1.95rem, 10vw, 2.45rem); }
  .hero-copy p,
  .page-hero p { font-size: 1rem; }
  .hero-visual { gap: 0.75rem; }
  .hero-photo-main { min-height: 220px; border-radius: 24px; }
  .floating-badge,
  .hero-mini-card {
    padding: 0.95rem 1rem;
    border-radius: 20px;
  }
  .floating-badge strong,
  .hero-mini-card span,
  .page-hero-card strong {
    font-size: 0.98rem;
  }
  .motion-strip-group span {
    width: 100%;
    justify-content: flex-start;
    padding: 0.82rem 0.95rem;
    border-radius: 16px;
  }
  .live-signal-card,
  .stat-card,
  .mini-footer-card,
  .contact-form,
  .contact-panel,
  .info-panel,
  .page-hero-card { padding: 1.05rem; }
  .scenic-card { min-height: 280px; }
  .image-card-note {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.85rem 0.9rem;
  }
  .map-frame iframe { min-height: 240px; }
  .section-heading {
    text-align: center;
    margin: 0 auto 2rem;
  }
  .section-heading h2,
  .service-detail h2,
  .contact-panel h2,
  .article-card h2 {
    line-height: 1.14;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
    right: calc(0.9rem + env(safe-area-inset-right));
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
  }
  .profile-sheet {
    width: min(860px, calc(100% - 1rem));
    margin: 1rem auto;
    padding: 1.25rem;
  }
}

@media (max-width: 820px) {
  .js-enabled .reveal,
  .js-enabled .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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