/* style.css — Roger & Komply (dark theme, responsive) */
/* Brand colors */
:root {
  --brand-primary: hsl(25 95% 53%);
  --light-orange: #fdf1e9;
  --muted-color: #676f7e;
  --black-text: #000000;
  --white-text: #ffffff;
  --brand-secondary: #7c3aed;
  --bg-900: #05070a;
  --bg-800: #0b111a;
  --muted: #a0aab6;
  --text: #e8eef2;
  --glass: rgba(255, 255, 255, 0.02);
  --panel: rgba(255, 255, 255, 0.03);
  --muted: #a0aab6;
  --text: #e8eef2;
  --glass: rgba(255, 255, 255, 0.02);
  --panel: rgba(255, 255, 255, 0.03);
  --radius: 14px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.2, 0.9, 0.3, 1);
  --dark-bg: linear-gradient(135deg, rgb(10, 17, 31), rgb(17, 26, 44));
  --light-bg: #f8f9fa;
  --white-bg: #ffffff;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  --playFair: "Playfair Display", serif !important;
}

body {
  background: var(--light-bg);
}

body * {
  -webkit-user-select: none;
  /* Safari / Chrome */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
  /* Standard */
}

/* Use default arrow cursor for all non-clickable elements */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div {
  cursor: default;
}

.primary-color {
  color: var(--brand-primary);
  margin: 0;
}

.muted-color {
  color: var(--muted-color);
}

/* Keep pointer for links, buttons, and interactive elements */
a,
button,
[role="button"],
input,
textarea,
select,
label {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  cursor: pointer;
}

/* Reset & base */
* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html,
/* body {
  height: 100%;
} */
body.dark {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  opacity: inherit;
  z-index: 80;
  background: #f7f8f9;
  backdrop-filter: blur(84px);
  box-shadow: 0px 1px 5px #00000024;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand h1 {
  font-family: "Playfair Display", serif !important;
  color: var(--black-text);
  font-weight: 700;
  font-size: 2rem;
}

.brand h1 span {
  color: var(--brand-primary);
  font-family: "Playfair Display", serif !important;
}

.logo {
  height: 46px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: all 220ms var(--ease);
}

.main-nav a:hover {
  color: var(--black-text);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-2px);
}

.main-nav .cta {
  background: var(--brand-primary);
  padding: 8px 14px;
  border-radius: 12px;
  color: white;
  font-weight: 700;
}

.main-nav .cta:hover {
  background: var(--brand-primary);
  color: var(--white-text);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, rgb(10, 17, 31), rgb(17, 26, 44));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero .kicker {
  display: inline-block;
  font-weight: 300;
  font-size: 1rem;
  color: var(--brand-primary);
}

.hero .subtext {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.03;
  margin: 14px 0;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.hero h1 span {
  font-family: "Playfair Display", serif;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 300;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--white-text);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--brand-primary);
  color: var(--muted);
}

/* Aside card */

.card img {
  width: 100%;
  border-radius: 10px;
}

/* 3 pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
  margin-bottom: 20px;
}

.pillar {
  padding: 18px;
  border-radius: 10px;
  transition: transform 300ms var(--ease);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* grid lists */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

/* footer */
.site-footer {
  padding: 0px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
  padding-top: 18px;
  font-size: 14px;
}

.logo-small {
    width: 75%;
}

/* utilities */
.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
  color: var(--muted);
}

.kicker-small {
  font-size: 13px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.02);
  display: inline-block;
}

/* modal */
.modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 6, 23, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms var(--ease);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: linear-gradient(
    180deg,
    rgba(8, 10, 14, 0.98),
    rgba(13, 17, 20, 0.98)
  );
  padding: 22px;
  border-radius: 12px;
  max-width: 760px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* fade reveal */
.fade-in {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 450ms var(--ease),
    transform 450ms var(--ease);
}

.fade-in.show {
  opacity: 1;
  transform: none;
}

/* subtle decorative svg accent (absolute in hero) */
.hero-accent {
  position: absolute;
  right: 6%;
  top: 2%;
  height: 200px;
  border-radius: 23px;
  z-index: 0;
  width: 100%;
  max-width: 38%;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 18px 40px rgba(237, 28, 36, 0.06));
}

:target {
  scroll-margin-top: 80px;
}

/* HERO layout adjustments */
.hero {
  padding: 5rem 0px;
  position: relative;
  overflow: hidden;
}

.hero-text {
  z-index: 2;
}

