:root {
      --navy: #050817;
      --navy-soft: #0a1024;
      --navy-card: rgba(13, 18, 42, 0.76);
      --gold: #ffc24d;
      --gold-dark: #d98d0b;
      --violet: #7c3aed;
      --violet-light: #ae63ff;
      --silver: #e8eaf1;
      --white: #ffffff;
      --muted: #aeb5ca;
      --border: rgba(255, 194, 77, 0.22);
      --violet-border: rgba(124, 58, 237, 0.35);
      --shadow-gold: 0 0 35px rgba(255, 178, 38, 0.25);
      --shadow-violet: 0 0 45px rgba(124, 58, 237, 0.28);
      --radius: 22px;
      --header-height: 82px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
    }

    body {
      overflow-x: hidden;
      color: var(--silver);
      background:
        radial-gradient(
          circle at 15% 10%,
          rgba(124, 58, 237, 0.1),
          transparent 28%
        ),
        radial-gradient(
          circle at 85% 10%,
          rgba(255, 165, 20, 0.08),
          transparent 28%
        ),
        var(--navy);
      font-family: "Poppins", sans-serif;
      line-height: 1.6;
    }

    body.menu-open {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    ::selection {
      color: var(--navy);
      background: var(--gold);
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section {
      position: relative;
      padding: 115px 0;
    }

    .section-dark {
      background: rgba(8, 12, 29, 0.76);
    }

    .section-heading {
      max-width: 780px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .section-heading h2,
    .about-content h2,
    .contact-copy h2 {
      margin: 18px 0;
      color: var(--white);
      font-family: "Exo 2", sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      line-height: 1.1;
      letter-spacing: -0.035em;
    }

    .section-heading p,
    .about-content > p,
    .contact-copy > p {
      color: var(--muted);
      font-size: 1.04rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--gold);
      font-family: "Exo 2", sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 28px;
      height: 1px;
      content: "";
      background: linear-gradient(
        90deg,
        transparent,
        var(--gold)
      );
      box-shadow: 0 0 8px var(--gold);
    }

    .gradient-text {
      color: transparent;
      background: linear-gradient(
        90deg,
        var(--gold),
        #ffe09a,
        var(--violet-light)
      );
      -webkit-background-clip: text;
      background-clip: text;
    }

    .button {
      display: inline-flex;
      min-height: 52px;
      padding: 0 25px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 11px;
      font-weight: 700;
      transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    }

    .button:hover {
      transform: translateY(-3px);
    }

    .button-primary {
      color: #17101f;
      background: linear-gradient(
        135deg,
        var(--gold),
        #ff9f1c
      );
      box-shadow: var(--shadow-gold);
    }

    .button-primary:hover {
      box-shadow: 0 0 50px rgba(255, 178, 38, 0.42);
    }

    .button-secondary {
      color: var(--white);
      border-color: rgba(174, 99, 255, 0.5);
      background: rgba(124, 58, 237, 0.08);
    }

    .button-secondary:hover {
      border-color: var(--violet-light);
      background: rgba(124, 58, 237, 0.17);
      box-shadow: var(--shadow-violet);
    }

    .button-full {
      width: 100%;
    }

    /* Header */

    .header {
      position: fixed;
      z-index: 1000;
      top: 0;
      right: 0;
      left: 0;
      transition:
        background 0.25s ease,
        border-color 0.25s ease;
    }

    .header.scrolled {
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(5, 8, 23, 0.88);
      backdrop-filter: blur(18px);
    }

    .navigation-wrapper {
      display: flex;
      min-height: var(--header-height);
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .brand-symbol {
      position: relative;
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border: 1px solid rgba(255, 194, 77, 0.4);
      border-radius: 15px;
      background:
        linear-gradient(
          145deg,
          rgba(255, 194, 77, 0.12),
          rgba(124, 58, 237, 0.15)
        );
      box-shadow:
        0 0 18px rgba(255, 194, 77, 0.15),
        inset 0 0 20px rgba(124, 58, 237, 0.12);
    }

    .brand-symbol::before {
      position: absolute;
      inset: 5px;
      border: 1px solid rgba(174, 99, 255, 0.35);
      border-radius: 11px;
      content: "";
    }

    .brand-symbol span {
      z-index: 2;
      color: transparent;
      background: linear-gradient(
        135deg,
        var(--gold),
        var(--violet-light)
      );
      font-family: "Exo 2", sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      -webkit-background-clip: text;
      background-clip: text;
    }

    .brand-name {
      color: var(--white);
      font-family: "Exo 2", sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.03em;
    }

    .brand-name span {
      color: var(--gold);
      font-weight: 600;
    }

    .navigation {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .navigation > a:not(.button) {
      position: relative;
      color: #d8dbea;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .navigation > a:not(.button)::after {
      position: absolute;
      right: 0;
      bottom: -8px;
      left: 0;
      width: 0;
      height: 1px;
      margin: auto;
      content: "";
      background: var(--gold);
      box-shadow: 0 0 8px var(--gold);
      transition: width 0.2s ease;
    }

    .navigation > a:not(.button):hover {
      color: var(--white);
    }

    .navigation > a:not(.button):hover::after {
      width: 100%;
    }

    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      padding: 7px;
      border: 0;
      background: transparent;
    }

    .menu-button span {
      display: block;
      width: 26px;
      height: 2px;
      margin: 6px auto;
      border-radius: 3px;
      background: var(--white);
      transition: 0.25s ease;
    }

    /* Hero */

    .hero {
      position: relative;
      display: flex;
      min-height: 100vh;
      padding: calc(var(--header-height) + 60px) 0 85px;
      align-items: center;
      overflow: hidden;
    }

    .hero::before {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(
          rgba(124, 58, 237, 0.035) 1px,
          transparent 1px
        ),
        linear-gradient(
          90deg,
          rgba(124, 58, 237, 0.035) 1px,
          transparent 1px
        );
      background-size: 55px 55px;
      mask-image: linear-gradient(
        to bottom,
        black,
        transparent 85%
      );
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      align-items: center;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 70px;
    }

    .hero-copy h1 {
      margin: 22px 0 24px;
      color: var(--white);
      font-family: "Exo 2", sans-serif;
      font-size: clamp(3.1rem, 6.3vw, 6.4rem);
      font-weight: 800;
      line-height: 0.96;
      letter-spacing: -0.065em;
    }

    .hero-copy h1 small {
      display: block;
      margin-top: 18px;
      color: var(--gold);
      font-family: "Poppins", sans-serif;
      font-size: clamp(1rem, 2vw, 1.45rem);
      font-weight: 500;
      line-height: 1.4;
      letter-spacing: 0.01em;
    }

    .hero-copy > p {
      max-width: 670px;
      color: var(--muted);
      font-size: 1.12rem;
    }

    .hero-actions {
      display: flex;
      margin: 35px 0;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-values {
      display: flex;
      flex-wrap: wrap;
      gap: 11px;
    }

    .hero-values span {
      padding: 7px 12px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 999px;
      color: #c5cada;
      background: rgba(255, 255, 255, 0.025);
      font-size: 0.78rem;
      letter-spacing: 0.04em;
    }

    /* Portal */

    .portal-container {
      position: relative;
      display: grid;
      min-height: 550px;
      place-items: center;
    }

    .portal {
      position: relative;
      width: min(430px, 90vw);
      aspect-ratio: 1;
      border-radius: 50%;
      background:
        radial-gradient(
          circle,
          rgba(255, 210, 118, 0.85) 0 2%,
          rgba(124, 58, 237, 0.25) 16%,
          rgba(10, 16, 36, 0.92) 48%,
          #050817 69%
        );
      box-shadow:
        0 0 45px rgba(124, 58, 237, 0.35),
        0 0 90px rgba(255, 166, 25, 0.15);
    }

    .portal::before,
    .portal::after {
      position: absolute;
      border-radius: 50%;
      content: "";
    }

    .portal::before {
      inset: -18px;
      border:
        3px solid rgba(174, 99, 255, 0.72);
      box-shadow:
        0 0 14px var(--violet-light),
        inset 0 0 18px rgba(174, 99, 255, 0.65);
      animation: pulseViolet 2.8s ease-in-out infinite;
    }

    .portal::after {
      inset: -42px;
      border:
        3px dashed rgba(255, 194, 77, 0.66);
      box-shadow:
        0 0 14px rgba(255, 194, 77, 0.7),
        inset 0 0 20px rgba(255, 194, 77, 0.4);
      animation: rotatePortal 18s linear infinite;
    }

    .portal-ring {
      position: absolute;
      border-radius: 50%;
    }

    .portal-ring-one {
      inset: -66px;
      border: 1px solid rgba(124, 58, 237, 0.36);
      animation: rotatePortal 26s linear reverse infinite;
    }

    .portal-ring-two {
      inset: -88px;
      border: 1px dashed rgba(255, 194, 77, 0.22);
      animation: rotatePortal 35s linear infinite;
    }

    .portal-city {
      position: absolute;
      right: 15%;
      bottom: 15%;
      left: 15%;
      display: flex;
      height: 45%;
      align-items: end;
      justify-content: center;
      gap: 8px;
      filter: drop-shadow(0 0 12px rgba(255, 194, 77, 0.4));
    }

    .building {
      width: 10%;
      border: 1px solid rgba(255, 213, 130, 0.7);
      border-radius: 4px 4px 0 0;
      background:
        repeating-linear-gradient(
          to bottom,
          rgba(255, 226, 164, 0.8) 0 3px,
          transparent 3px 11px
        ),
        linear-gradient(
          to top,
          rgba(25, 16, 53, 0.95),
          rgba(124, 58, 237, 0.4)
        );
      box-shadow:
        inset 0 0 10px rgba(174, 99, 255, 0.35),
        0 0 10px rgba(255, 194, 77, 0.15);
    }

    .building:nth-child(1) {
      height: 42%;
    }

    .building:nth-child(2) {
      height: 70%;
    }

    .building:nth-child(3) {
      height: 51%;
    }

    .building:nth-child(4) {
      height: 94%;
    }

    .building:nth-child(5) {
      height: 63%;
    }

    .building:nth-child(6) {
      height: 82%;
    }

    .building:nth-child(7) {
      height: 47%;
    }

    .portal-floor {
      position: absolute;
      right: -55px;
      bottom: -80px;
      left: -55px;
      height: 155px;
      border-radius: 50%;
      background:
        repeating-radial-gradient(
          ellipse at center,
          transparent 0 18px,
          rgba(124, 58, 237, 0.28) 19px 21px,
          transparent 22px 36px,
          rgba(255, 194, 77, 0.2) 37px 39px
        );
      transform: perspective(330px) rotateX(67deg);
      filter: drop-shadow(0 0 18px rgba(124, 58, 237, 0.35));
    }

    .orbit-dot {
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 16px var(--gold);
    }

    .orbit-dot-one {
      top: 5%;
      right: 3%;
      animation: floatDot 3.8s ease-in-out infinite;
    }

    .orbit-dot-two {
      bottom: 12%;
      left: 2%;
      background: var(--violet-light);
      box-shadow: 0 0 16px var(--violet-light);
      animation: floatDot 4.6s ease-in-out infinite reverse;
    }

    /* Decorative lines */

    .energy-wave {
      position: absolute;
      right: -5%;
      bottom: 5%;
      left: -5%;
      height: 210px;
      opacity: 0.65;
      pointer-events: none;
    }

    .energy-wave span {
      position: absolute;
      right: 0;
      left: 0;
      height: 2px;
      border-radius: 50%;
      background:
        linear-gradient(
          90deg,
          transparent,
          var(--violet-light),
          var(--gold),
          transparent
        );
      box-shadow:
        0 0 12px rgba(124, 58, 237, 0.8),
        0 0 18px rgba(255, 194, 77, 0.4);
      transform: skewY(-4deg);
    }

    .energy-wave span:nth-child(1) {
      top: 70px;
      animation: waveMove 6s ease-in-out infinite;
    }

    .energy-wave span:nth-child(2) {
      top: 105px;
      opacity: 0.55;
      animation: waveMove 7.5s ease-in-out infinite reverse;
    }

    .energy-wave span:nth-child(3) {
      top: 140px;
      opacity: 0.35;
      animation: waveMove 9s ease-in-out infinite;
    }

    /* Areas */

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .area-card {
      position: relative;
      min-height: 310px;
      padding: 30px 24px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius);
      background:
        linear-gradient(
          145deg,
          rgba(15, 21, 48, 0.92),
          rgba(6, 9, 24, 0.95)
        );
      transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    }

    .area-card::before {
      position: absolute;
      top: -85px;
      left: -85px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      content: "";
      background: rgba(124, 58, 237, 0.14);
      filter: blur(14px);
    }

    .area-card:nth-child(even)::before {
      background: rgba(255, 194, 77, 0.11);
    }

    .area-card:hover {
      border-color: rgba(174, 99, 255, 0.45);
      box-shadow: var(--shadow-violet);
      transform: translateY(-9px);
    }

    .area-card:nth-child(even):hover {
      border-color: rgba(255, 194, 77, 0.42);
      box-shadow: var(--shadow-gold);
    }

    .area-number {
      position: absolute;
      top: 18px;
      right: 20px;
      color: rgba(255, 255, 255, 0.08);
      font-family: "Exo 2", sans-serif;
      font-size: 2rem;
      font-weight: 800;
    }

    .area-icon,
    .service-icon,
    .value-icon {
      display: grid;
      width: 58px;
      height: 58px;
      margin-bottom: 23px;
      place-items: center;
      border: 1px solid rgba(174, 99, 255, 0.42);
      border-radius: 17px;
      color: var(--violet-light);
      background: rgba(124, 58, 237, 0.08);
      box-shadow: inset 0 0 18px rgba(124, 58, 237, 0.12);
    }

    .area-card:nth-child(even) .area-icon {
      color: var(--gold);
      border-color: rgba(255, 194, 77, 0.4);
      background: rgba(255, 194, 77, 0.06);
    }

    .area-icon svg,
    .service-icon svg,
    .value-icon svg {
      width: 29px;
      height: 29px;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 1.7;
    }

    .area-card h3,
    .service-card h3 {
      margin-bottom: 12px;
      color: var(--white);
      font-family: "Exo 2", sans-serif;
      font-size: 1.24rem;
    }

    .area-card p,
    .service-card p,
    .value-card p {
      color: var(--muted);
      font-size: 0.91rem;
    }

    /* About */

    .about-grid {
      display: grid;
      align-items: center;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 85px;
    }

    .identity-visual {
      position: relative;
      display: grid;
      min-height: 520px;
      place-items: center;
    }

    .identity-circle {
      position: relative;
      display: grid;
      width: min(390px, 88vw);
      aspect-ratio: 1;
      place-items: center;
      border: 2px solid rgba(255, 194, 77, 0.65);
      border-radius: 50%;
      box-shadow:
        0 0 24px rgba(255, 194, 77, 0.2),
        inset 0 0 35px rgba(124, 58, 237, 0.13);
    }

    .identity-circle::before,
    .identity-circle::after {
      position: absolute;
      border-radius: 50%;
      content: "";
    }

    .identity-circle::before {
      inset: 18px;
      border: 1px solid rgba(174, 99, 255, 0.45);
    }

    .identity-circle::after {
      inset: -24px;
      border: 1px dashed rgba(255, 194, 77, 0.28);
      animation: rotatePortal 32s linear infinite;
    }

    .identity-monogram {
      position: relative;
      display: grid;
      width: 210px;
      height: 210px;
      place-items: center;
      border-radius: 45% 55% 52% 48%;
      background:
        linear-gradient(
          145deg,
          rgba(255, 194, 77, 0.88),
          rgba(124, 58, 237, 0.92)
        );
      box-shadow:
        0 0 45px rgba(124, 58, 237, 0.32),
        0 0 25px rgba(255, 194, 77, 0.23);
      transform: rotate(-8deg);
    }

    .identity-monogram span {
      color: var(--navy);
      font-family: "Exo 2", sans-serif;
      font-size: 4.4rem;
      font-weight: 800;
      letter-spacing: -0.15em;
      transform: translateX(-6px) rotate(8deg);
    }

    .identity-label {
      position: absolute;
      padding: 10px 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 999px;
      color: var(--silver);
      background: rgba(5, 8, 23, 0.82);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      backdrop-filter: blur(10px);
    }

    .label-one {
      top: 8%;
      left: -2%;
    }

    .label-two {
      top: 40%;
      right: -5%;
    }

    .label-three {
      bottom: 7%;
      left: 6%;
    }

    .about-content blockquote {
      margin: 28px 0;
      padding: 24px 26px;
      border-left: 3px solid var(--gold);
      border-radius: 0 14px 14px 0;
      color: var(--white);
      background: rgba(255, 194, 77, 0.055);
      font-family: "Exo 2", sans-serif;
      font-size: 1.18rem;
    }

    .about-points {
      display: grid;
      margin-top: 30px;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .about-point {
      padding: 19px;
      border: 1px solid rgba(255, 255, 255, 0.075);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.025);
    }

    .about-point strong {
      display: block;
      margin-bottom: 5px;
      color: var(--gold);
      font-family: "Exo 2", sans-serif;
    }

    .about-point span {
      color: var(--muted);
      font-size: 0.85rem;
    }

    /* Services */

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      position: relative;
      padding: 34px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius);
      background: var(--navy-card);
      backdrop-filter: blur(12px);
      transition:
        transform 0.25s ease,
        border-color 0.25s ease;
    }

    .service-card:hover {
      border-color: var(--border);
      transform: translateY(-7px);
    }

    .service-card::after {
      position: absolute;
      right: -70px;
      bottom: -70px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      content: "";
      background: rgba(124, 58, 237, 0.12);
      filter: blur(15px);
    }

    .service-icon {
      color: var(--gold);
      border-color: rgba(255, 194, 77, 0.35);
      background: rgba(255, 194, 77, 0.06);
    }

    .service-link {
      display: inline-flex;
      margin-top: 24px;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      font-size: 0.85rem;
      font-weight: 600;
    }

    .service-link span {
      transition: transform 0.2s ease;
    }

    .service-link:hover span {
      transform: translateX(5px);
    }

    /* Values */

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .value-card {
      display: flex;
      padding: 25px;
      align-items: flex-start;
      gap: 17px;
      border: 1px solid rgba(255, 255, 255, 0.075);
      border-radius: 17px;
      background: rgba(255, 255, 255, 0.025);
    }

    .value-icon {
      width: 48px;
      height: 48px;
      margin: 0;
      flex: 0 0 48px;
      color: var(--gold);
      border-color: rgba(255, 194, 77, 0.3);
      background: rgba(255, 194, 77, 0.045);
    }

    .value-icon svg {
      width: 23px;
      height: 23px;
    }

    .value-card h3 {
      margin-bottom: 6px;
      color: var(--white);
      font-family: "Exo 2", sans-serif;
      font-size: 1.05rem;
    }

    /* Impact */

    .impact {
      overflow: hidden;
      background:
        linear-gradient(
          135deg,
          rgba(124, 58, 237, 0.15),
          rgba(255, 194, 77, 0.07)
        );
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .impact-card {
      padding: 35px 25px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 18px;
      text-align: center;
      background: rgba(5, 8, 23, 0.52);
      backdrop-filter: blur(10px);
    }

    .impact-number {
      display: block;
      color: var(--gold);
      font-family: "Exo 2", sans-serif;
      font-size: clamp(2.3rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1;
      text-shadow: 0 0 20px rgba(255, 194, 77, 0.25);
    }

    .impact-card p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    /* FAQ */

    .faq-grid {
      display: grid;
      align-items: start;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 75px;
    }

    .faq-intro {
      position: sticky;
      top: 120px;
    }

    .faq-intro h2 {
      margin: 18px 0;
      color: var(--white);
      font-family: "Exo 2", sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.1;
    }

    .faq-intro p {
      color: var(--muted);
    }

    .accordion-item {
      margin-bottom: 14px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.085);
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.025);
    }

    .accordion-header {
      display: flex;
      width: 100%;
      padding: 23px;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border: 0;
      color: var(--white);
      background: transparent;
      text-align: left;
      font-weight: 600;
    }

    .accordion-header span {
      color: var(--gold);
      font-size: 1.5rem;
      font-weight: 400;
      transition: transform 0.25s ease;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .accordion-content p {
      padding: 0 23px 23px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .accordion-item.active {
      border-color: rgba(255, 194, 77, 0.25);
    }

    .accordion-item.active .accordion-header span {
      transform: rotate(45deg);
    }

    /* Contact */

    .contact-grid {
      display: grid;
      align-items: start;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 70px;
    }

    .contact-details {
      display: grid;
      margin-top: 35px;
      gap: 15px;
    }

    .contact-detail {
      display: flex;
      padding: 17px;
      align-items: center;
      gap: 15px;
      border: 1px solid rgba(255, 255, 255, 0.075);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.025);
    }

    .contact-detail-icon {
      display: grid;
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      place-items: center;
      border-radius: 12px;
      color: var(--gold);
      background: rgba(255, 194, 77, 0.07);
    }

    .contact-detail-icon svg {
      width: 21px;
      height: 21px;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 1.8;
    }

    .contact-detail small,
    .contact-detail strong {
      display: block;
    }

    .contact-detail small {
      color: var(--muted);
    }

    .contact-detail strong {
      color: var(--white);
      font-size: 0.93rem;
    }

    .contact-form {
      padding: 38px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: var(--radius);
      background:
        linear-gradient(
          145deg,
          rgba(16, 22, 49, 0.9),
          rgba(7, 10, 26, 0.94)
        );
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 17px;
    }

    .form-group {
      display: grid;
      gap: 8px;
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-group label {
      color: #dfe2ec;
      font-size: 0.82rem;
      font-weight: 600;
    }

    .form-control {
      width: 100%;
      min-height: 50px;
      padding: 13px 15px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      outline: none;
      border-radius: 10px;
      color: var(--white);
      background: rgba(255, 255, 255, 0.035);
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    }

    .form-control:focus {
      border-color: rgba(174, 99, 255, 0.65);
      box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    }

    .form-control::placeholder {
      color: #70788f;
    }

    textarea.form-control {
      min-height: 145px;
      resize: vertical;
    }

    select.form-control {
      color-scheme: dark;
    }

    .form-message {
      display: none;
      margin-top: 16px;
      padding: 12px 14px;
      border: 1px solid rgba(77, 223, 167, 0.26);
      border-radius: 9px;
      color: #7ee8be;
      background: rgba(77, 223, 167, 0.06);
      font-size: 0.85rem;
    }

    .form-message.visible {
      display: block;
    }

    /* Footer */

    .footer {
      padding: 70px 0 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      background: #030511;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 45px;
    }

    .footer .brand {
      margin-bottom: 20px;
    }

    .footer-description {
      max-width: 350px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .footer h3 {
      margin-bottom: 18px;
      color: var(--white);
      font-family: "Exo 2", sans-serif;
      font-size: 1rem;
    }

    .footer-column a {
      display: block;
      width: fit-content;
      margin-bottom: 11px;
      color: var(--muted);
      font-size: 0.87rem;
      transition: color 0.2s ease;
    }

    .footer-column a:hover {
      color: var(--gold);
    }

    .socials {
      display: flex;
      margin-top: 25px;
      gap: 10px;
    }

    .social-link {
      display: grid;
      width: 40px;
      height: 40px;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 11px;
      color: var(--gold);
      background: rgba(255, 255, 255, 0.025);
    }

    .social-link:hover {
      border-color: rgba(255, 194, 77, 0.35);
      box-shadow: var(--shadow-gold);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-bottom {
      display: flex;
      margin-top: 55px;
      padding-top: 24px;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      color: #70788f;
      font-size: 0.79rem;
    }

    .footer-values {
      color: var(--gold);
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }

    /* Reveal animation */

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Animations */

    @keyframes rotatePortal {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes pulseViolet {
      0%,
      100% {
        opacity: 0.72;
        transform: scale(0.985);
      }

      50% {
        opacity: 1;
        transform: scale(1.015);
      }
    }

    @keyframes floatDot {
      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-18px);
      }
    }

    @keyframes waveMove {
      0%,
      100% {
        transform: translateX(-2%) skewY(-4deg);
      }

      50% {
        transform: translateX(2%) skewY(4deg);
      }
    }

    /* Responsive */

    @media (max-width: 1100px) {
      .menu-button {
        display: block;
      }

      .navigation {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: min(390px, 100%);
        height: calc(100vh - var(--header-height));
        padding: 40px 30px;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(5, 8, 23, 0.98);
        transition: right 0.3s ease;
      }

      .navigation.active {
        right: 0;
      }

      .navigation > a:not(.button) {
        font-size: 1rem;
      }

      .menu-button.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .menu-button.active span:nth-child(2) {
        opacity: 0;
      }

      .menu-button.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        text-align: center;
      }

      .hero-copy > p {
        margin-inline: auto;
      }

      .hero-actions,
      .hero-values {
        justify-content: center;
      }

      .portal-container {
        min-height: 500px;
      }

      .areas-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .identity-visual {
        order: 2;
      }

      .services-grid,
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .impact-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .faq-intro {
        position: static;
        text-align: center;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .section {
        padding: 82px 0;
      }

      .hero {
        padding-top: calc(var(--header-height) + 45px);
      }

      .hero-copy h1 {
        font-size: clamp(3rem, 16vw, 4.8rem);
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .button {
        width: 100%;
      }

      .portal-container {
        min-height: 390px;
      }

      .portal {
        width: min(280px, 75vw);
      }

      .portal-ring-two,
      .portal-ring-one {
        display: none;
      }

      .areas-grid,
      .services-grid,
      .values-grid,
      .impact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .area-card {
        min-height: auto;
      }

      .about-points,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-group.full {
        grid-column: auto;
      }

      .contact-form {
        padding: 27px 20px;
      }

      .identity-visual {
        min-height: 410px;
      }

      .identity-circle {
        width: min(290px, 80vw);
      }

      .identity-monogram {
        width: 150px;
        height: 150px;
      }

      .identity-monogram span {
        font-size: 3.1rem;
      }

      .identity-label {
        font-size: 0.66rem;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-values {
        line-height: 1.8;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }