:root {
      --primary: #102A43;
      --primary-soft: #173B5F;
      --accent: #ED7410;
      --accent-dark: #C95E08;
      --secondary: #E7ECFE;
      --surface: #F7F9FC;
      --white: #FFFFFF;
      --text: #102A43;
      --muted: #69727D;
      --border: rgba(16, 42, 67, 0.10);
      --shadow: 0 20px 50px rgba(16, 42, 67, 0.10);
      --radius: 22px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 22px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 15px;
      padding: 14px 22px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: 0.25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 15px 30px rgba(237, 116, 16, 0.28);
    }

    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--primary);
      border-color: rgba(16, 42, 67, 0.12);
      box-shadow: 0 12px 25px rgba(16, 42, 67, 0.07);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(237, 116, 16, 0.35);
    }

    .section-label {
      color: #2563eb;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--primary);
    }

    .section-text {
      color: var(--muted);
      font-size: 17px;
      max-width: 720px;
      margin-top: 18px;
    }

    .highlight {
      color: var(--accent);
    }

    /* HEADER */
    .header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(16, 42, 67, 0.08);
    }

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 21px;
      letter-spacing: -0.03em;
      color: var(--primary);
    }

    .site-logo {
      width: auto;
      height: 48px;
      max-width: 230px;
      object-fit: contain;
      display: block;
    }

    .brand-text {
      display: none;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 72% 28%, #fff 0 8%, transparent 9%),
        linear-gradient(135deg, var(--primary), #2563eb 55%, var(--accent));
      color: white;
      display: grid;
      place-items: center;
      font-size: 15px;
      box-shadow: 0 12px 24px rgba(16, 42, 67, 0.18);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
    }

    .nav-menu a {
      position: relative;
      opacity: 0.86;
      transition: 0.2s ease;
    }

    .nav-menu a:hover {
      opacity: 1;
      color: var(--accent);
    }

    .nav-menu a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -10px;
      margin: auto;
      width: 22px;
      height: 3px;
      border-radius: 999px;
      background: var(--accent);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      background: white;
      border-radius: 12px;
      color: var(--primary);
      font-size: 24px;
      cursor: pointer;
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: calc(100vh - 82px);
      display: grid;
      align-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 78% 18%, rgba(231, 236, 254, 0.95), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      padding: 72px 0 80px;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(1px);
    }

    .hero::before {
      width: 800px;
      height: 800px;
      right: -300px;
      top: -260px;
      background: rgba(231, 236, 254, 0.82);
    }

    .hero::after {
      width: 420px;
      height: 420px;
      left: -160px;
      bottom: -190px;
      background: rgba(237, 116, 16, 0.08);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #2563eb;
      background: rgba(37, 99, 235, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.10);
      border-radius: 999px;
      padding: 9px 13px;
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: clamp(34px, 4.6vw, 58px);
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: -0.065em;
      color: var(--primary);
      margin-bottom: 24px;
    }

    .hero p {
      color: var(--muted);
      font-size: 18px;
      max-width: 600px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 32px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 560px;
    }

    .stat {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(16, 42, 67, 0.08);
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 14px 28px rgba(16, 42, 67, 0.07);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .stat-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(37, 99, 235, 0.10);
      color: #2563eb;
      font-size: 20px;
      flex: 0 0 auto;
    }

    .stat strong {
      font-size: 20px;
      display: block;
      line-height: 1;
    }

    .stat span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      margin-top: 4px;
    }

    .hero-visual {
      position: relative;
      min-height: 575px;
      perspective: 1200px;
    }

    .orb {
      position: absolute;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(231,236,254,0.1), rgba(37,99,235,0.20));
      box-shadow: inset 0 0 40px rgba(37,99,235,0.08);
      z-index: 0;
    }

    .orb.one {
      width: 520px;
      height: 520px;
      top: 10px;
      right: 30px;
      animation: float 8s ease-in-out infinite;
    }

    .orb.two {
      width: 120px;
      height: 120px;
      bottom: 45px;
      right: 0;
      animation: float 6s ease-in-out infinite reverse;
    }

    .dashboard {
      position: absolute;
      left: 42px;
      top: 160px;
      width: min(520px, 86%);
      height: 335px;
      border-radius: 28px;
      background: var(--white);
      border: 12px solid #081A30;
      box-shadow: 0 35px 85px rgba(16, 42, 67, 0.22);
      transform: rotateY(-7deg) rotateX(3deg);
      z-index: 3;
      overflow: hidden;
    }

    .dashboard::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(231,236,254,0.8), transparent 46%),
        radial-gradient(circle at 80% 20%, rgba(237,116,16,0.08), transparent 28%);
      pointer-events: none;
    }

    .browser-bar {
      height: 45px;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 0 18px;
      border-bottom: 1px solid rgba(16,42,67,0.08);
      background: rgba(247, 249, 252, 0.9);
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
    }

    .dot:nth-child(2) {
      background: #2563eb;
    }

    .dot:nth-child(3) {
      background: var(--primary);
    }

    .screen-content {
      position: relative;
      z-index: 2;
      padding: 28px;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 22px;
      height: calc(100% - 45px);
    }

    .mock-image {
      height: 160px;
      border-radius: 18px;
      background:
        linear-gradient(135deg, rgba(37,99,235,0.28), rgba(231,236,254,0.95)),
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.45) 46%);
      position: relative;
      overflow: hidden;
    }

    .mock-image::before,
    .mock-image::after {
      content: "";
      position: absolute;
      bottom: -12px;
      width: 150px;
      height: 110px;
      background: rgba(37,99,235,0.20);
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }

    .mock-image::before {
      left: 28px;
    }

    .mock-image::after {
      right: 18px;
      background: rgba(37,99,235,0.16);
    }

    .mock-lines {
      display: grid;
      align-content: center;
      gap: 12px;
    }

    .line {
      height: 11px;
      border-radius: 999px;
      background: rgba(105, 114, 125, 0.20);
    }

    .line.dark {
      background: var(--primary);
      width: 70%;
      height: 14px;
    }

    .line.short {
      width: 64%;
    }

    .mock-button {
      width: 110px;
      height: 34px;
      border-radius: 999px;
      background: var(--accent);
      margin-top: 8px;
    }

    .mini-cards {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      align-items: end;
    }

    .mini-card {
      height: 62px;
      border-radius: 16px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(16,42,67,0.08);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
    }

    .mini-icon {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(37,99,235,0.12);
      color: #2563eb;
      display: grid;
      place-items: center;
      font-weight: 800;
    }

    .mini-text {
      flex: 1;
    }

    .mini-text span {
      display: block;
      height: 7px;
      margin: 6px 0;
      border-radius: 999px;
      background: rgba(105,114,125,0.20);
    }

    .floating-card {
      position: absolute;
      z-index: 4;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(16,42,67,0.08);
      border-radius: 22px;
      box-shadow: var(--shadow);
      padding: 18px;
      animation: float 7s ease-in-out infinite;
    }

    .card-bot {
      top: 62px;
      left: 8px;
      width: 240px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .bot-face {
      width: 55px;
      height: 46px;
      border-radius: 18px;
      background: #081A30;
      position: relative;
      box-shadow: inset 0 0 0 7px rgba(231,236,254,0.16);
    }

    .bot-face::before,
    .bot-face::after {
      content: "";
      position: absolute;
      top: 18px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #60A5FA;
    }

    .bot-face::before { left: 15px; }
    .bot-face::after { right: 15px; }

    .chat-lines {
      flex: 1;
    }

    .chat-lines span {
      display: block;
      height: 8px;
      background: rgba(105,114,125,0.20);
      border-radius: 999px;
      margin: 8px 0;
    }

    .card-growth {
      top: 35px;
      right: 110px;
      width: 220px;
      height: 145px;
      animation-delay: -1.5s;
    }

    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 10px;
      height: 72px;
      margin-top: 16px;
    }

    .bar {
      flex: 1;
      border-radius: 8px 8px 0 0;
      background: rgba(37,99,235,0.20);
    }

    .bar:nth-child(2) { height: 45%; }
    .bar:nth-child(3) { height: 60%; background: rgba(37,99,235,0.40); }
    .bar:nth-child(4) { height: 85%; background: var(--accent); }
    .bar:nth-child(1) { height: 32%; }

    .card-pie {
      top: 120px;
      right: 0;
      width: 180px;
      height: 125px;
      animation-delay: -2.4s;
    }

    .pie {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: conic-gradient(var(--accent) 0 35%, #2563eb 35% 70%, #e5ebff 70% 100%);
      position: relative;
    }

    .pie::after {
      content: "";
      position: absolute;
      inset: 15px;
      border-radius: 50%;
      background: white;
    }

    .card-search {
      bottom: 32px;
      right: 30px;
      width: 210px;
      height: 130px;
      animation-delay: -3s;
    }

    .magnify {
      width: 60px;
      height: 60px;
      border: 8px solid var(--primary);
      border-radius: 50%;
      position: relative;
      margin-top: 6px;
    }

    .magnify::after {
      content: "";
      position: absolute;
      width: 35px;
      height: 8px;
      background: var(--primary);
      border-radius: 999px;
      right: -28px;
      bottom: -16px;
      transform: rotate(45deg);
    }

    .magnify::before {
      content: "";
      position: absolute;
      width: 30px;
      height: 20px;
      border-left: 4px solid var(--accent);
      border-bottom: 4px solid var(--accent);
      transform: rotate(135deg);
      left: 12px;
      top: 15px;
    }

    .connector {
      position: absolute;
      border: 2px dashed rgba(37,99,235,0.35);
      border-radius: 24px;
      z-index: 1;
    }

    .connector.one {
      width: 260px;
      height: 160px;
      left: 95px;
      top: 140px;
      border-right-color: transparent;
      border-bottom-color: transparent;
    }

    .connector.two {
      width: 300px;
      height: 160px;
      right: 85px;
      top: 185px;
      border-left-color: transparent;
      border-top-color: transparent;
    }

    .flow-icons {
      position: absolute;
      left: 0;
      top: 250px;
      z-index: 5;
      display: grid;
      gap: 14px;
    }

    .flow-icon {
      width: 56px;
      height: 56px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(16,42,67,0.08);
      box-shadow: 0 14px 28px rgba(16,42,67,0.10);
      color: #2563eb;
      font-size: 24px;
      font-weight: 800;
    }

    .flow-icon.orange {
      color: white;
      background: var(--accent);
    }

    /* SERVICES */
    .services {
      padding: 98px 0;
      background: white;
    }

    .center {
      text-align: center;
      margin: 0 auto 46px;
    }

    .center .section-text {
      margin-left: auto;
      margin-right: auto;
    }

    .underline {
      width: 44px;
      height: 4px;
      background: var(--accent);
      border-radius: 999px;
      margin: 16px auto 0;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
      transition: 0.25s ease;
      min-height: 195px;
    }

    .service-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 4px;
      background: linear-gradient(90deg, #2563eb, var(--accent));
      transform: scaleX(0);
      transform-origin: left;
      transition: 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .service-card:hover::after {
      transform: scaleX(1);
    }

    .service-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(37, 99, 235, 0.10);
      color: #2563eb;
      font-size: 26px;
      margin-bottom: 20px;
    }

    .service-card:nth-child(2n) .service-icon {
      background: rgba(237, 116, 16, 0.10);
      color: var(--accent);
    }

    .service-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: var(--primary);
      letter-spacing: -0.02em;
    }

    .service-card p {
      color: var(--muted);
      font-size: 15px;
    }

    /* ABOUT */
    .about {
      padding: 96px 0;
      background:
        radial-gradient(circle at 10% 20%, rgba(231,236,254,0.85), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .value-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .value-card .service-icon {
      margin-bottom: 26px;
    }

    .value-card h3 {
      font-size: 24px;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }

    .value-card p {
      color: var(--muted);
    }

    /* PARALLAX */
    .parallax {
      position: relative;
      min-height: 430px;
      display: grid;
      place-items: center;
      overflow: hidden;
      background:
        linear-gradient(115deg, rgba(16,42,67,0.92), rgba(16,42,67,0.40), rgba(237,116,16,0.62)),
        radial-gradient(circle at 15% 78%, rgba(255,255,255,0.35), transparent 20%),
        linear-gradient(135deg, #102A43, #E7ECFE 52%, #ED7410);
      background-attachment: fixed;
    }

    .parallax::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle, rgba(255,255,255,0.65) 1.2px, transparent 1.2px),
        linear-gradient(120deg, transparent 0 40%, rgba(255,255,255,0.22) 40% 41%, transparent 41%),
        linear-gradient(60deg, transparent 0 55%, rgba(237,116,16,0.30) 55% 56%, transparent 56%);
      background-size: 70px 70px, 100% 100%, 100% 100%;
      opacity: 0.5;
      transform: translateY(var(--parallax-offset, 0px));
    }

    .parallax::after {
      content: "";
      position: absolute;
      left: -10%;
      right: -10%;
      bottom: -140px;
      height: 260px;
      border-radius: 50% 50% 0 0;
      background: rgba(255,255,255,0.24);
      filter: blur(1px);
    }

    .parallax-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 820px;
      padding: 50px 22px;
      color: white;
    }

    .parallax-content h2 {
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1.05;
      letter-spacing: -0.055em;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .parallax-content p {
      color: rgba(255,255,255,0.85);
      font-size: 18px;
      margin-bottom: 28px;
    }

    /* PORTFOLIO */
    .portfolio {
      padding: 98px 0;
      background: white;
    }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .work-card {
      overflow: hidden;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 14px 35px rgba(16, 42, 67, 0.07);
      transition: 0.25s ease;
    }

    .work-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .work-visual {
      min-height: 210px;
      padding: 26px;
      display: flex;
      align-items: flex-end;
      background:
        radial-gradient(circle at 85% 15%, rgba(237,116,16,0.85), transparent 13%),
        radial-gradient(circle at 15% 30%, rgba(37,99,235,0.80), transparent 16%),
        linear-gradient(135deg, #07182D, #102A43 45%, #1d4ed8);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .work-card:nth-child(2) .work-visual {
      background:
        radial-gradient(circle at 75% 35%, rgba(237,116,16,0.70), transparent 12%),
        linear-gradient(135deg, #120525, #3b0764, #102A43);
    }

    .work-card:nth-child(3) .work-visual {
      background:
        linear-gradient(135deg, rgba(16,42,67,0.92), rgba(16,42,67,0.65)),
        linear-gradient(45deg, #ffffff, #e2e8f0);
    }

    .work-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      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: 30px 30px;
      opacity: 0.45;
    }

    .work-visual strong {
      position: relative;
      z-index: 2;
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.05em;
      text-transform: uppercase;
    }

    .work-body {
      padding: 24px;
    }

    .work-body h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .work-body p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 18px;
    }

    .text-link {
      color: #2563eb;
      font-weight: 800;
      font-size: 15px;
    }

    /* REVIEWS */
    .reviews {
      padding: 96px 0;
      background: var(--surface);
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .review-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
    }

    .stars {
      color: var(--accent);
      letter-spacing: 3px;
      font-size: 18px;
      margin-bottom: 16px;
    }

    .quote {
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 24px;
    }

    .client {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 800;
      color: white;
      background: linear-gradient(135deg, #2563eb, var(--accent));
    }

    .client strong {
      display: block;
      line-height: 1;
    }

    .client span {
      color: var(--muted);
      font-size: 13px;
    }

    /* CTA */
    .cta {
      padding: 84px 0;
      background: white;
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
      background:
        radial-gradient(circle at 10% 35%, rgba(237,116,16,0.12), transparent 18%),
        linear-gradient(135deg, #E7ECFE, #FFFFFF);
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 42px;
      box-shadow: var(--shadow);
    }

    .cta h2 {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.12;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .cta p {
      color: var(--muted);
      max-width: 700px;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* FOOTER */
    .footer {
      background: #07182D;
      color: white;
      padding: 64px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
      gap: 34px;
      margin-bottom: 42px;
    }

    .footer h3,
    .footer h4 {
      margin-bottom: 18px;
    }

    .footer p,
    .footer a,
    .footer li {
      color: rgba(255,255,255,0.72);
      font-size: 14px;
    }

    .footer ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.18);
      color: white;
      transition: 0.2s ease;
    }

    .socials a:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .footer-bottom {
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: rgba(255,255,255,0.62);
      font-size: 13px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-16px);
      }
    }

    @media (max-width: 980px) {
      .mobile-toggle {
        display: grid;
        place-items: center;
      }

      .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        background: white;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(16,42,67,0.12);
      }

      .nav-menu.show {
        display: flex;
      }

      .nav .btn {
        display: none;
      }

      .hero-grid,
      .about-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 55px;
      }

      .hero-visual {
        min-height: 520px;
      }

      .dashboard {
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
      }

      .card-growth {
        right: 30px;
      }

      .card-pie {
        display: none;
      }

      .service-grid,
      .work-grid,
      .review-grid,
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 650px) {
      .brand {
        font-size: 17px;
      }

      .site-logo {
        height: 42px;
        max-width: 190px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 13px;
      }

      .hero h1 {
        font-size: 34px;
      }

      .hero p {
        font-size: 16px;
      }

      .hero-visual {
        min-height: 430px;
      }

      .dashboard {
        top: 140px;
        height: 275px;
        border-width: 8px;
      }

      .screen-content {
        padding: 18px;
        grid-template-columns: 1fr;
      }

      .mock-image {
        height: 105px;
      }

      .mock-lines {
        display: none;
      }

      .mini-cards {
        grid-template-columns: 1fr;
      }

      .mini-card:nth-child(2),
      .mini-card:nth-child(3) {
        display: none;
      }

      .floating-card {
        transform: scale(0.82);
      }

      .card-bot {
        left: -22px;
        top: 50px;
      }

      .card-growth {
        right: -26px;
        top: 20px;
      }

      .card-search,
      .flow-icons,
      .connector {
        display: none;
      }

      .service-grid,
      .work-grid,
      .review-grid,
      .value-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-box {
        padding: 30px 22px;
      }

      .cta-actions,
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .footer-bottom {
        flex-direction: column;
      }

      .parallax {
        background-attachment: scroll;
      }
    }