.hero-aside img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-full {
  margin-top: 80px;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

/* ================================================
   Enhanced Layout & Section Styling
================================================ */

/* Full-width section backgrounds */
section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

/* Section headers */
section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--black-text);
  font-family: var(--playFair);
  margin: 0px 0px 20px;
}

section h2 span {
  font-family: var(--playFair);
}

section h3 {
  color: #fff;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 8px;
}

section p {
  /* max-width: 800px; */
  line-height: 1.7;
}

/* why choose roger and komply */
.choose-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5rem 0px;
}
.con-text p {
  color: var(--black-text);
  font-weight: 300;
}
.con-text ul {
  color: var(--black-text);
  list-style: none;
  padding: 0;
}
.con-text ul li {
  display: flex;
  padding: 5px;
}
.con-text ul li svg {
  color: var(--brand-primary);
}
.con-text blockquote {
  color: var(--black-text);
}
.con-img {
  display: flex;
  justify-content: center;
}
.con-img > img {
  width: 90%;
  margin: 5% 0;
  border-radius: 15px;
}

/* why choose roger and komply */
/* ABOUT SECTION SPLIT LAYOUT */
#about {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  align-items: center;
  gap: 40px;
  position: relative;
  padding: 5rem 0px;
  background: #fff;
}

#about img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s var(--ease);
}

#about img:hover {
  transform: scale(1.04);
}

#about .muted {
  color: var(--muted);
  font-size: 16px;
}

#about > * {
  position: relative;
  z-index: 2;
}
.about-subtext {
  color: var(--black-text);
  text-align: center;
  padding-bottom: 2rem;
}
/* SERVICES SECTION (grid cards) */
.ecosystem-section {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, rgb(10, 17, 31), rgb(17, 26, 44));
}

.ecosystem-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.ecosystem-title span {
  color: var(--brand-primary);
}

.ecosystem-subtitle {
  color: #9ca3af;
  font-size: 15px;
  margin-bottom: 60px;
}

.ecosystem-card {
  position: relative;
  height: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  border: 1px solid var(--brand-primary);
}

.ecosystem-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: hsl(25deg 95% 53% / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 20px;
  margin-bottom: 18px;
}

.ecosystem-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-primary);
}

.ecosystem-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-primary);
}

.ecosystem-card p {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
}
.eco-cards {
  display: flex;
  justify-content: space-between;
}
.eco-card {
  width: 24%;
}

.cta-btn {
  margin-top: 60px;
  background: #f97316;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #ea580c;
}

.cta-btn i {
  margin-left: 8px;
}

/* LinkedIn Insights Section */
#insights {
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.02),
    transparent 60%
  );
  text-align: center;
}

#insights p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
}

/* Decorative dividers between sections */
section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: translateX(-50%);
}

/* Quote & block styles */
blockquote {
  font-style: italic;
  border-left: 3px solid var(--brand-primary);
  padding-left: 14px;
  margin: 20px 0;
  color: var(--muted);
  opacity: 0.9;
}

/* Buttons hover animation */
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
}

.btn-ghost:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Subtle fade animation trigger */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.fade-in.show {
  opacity: 1;
  transform: none;
}



/* ================================================
   ABOUT SECTION (Split layout)
================================================ */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 50px 20px;
  border-radius: 25px;
  box-shadow: 1px 1px 10px #3f3f3f52;
}
.about-cards {
  display: flex;
  justify-content: space-between;
  color: var(--black-text);
}
.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 3%;
  width: 31%;
  background: #f9f9fa;
  border-radius: 15px;
  padding: 15px 20px;
}
span.about-svg-outer {
  background: #f8ece4;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--brand-primary);
}
span.about-card-head {
  margin: 10px 0;
  font-weight: 600;
}
span.about-card-des.muted-color {
  font-size: 0.8rem;
}
.about-photo {
  position: relative;
}

.about-quote {
  font-size: 1.2rem !important;
  margin: 30px 0px 20px;
}

.about-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s var(--ease);
}

.about-photo img:hover {
  transform: scale(1.03);
}

/* Quote overlay */
.about-photo blockquote {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: linear-gradient(
    135deg,
    var(--brand-secondary),
    var(--brand-primary)
  );
  color: #081018;
  padding: 18px 22px;
  border-radius: 12px;
  font-style: italic;
  font-weight: 600;
  max-width: 280px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.about-photo blockquote span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
}

/* Content side */
.about-content h2 {
  font-size: 34px;
  margin-bottom: 16px;
  background: linear-gradient(
    90deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text);
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}

