@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

/* ===============================
   FENNEC DEV — PROFESSIONAL CSS
   File: style.css
================================= */

:root {
  --color-black: #050505;
  --color-black-2: #0b0b0d;
  --color-dark: #111114;
  --color-dark-2: #19191d;

  --color-white: #ffffff;
  --color-soft-white: #fafafa;
  --color-light: #f4f4f5;
  --color-light-2: #eeeeef;

  --color-gray: #6d6d73;
  --color-gray-2: #8b8b94;
  --color-border: rgba(5, 5, 5, 0.1);
  --color-border-dark: rgba(255, 255, 255, 0.12);

  --color-yellow: #f5b400;
  --color-yellow-2: #ffca28;
  --color-yellow-dark: #c98f00;

  --gradient-yellow: linear-gradient(135deg, #f5b400 0%, #ffcf3a 100%);
  --gradient-dark: linear-gradient(135deg, #050505 0%, #16161a 100%);
  --gradient-soft: linear-gradient(135deg, #ffffff 0%, #f6f6f7 100%);

  --font-main: "Inter", Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", Arial, sans-serif;

  --container: 1180px;
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 46px;

  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 26px 80px rgba(0, 0, 0, 0.14);
  --shadow-dark: 0 35px 100px rgba(0, 0, 0, 0.38);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===============================
   RESET
================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

::selection {
  background: var(--color-yellow);
  color: var(--color-black);
}

/* ===============================
   GLOBAL UTILITIES
================================= */

.site-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-padding {
  padding: 120px 0;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 16px;
  border: 1px solid rgba(245, 180, 0, 0.35);
  border-radius: 999px;
  background: rgba(245, 180, 0, 0.08);
  color: var(--color-yellow-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-header h2,
.expertise-content h2,
.why-card h2,
.contact-content h2 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 4.3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-header p,
.expertise-content > p,
.contact-content > p {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--color-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.btn span {
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease);
}

.btn:hover span {
  transform: translateX(4px);
}

.btn-primary {
  color: var(--color-black);
  background: var(--gradient-yellow);
  box-shadow: 0 16px 34px rgba(245, 180, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(245, 180, 0, 0.38);
}

.btn-outline {
  color: var(--color-black);
  border: 1px solid rgba(5, 5, 5, 0.16);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.btn-outline:hover {
  color: var(--color-white);
  background: var(--color-black);
  border-color: var(--color-black);
  transform: translateY(-3px);
}

/* ===============================
   HEADER / NAVBAR
================================= */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition:
    padding 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(22px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  width: 64px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-name strong {
  color: var(--color-yellow);
}

.brand-tagline {
  margin-top: 4px;
  color: var(--color-gray);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(5, 5, 5, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.nav-menu a:hover {
  color: var(--color-black);
  background: rgba(245, 180, 0, 0.14);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--color-black);
  background: var(--gradient-yellow);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(245, 180, 0, 0.24);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(245, 180, 0, 0.34);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 14px;
  background: var(--color-black);
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--color-yellow);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===============================
   HERO
================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 170px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(245, 180, 0, 0.24), transparent 26%),
    radial-gradient(circle at 8% 74%, rgba(245, 180, 0, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6f6f7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 80px;
  transform: rotate(45deg);
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(245, 180, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 180, 0, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle, black 0%, transparent 72%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.68;
  pointer-events: none;
}

.hero-orb-one {
  top: 18%;
  left: 9%;
  width: 160px;
  height: 160px;
  background: rgba(245, 180, 0, 0.18);
}

.hero-orb-two {
  right: 18%;
  bottom: 15%;
  width: 220px;
  height: 220px;
  background: rgba(245, 180, 0, 0.22);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 72px;
  align-items: center;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 6px rgba(245, 180, 0, 0.16);
}

.hero h1 {
  max-width: 760px;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 8vw, 6.9rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
  color: var(--color-yellow);
}

.hero-description {
  max-width: 690px;
  margin-top: 30px;
  color: #3f3f46;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 690px;
  margin-top: 52px;
}

.hero-trust div {
  position: relative;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-trust div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gradient-yellow);
}

.hero-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-trust span {
  display: block;
  margin-top: 8px;
  color: var(--color-gray);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ===============================
   HERO MOCKUP
================================= */

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.visual-frame::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 44px;
  background: var(--color-black);
  transform: rotate(12deg);
  box-shadow: var(--shadow-dark);
}

.visual-frame::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(245, 180, 0, 0.34);
  border-radius: 42px;
  transform: rotate(-7deg);
}

.mock-window {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  min-height: 420px;
  display: grid;
  grid-template-columns: 112px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: rgba(9, 9, 11, 0.94);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}

.mock-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.mock-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-topbar span:nth-child(1) {
  background: #ff5f57;
}

.mock-topbar span:nth-child(2) {
  background: #ffbd2e;
}

.mock-topbar span:nth-child(3) {
  background: #28c840;
}

.mock-sidebar {
  padding: 82px 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.sidebar-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(245, 180, 0, 1), rgba(255, 207, 58, 1));
  box-shadow: 0 12px 32px rgba(245, 180, 0, 0.28);
}

.mock-sidebar span {
  display: block;
  height: 10px;
  margin-bottom: 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-sidebar span:nth-child(3) {
  width: 72%;
}

.mock-sidebar span:nth-child(4) {
  width: 88%;
  background: rgba(245, 180, 0, 0.75);
}

.mock-sidebar span:nth-child(5) {
  width: 64%;
}

.mock-content {
  padding: 84px 26px 26px;
}

.mock-header-line {
  width: 72%;
  height: 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mock-kpis div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.mock-kpis small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
}

.mock-kpis strong {
  display: block;
  margin-top: 8px;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.mock-chart {
  height: 145px;
  display: flex;
  align-items: end;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(245, 180, 0, 0.12), rgba(255, 255, 255, 0.03));
}

.mock-chart span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: var(--gradient-yellow);
  box-shadow: 0 0 24px rgba(245, 180, 0, 0.24);
}

.mock-cards {
  display: grid;
  grid-template-columns: 1fr 0.75fr 0.55fr;
  gap: 12px;
  margin-top: 18px;
}

.mock-cards div {
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  padding: 16px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.floating-card-one {
  top: 84px;
  right: 0;
}

.floating-card-two {
  bottom: 90px;
  left: -8px;
}

.floating-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  color: var(--color-yellow);
  background: var(--color-black);
  font-size: 0.8rem;
  font-weight: 900;
}

.floating-card strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.floating-card small {
  display: block;
  margin-top: 5px;
  color: var(--color-gray);
  font-size: 0.77rem;
  font-weight: 700;
}

/* ===============================
   TRUST STRIP
================================= */

.trust-strip {
  position: relative;
  padding: 24px 0;
  color: var(--color-white);
  background: var(--color-black);
  overflow: hidden;
}

.trust-strip::before,
.trust-strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trust-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--color-black), transparent);
}

.trust-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--color-black), transparent);
}

.trust-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-track span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(245, 180, 0, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  font-weight: 800;
}

/* ===============================
   SERVICES
================================= */

.services {
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 180, 0, 0.1), transparent 25%),
    var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 380px;
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 250, 0.96));
  box-shadow: 0 15px 46px rgba(0, 0, 0, 0.045);
  overflow: hidden;
  transition:
    transform 0.42s var(--ease),
    box-shadow 0.42s var(--ease),
    border-color 0.42s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(245, 180, 0, 0.16), transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(245, 180, 0, 0.22), transparent 22%);
  opacity: 0;
  transition: opacity 0.42s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(245, 180, 0, 0.32);
  border-radius: 38px;
  transform: rotate(45deg);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 180, 0, 0.46);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  color: var(--color-white);
  background: var(--gradient-dark);
  border-color: rgba(245, 180, 0, 0.3);
  box-shadow: var(--shadow-medium);
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.service-card.featured .service-number {
  color: rgba(255, 255, 255, 0.14);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(5, 5, 5, 0.07);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 20px;
  color: var(--color-yellow);
  background: var(--color-black);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.featured .service-icon {
  color: var(--color-black);
  background: var(--gradient-yellow);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--color-gray);
  font-size: 0.97rem;
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: #47474f;
  font-size: 0.91rem;
  font-weight: 800;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 5px rgba(245, 180, 0, 0.14);
}

/* ===============================
   EXPERTISE
================================= */

.expertise {
  position: relative;
  color: var(--color-white);
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 180, 0, 0.18), transparent 30%),
    var(--color-black);
  overflow: hidden;
}

.expertise::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
}

.expertise-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 70px;
  align-items: center;
}

.expertise-content p {
  color: rgba(255, 255, 255, 0.68);
}

.expertise-list {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.expertise-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--color-border-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.expertise-item > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  color: var(--color-black);
  background: var(--gradient-yellow);
  font-family: var(--font-display);
  font-weight: 700;
}

.expertise-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.1;
}

.expertise-item p {
  margin-top: 7px;
  font-size: 0.95rem;
}

.expertise-panel {
  position: relative;
}

.expertise-panel::before {
  content: "";
  position: absolute;
  inset: -38px;
  border: 1px solid rgba(245, 180, 0, 0.24);
  border-radius: 42px;
  transform: rotate(-4deg);
}

.code-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--color-border-dark);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}

.code-top {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.code-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-yellow);
}

.code-line {
  height: 15px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-yellow), rgba(255, 255, 255, 0.14));
}

.code-line.short {
  width: 46%;
}

.code-line.medium {
  width: 74%;
}

.code-line.tiny {
  width: 36%;
}

.system-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.system-status div {
  padding: 18px 14px;
  border: 1px solid var(--color-border-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.system-status small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
}

.system-status strong {
  display: block;
  margin-top: 6px;
  color: var(--color-yellow);
  font-family: var(--font-display);
}

/* ===============================
   PROCESS
================================= */

.process {
  background: var(--gradient-soft);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 34px;
  min-height: 250px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background: var(--color-white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.045);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.process-step::before {
  content: "";
  position: absolute;
  inset: auto 26px 0 26px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--gradient-yellow);
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 180, 0, 0.5);
}

.step-index {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.1;
}

.process-step p {
  margin-top: 14px;
  color: var(--color-gray);
  font-size: 0.96rem;
}

/* ===============================
   PROJECTS / SOLUTIONS
================================= */

.projects {
  background:
    radial-gradient(circle at 10% 15%, rgba(245, 180, 0, 0.08), transparent 26%),
    var(--color-white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-card {
  position: relative;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background: var(--color-soft-white);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.solution-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  background: rgba(245, 180, 0, 0.16);
}

.solution-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.solution-header span {
  color: var(--color-yellow-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.solution-header strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.05;
}

.solution-body {
  position: relative;
  z-index: 1;
}

.mini-chart {
  height: 110px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: var(--color-black);
}

.mini-chart span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: var(--gradient-yellow);
}

.solution-body ul {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.solution-body li {
  color: var(--color-gray);
  font-size: 0.9rem;
  font-weight: 800;
}

.phone-wireframe {
  position: relative;
  z-index: 1;
  width: 135px;
  height: 230px;
  margin: 0 auto;
  padding: 18px;
  border: 9px solid var(--color-black);
  border-radius: 34px;
  background: var(--color-white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.phone-wireframe div,
.phone-wireframe span {
  display: block;
  border-radius: 12px;
}

.phone-wireframe div {
  height: 64px;
  margin-bottom: 16px;
  background: var(--gradient-yellow);
}

.phone-wireframe span {
  height: 14px;
  margin-bottom: 12px;
  background: var(--color-light-2);
}

.web-wireframe {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 22px;
  background: var(--color-black);
}

.web-hero {
  height: 110px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(245, 180, 0, 0.92), rgba(255, 207, 58, 0.78)),
    var(--color-yellow);
}

.web-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 12px;
}

.web-row span {
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.security-meter {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: 18px;
}

.meter-circle {
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(var(--color-yellow) 0deg 331deg, var(--color-light-2) 331deg 360deg);
  position: relative;
}

.meter-circle::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--color-black);
}

.meter-circle span {
  position: relative;
  z-index: 1;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}

.security-meter p {
  margin-top: 16px;
  color: var(--color-gray);
  font-weight: 900;
}

/* ===============================
   STATS
================================= */

.stats-section {
  padding: 74px 0;
  background: var(--color-black);
  color: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 30px;
  border: 1px solid var(--color-border-dark);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
}

.stat-card strong {
  display: block;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  font-weight: 800;
}

/* ===============================
   TECHNOLOGIES
================================= */

.tech {
  background: var(--color-white);
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.tech-cloud span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-soft-white);
  color: var(--color-black);
  font-weight: 900;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.tech-cloud span:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 180, 0, 0.5);
  background: rgba(245, 180, 0, 0.12);
}

/* ===============================
   WHY
================================= */