/* CONSULTATION PAGE */
.consultation-hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(231, 236, 254, 0.95), transparent 34%),
    radial-gradient(circle at 12% 74%, rgba(237, 116, 16, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.consultation-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -240px;
  border-radius: 50%;
  background: rgba(231, 236, 254, 0.80);
  pointer-events: none;
}

.consultation-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.consultation-copy h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 22px;
}

.consultation-copy > p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 620px;
}

.consultation-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.consultation-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.06);
}

.consultation-point span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(237, 116, 16, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.consultation-point p {
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.consultation-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.10);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(16, 42, 67, 0.13);
}

.consultation-card-header {
  margin-bottom: 24px;
}

.consultation-card-header h2 {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 8px;
}

.consultation-card-header p {
  color: var(--muted);
}

.consultation-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(16, 42, 67, 0.14);
  border-radius: 14px;
  padding: 14px 15px;
  font-family: inherit;
  font-size: 15px;
  color: var(--primary);
  background: #ffffff;
  outline: none;
  transition: 0.2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(237, 116, 16, 0.75);
  box-shadow: 0 0 0 4px rgba(237, 116, 16, 0.10);
}

.consultation-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.consultation-process {
  padding: 90px 0;
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.process-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(237, 116, 16, 0.12);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 22px;
}

