:root {
  --navy-950: #071120;
  --navy-900: #0a1a30;
  --navy-800: #102542;
  --navy-700: #17375f;
  --gold-500: #c7a35a;
  --gold-400: #dfbf7b;
  --slate-50: #f7f8fb;
  --slate-100: #eef1f5;
  --slate-400: #75839a;
  --slate-600: #4c5b70;
  --white: #ffffff;
  --text: #1b2736;
  --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;
  --container: 1180px;
}

* { 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(199, 163, 90, 0.09), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
  line-height: 1.65;
}
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: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  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, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 37, 66, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.brand strong, .brand small { display: block; }
.brand strong { color: var(--navy-900); font-size: 1.04rem; }
.brand small { color: var(--slate-600); font-size: 0.78rem; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.site-nav a {
  color: var(--slate-600);
  font-weight: 600;
  transition: color 0.25s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--navy-900); }
.nav-cta {
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white) !important;
  box-shadow: var(--shadow-md);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
}

.hero-section, .page-hero { position: relative; overflow: hidden; }
.hero-section {
  padding: 7rem 0 5rem;
  background:
    linear-gradient(135deg, rgba(7, 17, 32, 0.98), rgba(16, 37, 66, 0.92)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}
.page-hero {
  padding: 7rem 0 3.5rem;
  background:
    linear-gradient(135deg, rgba(7, 17, 32, 0.96), rgba(16, 37, 66, 0.88)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}
.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-copy h1, .page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1.04;
  margin: 0.45rem 0 1rem;
  font-family: "Playfair Display", serif;
}
.hero-copy p, .page-hero p {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--gold-400);
  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.5rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), #b68a38);
  color: var(--navy-950);
  box-shadow: 0 16px 32px rgba(199, 163, 90, 0.28);
}
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.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(255, 255, 255, 0.86);
  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(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}
.hero-highlights strong, .hero-highlights span { display: block; }
.hero-highlights span { color: rgba(255, 255, 255, 0.72); 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-400);
  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-400); font-weight: 700; }
.section { padding: 5rem 0; }
.section-alt { background: var(--slate-50); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.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.15;
}
.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));
}
.info-card, .service-card, .feature-card, .testimonial-card, .blog-card, .cert-card,
.article-card, .service-detail, .contact-panel {
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid rgba(16, 37, 66, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.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(-5px);
  box-shadow: var(--shadow-lg);
}
.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(--gold-500);
  background: rgba(16, 37, 66, 0.05);
}
.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: var(--white);
}
.stat-card strong { display: block; font-size: 2.7rem; color: var(--navy-900); }
.industry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.industry-chip {
  padding: 1.3rem 1.4rem;
  background: var(--white);
  text-align: center;
  font-weight: 700;
  color: var(--navy-800);
}
.logo-grid span {
  padding: 1.1rem;
  background: var(--white);
  border-radius: 16px;
  text-align: center;
  color: var(--slate-600);
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(16, 37, 66, 0.06);
}
.blog-card span, .article-tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(199, 163, 90, 0.16);
  color: #8b6826;
  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: var(--white);
  border: 1px solid rgba(16, 37, 66, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.process-card,
.faq-card {
  padding: 1.6rem;
}
.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: 2rem 2.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.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-form {
  background: var(--white);
  padding: 2rem;
  border: 1px solid rgba(16, 37, 66, 0.08);
}
.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.12);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #fbfcfe;
  color: var(--text);
}
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form textarea { resize: vertical; }
.form-note { margin-bottom: 0; color: var(--slate-400); font-size: 0.92rem; }
.site-footer {
  padding-top: 4rem;
  background: var(--navy-950);
  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;
}
.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);
}
.social-links.dark a {
  background: rgba(16, 37, 66, 0.08);
  color: var(--navy-900);
}
.footer-bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.2rem 0 2rem;
  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);
}
.image-card img, .team-card img { width: 100%; height: 100%; object-fit: cover; }
.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 img { height: 280px; }
.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);
}
.map-frame iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
}
.full-width { width: 100%; }
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  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);
}
.profile-header, .profile-block { margin-bottom: 2rem; }
.profile-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@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; }
  .stats-grid, .logo-grid, .team-grid, .industry-grid, .credential-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav-wrap { min-height: 76px; }
  .brand { max-width: calc(100% - 72px); }
  .brand strong { font-size: 0.98rem; }
  .brand small { font-size: 0.72rem; }
  .site-nav {
    position: absolute;
    top: 84px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }
  .site-nav a { width: 100%; }
  .nav-cta { width: 100%; }
  .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, .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 { grid-template-columns: 1fr; }
  .cta-panel, .topbar-inner, .topbar-links, .profile-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .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-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .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; }
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .container { width: min(var(--container), calc(100% - 1.25rem)); }
  .hero-section { padding: 5.6rem 0 4rem; }
  .page-hero { padding: 5.6rem 0 3rem; }
  .hero-copy p, .page-hero p { font-size: 1rem; }
  .section-heading { margin-bottom: 2rem; }
  .section-heading h2, .service-detail h2, .contact-panel h2, .article-card h2 { font-size: 1.7rem; }
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .site-nav {
    left: 0.625rem;
    right: 0.625rem;
    top: 76px;
  }
  .profile-sheet { padding: 1.5rem; }
}