.why {
  background:
    radial-gradient(circle at 85% 15%, rgba(245, 180, 0, 0.12), transparent 26%),
    var(--color-light);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.why-card {
  position: sticky;
  top: 120px;
  padding: 44px;
  border-radius: 34px;
  color: var(--color-white);
  background: var(--gradient-dark);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(245, 180, 0, 0.22);
  filter: blur(35px);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-points article {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.045);
}

.why-points article span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.why-points h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
}

.why-points p {
  margin-top: 12px;
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* ===============================
   FAQ
================================= */

.faq {
  background: var(--color-white);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: var(--color-soft-white);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: rgba(245, 180, 0, 0.5);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--color-black);
  text-align: left;
  font-weight: 900;
}

.faq-question span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--color-black);
  background: var(--gradient-yellow);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 240px;
}

.faq-answer p {
  padding: 0 26px 26px;
  color: var(--color-gray);
}

/* ===============================
   CONTACT
================================= */

.contact {
  position: relative;
  color: var(--color-white);
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 180, 0, 0.22), transparent 25%),
    var(--color-black);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-content p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.contact-info a {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid var(--color-border-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.contact-info a:hover {
  transform: translateX(6px);
  border-color: rgba(245, 180, 0, 0.45);
  background: rgba(245, 180, 0, 0.09);
}

.contact-info span {
  color: var(--color-yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--color-border-dark);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}

.form-row {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.075);
  color: var(--color-white);
  padding: 15px 16px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.form-row select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-yellow) 50%),
    linear-gradient(135deg, var(--color-yellow) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 52%,
    calc(100% - 15px) 52%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.form-row option {
  color: var(--color-black);
  background: var(--color-white);
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(245, 180, 0, 0.7);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(245, 180, 0, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
}

.form-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  text-align: center;
}

/* ===============================
   FOOTER
================================= */

.footer {
  color: var(--color-white);
  background: #030303;
  padding-top: 72px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.85fr 0.9fr;
  gap: 38px;
  padding-bottom: 54px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.95rem;
}

.footer .brand-tagline {
  color: rgba(255, 255, 255, 0.52);
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 12px;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-yellow);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--color-yellow);
  font-weight: 900;
}

/* ===============================
   JS / SCROLL ANIMATION READY
================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1180px) {
  .hero-layout,
  .expertise-layout,
  .contact-layout {
    gap: 46px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .section-padding {
    padding: 92px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(5, 5, 5, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.82);
    min-height: 46px;
    padding: 0 14px;
  }

  .nav-menu a:hover {
    color: var(--color-yellow);
    background: rgba(245, 180, 0, 0.1);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-layout,
  .expertise-layout,
  .why-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: left;
  }

  .visual-frame {
    min-height: 520px;
  }

  .services-grid,
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card {
    position: relative;
    top: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-padding {
    padding: 76px 0;
  }

  .brand-logo {
    width: 52px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.98rem;
    letter-spacing: 0.09em;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 17vw, 4.7rem);
    letter-spacing: -0.07em;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 44px;
  }

  .visual-frame {
    min-height: auto;
    padding: 30px 0;
  }

  .visual-frame::before,
  .visual-frame::after {
    display: none;
  }

  .mock-window {
    width: 100%;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-content {
    padding: 84px 18px 22px;
  }

  .mock-kpis {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 14px;
  }

  .services-grid,
  .process-timeline,
  .solution-grid,
  .why-points,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step,
  .why-points article,
  .contact-form {
    padding: 26px;
    border-radius: 24px;
  }

  .service-card {
    min-height: auto;
  }

  .solution-card {
    min-height: auto;
  }

  .section-header {
    margin-bottom: 44px;
    text-align: left;
  }

  .section-header h2,
  .expertise-content h2,
  .why-card h2,
  .contact-content h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
    letter-spacing: -0.055em;
  }

  .system-status {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 3.1rem;
  }

  .section-kicker,
  .eyebrow {
    font-size: 0.68rem;
    padding: 8px 12px;
  }

  .mock-chart {
    gap: 8px;
  }

  .service-number {
    font-size: 3rem;
  }

  .contact-form {
    padding: 22px;
  }
}

.nav-menu a.active-link {
  color: var(--color-black);
  background: rgba(245, 180, 0, 0.18);
}

.header:not(.scrolled) .nav-menu a.active-link {
  background: rgba(245, 180, 0, 0.16);
}

.form-row.focused label {
  color: var(--color-yellow);
}