.process-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .consultation-hero-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .consultation-hero {
    padding: 58px 0 70px;
  }

  .consultation-card {
    padding: 24px;
    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .consultation-copy h1 {
    font-size: 34px;
  }
}

/* SERVICES OVERVIEW AND DETAIL PAGES */
.page-hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(231, 236, 254, 0.95), transparent 34%),
    radial-gradient(circle at 12% 74%, rgba(237, 116, 16, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -240px;
  border-radius: 50%;
  background: rgba(231, 236, 254, 0.80);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 22px;
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 690px;
  margin-bottom: 28px;
}

.service-hero-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-hero-card {
  min-height: 150px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 42, 67, 0.10);
  box-shadow: 0 22px 55px rgba(16, 42, 67, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.service-hero-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(237, 116, 16, 0.12);
}

.service-hero-card.large {
  grid-row: span 2;
  min-height: 318px;
  background:
    radial-gradient(circle at 75% 18%, rgba(237, 116, 16, 0.18), transparent 24%),
    linear-gradient(145deg, #102A43, #173B5F);
  color: white;
}

.service-hero-card span {
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.service-hero-card.large span {
  color: #ffffff;
  opacity: 0.85;
}

.service-hero-card strong {
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-top: 6px;
  position: relative;
  z-index: 2;
}

.services-page-list,
.service-detail-content,
.service-process,
.related-services,
.service-bundles {
  padding: 92px 0;
  background: #ffffff;
}

.services-page-list {
  background: #ffffff;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-page-card,
.related-service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
  transition: 0.25s ease;
}

.service-page-card:hover,
.related-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-page-card h3,
.related-service-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-page-card p,
.related-service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.service-bundles {
  background: var(--surface);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.bundle-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.bundle-card.featured {
  background:
    radial-gradient(circle at 88% 10%, rgba(237, 116, 16, 0.22), transparent 24%),
    linear-gradient(145deg, #102A43, #173B5F);
  color: white;
  transform: translateY(-12px);
}

.bundle-card h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.bundle-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.bundle-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.bundle-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.bundle-card li {
  color: var(--primary);
  font-weight: 650;
  display: flex;
  gap: 10px;
}

.bundle-card.featured li {
  color: rgba(255, 255, 255, 0.92);
}

.bundle-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.service-detail-visual {
  min-height: 360px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 18%, rgba(237, 116, 16, 0.18), transparent 24%),
    linear-gradient(145deg, #102A43, #173B5F);
  color: white;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 28px 70px rgba(16, 42, 67, 0.18);
  position: relative;
  overflow: hidden;
}

.service-detail-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.25) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 45%, rgba(255,255,255,0.12) 45% 46%, transparent 46%);
  background-size: 42px 42px, 100% 100%;
}

.detail-icon {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}

.service-detail-visual h2,
.service-detail-visual p {
  position: relative;
  z-index: 2;
}

.service-detail-visual h2 {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.service-detail-visual p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 34px;
  align-items: start;
}

.content-main h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.content-main > p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 28px;
}

.feature-list-card,
.service-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.feature-list-card h3,
.service-sidebar h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list.compact {
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}

.check-list li {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  flex: 0 0 auto;
}

.service-sidebar {
  position: sticky;
  top: 108px;
}

.related-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 980px) {
  .page-hero-grid,
  .service-content-grid {
    grid-template-columns: 1fr;
  }

  .services-page-grid,
  .bundle-grid,
  .related-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 650px) {
  .page-hero {
    padding: 58px 0 70px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .service-hero-panel,
  .services-page-grid,
  .bundle-grid,
  .related-service-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .service-hero-card.large {
    min-height: 190px;
    grid-row: auto;
  }

  .bundle-card.featured {
    transform: none;
  }
}

/* SAFE TEXT ICON FIX */
.stat-icon,
.service-icon,
.flow-icon,
.mini-icon,
.detail-icon,
.socials a,
.consultation-point span,
.process-card span {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.service-icon {
  font-size: 14px;
  line-height: 1;
}

.stat-icon {
  font-size: 11px;
  line-height: 1;
}

.flow-icon {
  font-size: 11px;
  line-height: 1;
}

.detail-icon {
  font-size: 22px;
}

.socials a {
  font-size: 12px;
}

.btn {
  line-height: 1;
}

/* WEB ICON FIX */
.service-icon,
.mini-icon,
.detail-icon {
  overflow: hidden;
  white-space: nowrap;
}

.service-icon {
  font-size: 13px;
}

.mini-icon {
  font-size: 11px;
}

.detail-icon {
  font-size: 20px;
}

/* FONT AWESOME ICON STYLING */
.service-icon i,
.stat-icon i,
.flow-icon i,
.mini-icon i,
.detail-icon i,
.socials a i,
.consultation-point span i,
.footer li i,
.btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.service-icon {
  font-size: 24px;
}

.stat-icon {
  font-size: 18px;
}

.flow-icon {
  font-size: 20px;
}

.mini-icon {
  font-size: 15px;
}

.detail-icon {
  font-size: 32px;
}

.footer li i {
  width: 18px;
  color: var(--accent);
  margin-right: 8px;
}

.btn i {
  font-size: 14px;
}

.socials a i {
  font-size: 15px;
}

/* HEADER SERVICES DROPDOWN */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  opacity: 0.86;
  transition: 0.2s ease;
}

.dropdown-toggle:hover {
  opacity: 1;
  color: var(--accent);
}

.dropdown-toggle i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown:focus-within .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 310px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 42, 67, 0.10);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(16, 42, 67, 0.14);
  padding: 10px;
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s ease;
  z-index: 1001;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  opacity: 1;
  transition: 0.18s ease;
}