.about-highlights li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}

.about-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--brand-primary);
}

/* Background gradient accent */
/* .about-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(
    circle at right,
    rgba(255, 255, 255, 0.03),
    transparent 70%
  );
  z-index: 0;
} */


/* ================================================
   CLIENT IMPACT (within Insights section)
================================================ */
.client-impact {
  text-align: center;
  color: var(--black-text);
}

.client-impact p.muted {
  margin-bottom: 40px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
  padding-top: 20px;
}

.impact-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s var(--ease);
  position: relative;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--brand-primary);
}

.quote {
  font-style: italic;
  font-size: 17px;
  color: var(--black-text);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  width: 80%;
}
.quote-sec {
  display: flex;
}

.quote-sec svg {
  width: 20%;
  color: var(--light-orange);
}

.client-sec {
  display: flex;
  align-items: center;
}

span.client-dp {
  aspect-ratio: 1 / 1;
  width: 10%;
  background: var(--light-orange);
  color: var(--brand-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border-radius: 50%;
  margin: 0px 10px;
}

.client {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-items: flex-start;
}

.client-role {
  font-weight: 700;
  color: var(--brand-primary);
}



/* ================================================
   SIMPLE FOOTER (minimalist)
================================================ */
.simple-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
  flex-wrap: wrap;
  text-align: left;
  gap: 20px;
}
.container.simple-footer>div {
    width: 20%;
}



.footer-logo .tagline {
  font-style: italic;
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

.footer-contact {
  color: var(--muted);
  line-height: 1.6;
}

.footer-contact a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.footer-contact a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.distinct-footer {
  background: #172039;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 2px 40px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

/* glowing top border accent */
.distinct-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--brand-primary),
    var(--brand-secondary),
    transparent
  );
  transform: translateX(-50%);
  opacity: 0.7;
}
.container.simple-footer h3 {
    color: var(--white-text);
    font-family: var(--playFair);
    font-size: 1.5rem;
    text-decoration: underline;
}
.container.simple-footer>div {
    width: 20%;
    display: flex;
    flex-direction: column;
}

a.quick-link {
    color: var(--muted);
    padding: 10px 0px;
    text-decoration: none;
    font-size: 0.8rem;
}
a.quick-link:hover {
  color: var(--brand-primary);
  cursor: pointer;
}
.socials-links-footer a:hover {
  color: var(--brand-primary);
}
.footer-logo {
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}


.footer-contact {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.footer-contact p {
  margin: 0;
  padding: 10px 0;
}

.footer-contact a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.footer-contact a:hover {
  color: var(--brand-primary);
}

/* copyright */
.footer-bottom {
  text-align: center;
  color: var(--muted);
  padding: 20px 0 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
}


.tp-cards-con {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.tp-card {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tp-card::after,
.tp-card::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: translateX(-50%);
}

.tp-card::after {
  bottom: 0;
}

.tp-card::before {
  top: 0;
}

.tp-card-img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  padding: 10% 20%;
  filter: invert(1) brightness(2);
}

span.tp-card-heading {
  font-size: 1.4em;
  text-align: center;
}

/* ================================================
   CONTACT PAGE STYLES
================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}

.contact-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.contact-image h2 {
  color: var(--brand-primary);
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-image p {
  color: var(--muted);
  max-width: 90%;
  font-size: 16px;
  line-height: 1.6;
}

/* Form styles */
.contact-form {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  padding: 36px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.contact-form h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  font-size: 15px;
  transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

/* Dropdown */
select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23a0aab6' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.form-check input[type="checkbox"] {
  accent-color: var(--brand-primary);
  transform: scale(1.1);
}

/* Actions */
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-actions .btn-primary {
  padding: 12px 28px;
}

.form-success {
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.1),
    rgba(34, 197, 94, 0.04)
  );
  border-left: 4px solid rgba(34, 197, 94, 0.9);
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  color: var(--text);
}