.dropdown-menu a i {
  width: 22px;
  color: var(--accent);
  font-size: 14px;
  text-align: center;
}

.dropdown-menu a:hover {
  background: rgba(237, 116, 16, 0.08);
  color: var(--accent);
}

.nav-dropdown .dropdown-toggle.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 980px) {
  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown .dropdown-toggle.active::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 14px;
    margin-top: 10px;
    background: rgba(231, 236, 254, 0.42);
    border-color: rgba(16, 42, 67, 0.08);
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .dropdown-menu a {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* ABOUT PAGE */
.about-page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(231, 236, 254, 0.95), transparent 34%),
    radial-gradient(circle at 12% 74%, rgba(237, 116, 16, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-hero-panel {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
}

.about-orbit {
  position: relative;
  width: min(440px, 90vw);
  height: min(440px, 90vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.95) 0 32%, transparent 33%),
    conic-gradient(from 40deg, rgba(237,116,16,0.20), rgba(37,99,235,0.18), rgba(231,236,254,0.85), rgba(237,116,16,0.20));
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 28px 70px rgba(16, 42, 67, 0.13);
}

.about-core {
  position: absolute;
  inset: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 38px;
  background:
    radial-gradient(circle at 76% 20%, rgba(237,116,16,0.30), transparent 22%),
    linear-gradient(145deg, #102A43, #173B5F);
  color: white;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  box-shadow: 0 24px 55px rgba(16, 42, 67, 0.20);
}

.about-core span {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-core strong {
  font-size: 14px;
  margin-top: 8px;
  color: rgba(255,255,255,0.78);
}

.orbit-card {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(16, 42, 67, 0.10);
  box-shadow: 0 16px 35px rgba(16, 42, 67, 0.10);
  color: var(--primary);
  font-weight: 800;
}

.orbit-card i {
  color: var(--accent);
  font-size: 24px;
}

.orbit-card span {
  font-size: 13px;
}

.orbit-web {
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
}

.orbit-ai {
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-seo {
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
}

.orbit-ads {
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.about-story-section,
.mission-vision-section,
.values-section,
.why-choose-section,
.about-process-section {
  padding: 92px 0;
  background: #ffffff;
}

.about-story-grid,
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-story-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(237,116,16,0.12), transparent 22%),
    linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.about-story-card h3 {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.about-story-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.mini-feature-list {
  display: grid;
  gap: 12px;
}

.mini-feature-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
}

.mini-feature-list i {
  color: var(--accent);
}

.mission-vision-section,
.why-choose-section {
  background: var(--surface);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mission-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.mission-card h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.mission-card p {
  color: var(--muted);
}

.values-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.value-page-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.value-page-card span {
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
}

.value-page-card h3 {
  margin-top: 16px;
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.value-page-card p {
  color: var(--muted);
  font-size: 15px;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.why-item > i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(237, 116, 16, 0.10);
  color: var(--accent);
  font-size: 22px;
}

.why-item h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--muted);
  font-size: 15px;
}

.about-stats-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(237,116,16,0.16), transparent 20%),
    linear-gradient(145deg, #102A43, #173B5F);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-stat {
  text-align: center;
  padding: 30px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
}

.about-stat strong {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.about-stat span {
  color: rgba(255,255,255,0.78);
  font-weight: 650;
}

@media (max-width: 980px) {
  .about-story-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid,
  .values-page-grid,
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero-panel {
    min-height: 360px;
  }

  .about-orbit {
    width: 340px;
    height: 340px;
  }

  .about-core {
    width: 155px;
    height: 155px;
  }
}

@media (max-width: 650px) {
  .mission-grid,
  .values-page-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-panel {
    min-height: 320px;
  }

  .about-orbit {
    width: 290px;
    height: 290px;
  }

  .about-core {
    width: 135px;
    height: 135px;
    border-radius: 28px;
  }

  .about-core span {
    font-size: 34px;
  }

  .orbit-card {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .orbit-card i {
    font-size: 19px;
  }

  .orbit-card span {
    font-size: 12px;
  }

  .why-item {
    grid-template-columns: 1fr;
  }
}

/* CLIENTS PAGE */
.clients-page-hero,
.case-study-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(231, 236, 254, 0.95), transparent 34%),
    radial-gradient(circle at 12% 74%, rgba(237, 116, 16, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.clients-hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.clients-showcase-card {
  min-height: 150px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 42, 67, 0.10);
  box-shadow: 0 22px 55px rgba(16, 42, 67, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.clients-showcase-card.large {
  grid-row: span 2;
  min-height: 318px;
  background:
    radial-gradient(circle at 78% 14%, rgba(237,116,16,0.22), transparent 24%),
    linear-gradient(145deg, #102A43, #173B5F);
  color: white;
}

.clients-showcase-card i {
  font-size: 30px;
  color: var(--accent);
}

.clients-showcase-card.large i {
  color: white;
  font-size: 38px;
}

.clients-showcase-card strong {
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.clients-showcase-card span {
  color: var(--muted);
  font-weight: 700;
}

.clients-showcase-card.large span {
  color: rgba(255,255,255,0.76);
}

.clients-intro-section,
.client-work-section,
.client-results-section,
.case-overview-section,
.case-challenge-section,
.case-results-section,
.case-next-section {
  padding: 92px 0;
  background: #ffffff;
}

.client-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.client-proof-item {
  text-align: center;
  padding: 28px 18px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.client-proof-item strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 8px;
}

.client-proof-item span {
  color: var(--muted);
  font-weight: 700;
}

.client-work-section,
.client-results-section {
  background: var(--surface);
}

.client-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.client-work-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(16,42,67,0.07);
  transition: 0.25s ease;
}

.client-work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.client-work-visual {
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(237,116,16,0.60), transparent 16%),
    linear-gradient(145deg, #102A43, #173B5F);
  position: relative;
  overflow: hidden;
}

.client-work-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  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: 34px 34px;
  opacity: 0.45;
}

.client-work-visual i,
.client-work-visual span {
  position: relative;
  z-index: 2;
}

.client-work-visual i {
  font-size: 42px;
}

.client-work-visual span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.client-work-body {
  padding: 26px;
}

.work-category {
  color: var(--accent) !important;
  font-weight: 800;
  font-size: 13px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px !important;
}

.client-work-body h3 {
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.client-work-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.client-tags,
.case-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.client-tags span,
.case-service-tags span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(231,236,254,0.80);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
}

.client-results-grid,
.case-overview-grid,
.case-two-column {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: start;
}

.client-help-list {
  display: grid;
  gap: 16px;
}

.client-help-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 35px rgba(16,42,67,0.06);
}

.client-help-item > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(237,116,16,0.10);
  color: var(--accent);
  border-radius: 14px;
}

.client-help-item h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.client-help-item p {
  color: var(--muted);
  font-size: 15px;
}

.case-visual {
  min-height: 360px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 18%, rgba(237, 116, 16, 0.18), transparent 24%),
    linear-gradient(145deg, #102A43, #173B5F);
  color: white;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 28px 70px rgba(16, 42, 67, 0.18);
}

.case-visual i {
  font-size: 56px;
  color: var(--accent);
  margin-bottom: 24px;
}

.case-visual span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(255,255,255,0.70);
  margin-bottom: 8px;
}

.case-visual strong {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.case-main h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.case-main p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 24px;
}

.case-sidebar,
.case-info-card,
.case-results-list {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.case-sidebar h3 {
  font-size: 15px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 22px;
  margin-bottom: 5px;
}

.case-sidebar h3:first-child {
  margin-top: 0;
}

.case-sidebar p {
  color: var(--primary);
  font-weight: 700;
}

.case-info-card h2 {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.case-info-card p {
  color: var(--muted);
  font-size: 16px;
}

.case-results-list {
  max-width: 900px;
  margin: 44px auto 0;
}

@media (max-width: 980px) {
  .clients-hero-panel,
  .client-work-grid,
  .client-results-grid,
  .case-overview-grid,
  .case-two-column {
    grid-template-columns: 1fr;
  }

  .client-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-showcase-card.large {
    min-height: 220px;
    grid-row: auto;
  }
}

@media (max-width: 650px) {
  .client-proof-grid {
    grid-template-columns: 1fr;
  }

  .client-help-item {
    grid-template-columns: 1fr;
  }

  .case-visual {
    min-height: 260px;
  }
}

/* BLOG AND DYNAMIC CONTENT */
.narrow {
  max-width: 860px;
}

.blog-page-hero,
.blog-detail-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(231, 236, 254, 0.95), transparent 34%),
    radial-gradient(circle at 12% 74%, rgba(237, 116, 16, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.blog-hero-panel {
  min-height: 330px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 18%, rgba(237, 116, 16, 0.18), transparent 24%),
    linear-gradient(145deg, #102A43, #173B5F);
  color: white;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 28px 70px rgba(16, 42, 67, 0.18);
}

.blog-hero-panel i {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 24px;
}

.blog-hero-panel strong {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.blog-hero-panel span {
  color: rgba(255,255,255,0.78);
  margin-top: 10px;
  font-weight: 700;
}

.blog-list-section,
.blog-detail-section {
  padding: 92px 0;
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card,
.empty-state,
.blog-content {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.blog-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  align-items: center;
}

.blog-card-top span {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card-top small {
  color: var(--muted);
  font-weight: 700;
}

.blog-card h2 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.blog-detail-hero {
  padding: 90px 0 70px;
}

.blog-detail-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.blog-detail-hero p {
  color: var(--muted);
  font-weight: 700;
}

.blog-content p {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 22px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
}

.empty-state p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PAGE */
.contact-page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(231, 236, 254, 0.95), transparent 34%),
    radial-gradient(circle at 12% 74%, rgba(237, 116, 16, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contact-hero-panel {
  display: grid;
  gap: 18px;
}

.contact-hero-card {
  min-height: 260px;
  border-radius: 32px;
  padding: 34px;
  background:
    radial-gradient(circle at 82% 14%, rgba(237,116,16,0.22), transparent 24%),
    linear-gradient(145deg, #102A43, #173B5F);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 28px 70px rgba(16, 42, 67, 0.18);
}

.contact-hero-card i {
  font-size: 46px;
  color: var(--accent);
  margin-bottom: 22px;
}

.contact-hero-card strong {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.contact-hero-card span {
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}

.contact-mini-grid {
  display: grid;
  gap: 12px;
}

.contact-mini-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(16,42,67,0.06);
  color: var(--primary);
  font-weight: 700;
}

.contact-mini-grid i {
  color: var(--accent);
  font-size: 19px;
}

.contact-main-section,
.contact-support-section {
  padding: 92px 0;
  background: #ffffff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-info-item > i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(237,116,16,0.10);
  font-size: 22px;
}

.contact-info-item h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--muted);
}

.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-form-header {
  margin-bottom: 24px;
}

.contact-form-header h2 {
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.contact-form-header p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-submit {
  width: 100%;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 700;
}

.form-alert.success {
  background: #dcfce7;
  color: #166534;
}

.form-alert.error {
  background: #fee2e2;
  color: #991b1b;
}

.contact-support-section {
  background: var(--surface);
}

.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.contact-support-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.contact-support-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(237,116,16,0.10);
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-support-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.035em;
}

.contact-support-card p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .contact-form-card {
    padding: 24px;
  }

  .contact-info-item {
    grid-template-columns: 1fr;
  }
}

.form-alert.warning {
  background: #fef3c7;
  color: #92400e;
}

/* CASE OVERVIEW AND CLICKABLE SERVICE CARD PATCH */
.case-main h2 {
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.case-main .case-lead {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 16px;
}

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card-link h3,
.service-card-link p {
  color: inherit;
}

.service-card-link p {
  color: var(--muted);
}

.service-card-link::before {
  content: "Learn more";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.22s ease;
}

.service-card-link:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.service-card-link:hover {
  cursor: pointer;
}

/* PAGINATION */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 42px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-weight: 800;
  background: white;
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(16, 42, 67, 0.05);
}

.pagination a:hover,
.pagination span.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ADMIN MANAGED GOOGLE REVIEWS */
.google-rating-summary {
  max-width: 560px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
}

.google-rating-badge {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(237, 116, 16, 0.10);
  color: var(--accent);
  font-size: 34px;
}

.google-rating-summary strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 6px;
}

.google-rating-summary p {
  color: var(--muted);
  font-weight: 650;
  margin-top: 6px;
}

.reviews-action {
  margin-top: 34px;
  text-align: center;
}

.stars i {
  color: var(--accent);
}

/* HOMEPAGE REVIEWS SLIDER */
.google-rating-summary {
  display: none !important;
}

.review-slider {
  position: relative;
  margin-top: 42px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 16px;
  align-items: center;
}

.review-slider-window {
  overflow: hidden;
  width: 100%;
}

.review-slider-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 22px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
}

.review-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.08);
  transition: 0.22s ease;
  z-index: 2;
}

.review-slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.review-slider-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.review-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.review-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(16, 42, 67, 0.20);
  cursor: pointer;
  transition: 0.2s ease;
}

.review-slider-dots button.active {
  width: 28px;
  background: var(--accent);
}

@media (max-width: 980px) {
  .review-slide {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 650px) {
  .review-slider {
    grid-template-columns: 1fr;
  }

  .review-slider-window {
    order: 1;
  }

  .review-slider-prev,
  .review-slider-next {
    display: none;
  }

  .review-slide {
    flex-basis: 100%;
  }

  .review-slider-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
  }

  .review-slide {
    scroll-snap-align: start;
  }
}

/* BLOG PAGINATION AND RELATED TOPICS */
.blog-pagination-wrap {
  margin-top: 46px;
}

.related-blog-section {
  padding: 20px 0 92px;
  background: #ffffff;
}

.related-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.related-blog-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: var(--primary);
}

.related-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.related-blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.06);
  transition: 0.22s ease;
}

.related-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.related-blog-card h3 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
  color: var(--primary);
}

.related-blog-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .related-blog-grid {
    grid-template-columns: 1fr;
  }

  .related-blog-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* CLIENTS PAGINATION BELOW GRID */
.clients-pagination-wrap {
  margin-top: 46px;
}

/* LEGAL PAGES, NEWSLETTER, COOKIE CONSENT */
.narrow {
  max-width: 900px;
}

.legal-page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(231, 236, 254, 0.95), transparent 34%),
    radial-gradient(circle at 12% 74%, rgba(237, 116, 16, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.legal-content-section {
  padding: 90px 0;
  background: #ffffff;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(26px, 5vw, 48px);
  box-shadow: 0 18px 45px rgba(16, 42, 67, 0.07);
}

.legal-card h2 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--primary);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-card ul {
  padding-left: 22px;
  margin: 12px 0 18px;
}

.legal-card a {
  color: var(--accent);
  font-weight: 800;
}

.legal-updated {
  margin-bottom: 24px;
  color: var(--primary) !important;
}

.legal-note {
  margin-top: 34px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(237, 116, 16, 0.08);
  color: var(--primary) !important;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 13px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.55);
}

.newsletter-form button {
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.newsletter-message {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
}

.newsletter-message.success {
  color: #86efac;
}

.newsletter-message.error {
  color: #fecaca;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(16, 42, 67, 0.22);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.cookie-consent p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.cookie-consent a {
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cookie-consent {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.22s ease;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* HRM LOGO DISPLAY FIX */
.site-logo,
.header-logo,
.logo img,
.brand img,
.navbar-brand img {
  display: block !important;
  width: auto !important;
  max-width: 190px !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.site-brand,
.navbar-brand,
.logo,
.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* HRM LOGO CACHE DISPLAY UPDATE */
.site-logo {
  display: block !important;
  max-width: 190px !important;
  max-height: 58px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* HRM HEADER CLEAN LOGO FIX */
.site-logo {
  display: block !important;
  width: auto !important;
  max-width: 190px !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

/* HRM FINAL MOBILE NAV + REVIEW JUMP FIX */
html {
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

.brand {
  flex-shrink: 0;
}

.brand:focus-visible,
.mobile-toggle:focus-visible,
.nav-menu a:focus-visible {
  outline: 3px solid rgba(237, 116, 16, 0.35);
  outline-offset: 4px;
}

.nav-menu > a,
.dropdown-toggle {
  border-radius: 12px;
}

.nav-menu > a:hover,
.nav-menu > a.active,
.dropdown-toggle:hover,
.dropdown-toggle.active,
.nav-dropdown.open > .dropdown-toggle {
  color: var(--accent);
}

.nav-menu > a.active,
.nav-dropdown.open > .dropdown-toggle {
  background: rgba(237, 116, 16, 0.09);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.active {
  background: rgba(237, 116, 16, 0.10);
  color: var(--accent);
}

.mobile-toggle.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.review-slider-track {
  will-change: transform;
}

@media (max-width: 980px) {
  .header {
    z-index: 9999;
  }

  .nav {
    height: 74px;
  }

  .site-logo {
    max-height: 48px !important;
    max-width: 176px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .mobile-toggle {
    display: grid !important;
    place-items: center !important;
    flex: 0 0 auto !important;
    z-index: 10001;
  }

  .nav-menu {
    position: fixed !important;
    top: 74px !important;
    left: 0 !important;
    right: 0 !important;
    display: none !important;
    width: 100% !important;
    max-height: calc(100dvh - 74px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.99) !important;
    backdrop-filter: blur(18px);
    padding: 16px 18px 28px !important;
    border-bottom: 1px solid rgba(16, 42, 67, 0.10);
    box-shadow: 0 24px 48px rgba(16, 42, 67, 0.14);
    z-index: 10000;
  }

  .nav-menu.show {
    display: flex !important;
  }

  .nav-menu > a,
  .dropdown-toggle {
    width: 100%;
    min-height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px !important;
    border-radius: 14px;
    color: var(--primary);
    opacity: 1 !important;
    background: rgba(16, 42, 67, 0.035);
  }

  .nav-menu > a:hover,
  .nav-menu > a.active,
  .dropdown-toggle:hover,
  .dropdown-toggle.active,
  .nav-dropdown.open > .dropdown-toggle {
    background: rgba(237, 116, 16, 0.12) !important;
    color: var(--accent) !important;
  }

  .nav-menu a.active::after,
  .nav-dropdown .dropdown-toggle.active::after {
    display: none !important;
  }

  .nav-dropdown {
    width: 100%;
    display: block !important;
  }

  .dropdown-toggle i {
    margin-left: auto;
    transition: transform 0.2s ease;
  }

  .nav-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    transform: none !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    margin-top: 8px;
    padding: 8px !important;
    border-radius: 16px !important;
    background: rgba(247, 249, 252, 0.98) !important;
    box-shadow: none !important;
    border: 1px solid rgba(16, 42, 67, 0.08) !important;
    max-height: none !important;
  }

  .dropdown-menu::before {
    display: none !important;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid !important;
    gap: 6px !important;
  }

  .dropdown-menu a {
    min-height: 44px;
    padding: 11px 12px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    background: #ffffff;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    background: rgba(237, 116, 16, 0.12) !important;
    color: var(--accent) !important;
  }

  .nav .btn {
    display: none !important;
  }

  .review-slider-track {
    transition: transform 0.25s ease;
  }
}

@media (max-width: 430px) {
  .site-logo {
    max-width: 150px !important;
    max-height: 42px !important;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-menu {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