/* ================================================
   IMPACT SECTION — Animated Stats + Gradient Borders
================================================ */
.impact-section {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.impact-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

/* Each item */

.impact-item {
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.6s var(--ease);
  width: 30%;
  background: #fff !important;
  box-shadow: 0px 5px 15px rgb(10 17 31 / 15%);
  border-radius: 0.75rem;
  padding: 20px 0px;
}

.fade-in.show .impact-item {
  transform: none;
  opacity: 1;
}

/* Number text */
.impact-item h2 {
  font-size: 46px;
  font-weight: 800;
  margin: 0px;
  color: var(--brand-primary);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  background: transparent;
}

/* Slight scale hover */
.impact-item:hover h2 {
  transform: scale(1.05);
}

.impact-item p {
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Top and bottom soft fading lines */
.impact-border {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 0.4;
  pointer-events: none;
}

.impact-border.top {
  top: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  animation: fadeLine 6s infinite ease-in-out;
}

.impact-border.bottom {
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  animation: fadeLine 6s infinite ease-in-out reverse;
}

@keyframes fadeLine {
  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }
}


.scale-section {
  position: relative;
  width: 100%;
  padding: 5rem 0;

  text-align: center;
  overflow: hidden;
}
section.scale-section.fade-in.show {
  background: white;
}
.scale-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.scale-section h4 {
  color: #000000;
  margin: 0;
  font-weight: 200;
}

/* Table-style grid */
.scale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
/* Each cell */

.scale-card {
  color: #000000 !important;
  margin: 5% 20px 0;
  display: flex;
  border: 1px solid #7373735c;
  padding: 20px 0;
  border-radius: 10px;
}
.scale-card-img {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
span.svg-outer {
  width: 40%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f974151a;
  color: var(--brand-primary);
  border-radius: 12px;
  margin-top: 10px;
}
.scale-card-content {
  width: 70%;
  text-align: left;
}
.scale-card-content h3 {
  font-size: 1.2rem !important;
}
.scale-card-content p {
  font-size: 0.8rem !important;
}
.scale-card h3 {
  color: #000;
}

.scale-card:hover {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); */
  box-sizing: border-box !important;
  border: 1px solid var(--brand-primary);
  cursor: pointer;
}

.scale-card:hover .svg-outer {
  background: var(--brand-primary);
}
.scale-card:hover .svg-outer {
  color: var(--white-text);
}
.scale-card:hover .scale-card-content h3 {
  color: var(--brand-primary);
}

/* Card text */
.scale-card h3 {
  font-size: 18px;
  columns: #000;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  max-width: 300px;
}

/* Decorative fade borders like Impact section */
.scale-section::before,
.scale-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  opacity: 0.5;
  animation: fadeLine 6s infinite ease-in-out;
}

.scale-section::before {
  top: 0;
}

.scale-section::after {
  bottom: 0;
  animation-direction: reverse;
}


.centre-align {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.split-cons {
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-items: start;
  align-items: center;
}

.contacts-con {
  display: flex;
  flex-direction: column;
}

.contacts-con > span {
  padding: 10px 0px;
}

section#rnkscore {
    background: white;
}
section#rnkscore .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
span.rnk-svg {
    text-align: center;
    background: var(--light-orange);
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 50%;
    color: var(--brand-primary);
}

section#execution{
    background: linear-gradient(135deg, rgb(10, 17, 31), rgb(17, 26, 44));
}
section#execution .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-text);
}
section#execution h2 {
  color: var(--white-text);
}

section#execution span {
  margin-bottom: 2rem;
}









/* =========================
   Large tablets & below
   ========================= */
@media (max-width: 980px) {
  /* Layout grids */
  .hero-grid,
  .pillars,
  .grid-3,
  .scale-grid,
  .contact-grid,
  #about,
  .about-grid {
    grid-template-columns: 1fr;
  }

  /* Navigation */
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background: rgba(15, 20, 25, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }

  /* Impact */
  .impact-grid {
    flex-direction: column;
    gap: 40px;
  }

  .impact-item h2 {
    font-size: 36px;
  }

  /* About */
  #about {
    text-align: center;
  }

  #about img {
    max-width: 360px;
    margin: 0 auto 30px;
  }

  .about-photo blockquote {
    position: static;
    margin: 20px auto 0;
  }

  .about-highlights li {
    text-align: left;
    width: 100%;
  }

  section h2 {
    font-size: 26px;
  }
}

/* =========================
   Medium screens
   ========================= */
@media (max-width: 800px) {
  .scale-card {
    padding: 30px 16px;
  }

  .scale-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .simple-footer {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo img {
    height: 44px;
  }
}

/* =========================
   Small tablets
   ========================= */
@media (max-width: 640px) {
  .impact-card {
    padding: 24px 18px;
  }

  .quote {
    font-size: 16px;
  }
}

/* =========================
   Mobile
   ========================= */
@media (max-width: 600px) {
  .header-inner {
    padding: 12px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .logo {
    height: 40px;
  }

  section {
    padding: 60px 0;
  }

  section p {
    font-size: 15px;
  }

  #services .card {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
