/* =========================================================
   1. GLOBAL STYLES
========================================================= */

:root {
    --bg-main: #03040a;
    --bg-soft: #070917;
    --bg-card: rgba(255, 255, 255, 0.055);
    --bg-card-hover: rgba(255, 255, 255, 0.09);
  
    --text-main: #ffffff;
    --text-muted: #a9b0c3;
    --text-soft: #d9def0;
  
    --line-soft: rgba(255, 255, 255, 0.12);
  
    --accent-red: #ff285c;
    --accent-blue: #315dff;
    --accent-cyan: #35e7ff;
    --accent-purple: #9b5cff;
  
    --container: 1180px;
    --radius-large: 28px;
    --radius-medium: 18px;
    --transition: 0.25s ease;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    background:
      radial-gradient(circle at top left, rgba(49, 93, 255, 0.18), transparent 32rem),
      radial-gradient(circle at top right, rgba(255, 40, 92, 0.15), transparent 30rem),
      var(--bg-main);
    color: var(--text-main);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  ::selection {
    background: var(--accent-cyan);
    color: #02030a;
  }
  
  
  /* =========================================================
     2. NAVIGATION BAR
  ========================================================= */
  
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 24px;
  }
  
  .navbar {
    max-width: var(--container);
    margin: 0 auto;
    min-height: 64px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    background: rgba(5, 7, 16, 0.7);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  }
  
  .nav-logo {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: var(--text-main);
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
  }
  
  .nav-links a:hover {
    color: var(--text-main);
  }
  
  .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-soft);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    padding: 0;
  }
  
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
  }
  
  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  
  /* =========================================================
     3. HERO / NEON TEXT EFFECT
  ========================================================= */
  
  .hero-section {
    position: relative;
    min-height: 100vh;
    padding: 150px 24px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
    opacity: 0.35;
    pointer-events: none;
  }
  
  .hero-glow {
    position: absolute;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
  }
  
  .hero-glow-one {
    top: 12%;
    left: -10rem;
    background: var(--accent-blue);
  }
  
  .hero-glow-two {
    right: -12rem;
    bottom: 12%;
    background: var(--accent-red);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    width: 100%;
    text-align: center;
  }
  
  .text-effect-wrapper,
  .text {
    position: relative;
  }
  
  .text-effect-wrapper::before,
  .text-effect-wrapper::after,
  .text::before,
  .text::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .text-effect-wrapper {
    --spotlight-color: white;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    isolation: isolate;
  }
  
  .text-effect-wrapper::before {
    animation: shimmer 5s infinite linear;
    background:
      radial-gradient(circle, var(--spotlight-color), transparent 25%) 0 0 / 25% 25%,
      radial-gradient(circle, var(--spotlight-color), black 25%) 50% 50% / 12.5% 12.5%;
    inset-block-start: -100%;
    inset-inline-start: -100%;
    mix-blend-mode: color-dodge;
    z-index: 3;
  }
  
  .text-effect-wrapper::after {
    backdrop-filter: blur(1px) brightness(90%) contrast(150%);
    z-index: 4;
  }
  
  @keyframes shimmer {
    100% {
      transform: translate3d(50%, 50%, 0);
    }
  }
  
  .text {
    --background-color: black;
    --text-color: white;
    --color-1: var(--accent-red);
    --color-2: var(--accent-blue);
  
    position: relative;
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: clamp(4.4rem, 13.5vw, 14rem);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -0.075em;
  
    color: transparent;
    text-shadow:
      0 0 0.02em var(--background-color),
      0 0 0.02em var(--text-color),
      0 0 0.02em var(--text-color),
      0 0 0.02em var(--text-color);
  }
  
  .text::before {
    backdrop-filter: blur(0.013em) brightness(400%);
    z-index: 1;
  }
  
  .text::after {
    background: linear-gradient(45deg, var(--color-1), var(--color-2));
    mix-blend-mode: multiply;
    z-index: 2;
  }
  
  .hero-kicker {
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-soft);
  }
  
  .hero-description {
    max-width: 820px;
    margin: 18px auto 0;
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    color: var(--text-muted);
  }
  
  .hero-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  
  /* =========================================================
     4. BUTTONS
  ========================================================= */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.93rem;
    font-weight: 700;
    transition:
      transform var(--transition),
      border-color var(--transition),
      background var(--transition),
      color var(--transition);
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn-primary {
    color: #050711;
    background: linear-gradient(135deg, var(--accent-cyan), #ffffff);
    box-shadow: 0 0 34px rgba(53, 231, 255, 0.18);
  }
  
  .btn-secondary {
    color: var(--text-main);
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.045);
  }
  
  .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.35);
  }
  
  
  /* =========================================================
     5. COMMON SECTION STYLES
  ========================================================= */
  
  .section {
    padding: 110px 24px;
    position: relative;
  }
  
  .section-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
  }
  
  .two-column {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
  }
  
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-cyan);
  }
  
  .section-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
  }
  
  .section h2 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(2rem, 4.2vw, 4.1rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }
  
  .section-heading {
    margin-bottom: 48px;
  }
  
  .section-heading p {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--text-muted);
    font-size: 1.05rem;
  }
  
  .section-text-block p {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 1.04rem;
  }
  
  
  /* =========================================================
     6. ABOUT COMPANY
  ========================================================= */
  
  .about-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
      var(--bg-main);
  }
  
  .company-info-card {
    margin-top: 34px;
    padding: 28px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-large);
    background: var(--bg-card);
    backdrop-filter: blur(18px);
  }
  
  .company-info-card p {
    margin: 0 0 10px;
    color: var(--text-soft);
  }
  
  .company-info-card p:last-child {
    margin-bottom: 0;
  }
  
  
  /* =========================================================
     7. SERVICES
  ========================================================= */
  
  .services-section {
    background:
      radial-gradient(circle at 18% 20%, rgba(53, 231, 255, 0.08), transparent 28rem),
      var(--bg-soft);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .service-card {
    min-height: 310px;
    padding: 30px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-large);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    transition:
      transform var(--transition),
      background var(--transition),
      border-color var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(53, 231, 255, 0.32);
  }
  
  .service-card h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
  }
  
  .service-card p {
    margin: 0;
    color: var(--text-muted);
  }
  
  
  /* =========================================================
     8. STAGWARE APPROACH / ACRONYM BLOCK
  ========================================================= */
  
  .approach-section {
    background:
      radial-gradient(circle at 80% 10%, rgba(155, 92, 255, 0.12), transparent 26rem),
      var(--bg-main);
  }
  
  .acronym-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  
  .acronym-card {
    position: relative;
    min-height: 230px;
    padding: 26px;
    overflow: hidden;
  
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.045);
    transition:
      transform var(--transition),
      border-color var(--transition),
      background var(--transition);
  }
  
  .acronym-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(53, 231, 255, 0.22), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
  }
  
  .acronym-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
  }
  
  .acronym-card:hover::after {
    opacity: 1;
  }
  
  .acronym-letter {
    display: block;
    margin-bottom: 32px;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-cyan);
    text-shadow: 0 0 24px rgba(53, 231, 255, 0.2);
  }
  
  .acronym-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
  }
  
  .acronym-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
  }
  
  
/* =========================================================
   9. CONTACT
========================================================= */

.contact-section {
    background:
      linear-gradient(180deg, transparent, rgba(53, 231, 255, 0.035)),
      var(--bg-soft);
  }
  
  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
  }
  
  .contact-copy {
    width: 100%;
    max-width: 820px;
    text-align: center;
  }
  
  .contact-copy .section-label {
    justify-content: center;
  }
  
  .contact-copy p {
    max-width: 680px;
    margin: 24px auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
  }
  
  .contact-form {
    width: 100%;
    max-width: 720px;
    padding: 34px;
    border: 1px solid rgba(53, 231, 255, 0.26);
    border-radius: var(--radius-large);
    background:
      radial-gradient(circle at top right, rgba(53, 231, 255, 0.16), transparent 18rem),
      rgba(255, 255, 255, 0.055);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  }
  
  .form-row {
    margin-bottom: 18px;
  }
  
  .form-row label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 700;
  }
  
  .form-row input,
  .form-row textarea {
    width: 100%;
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.25);
    color: var(--text-main);
    font: inherit;
    padding: 15px 16px;
    outline: none;
    transition:
      border-color var(--transition),
      background var(--transition),
      box-shadow var(--transition);
  }
  
  .form-row textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .form-row input::placeholder,
  .form-row textarea::placeholder {
    color: rgba(169, 176, 195, 0.62);
  }
  
  .form-row input:focus,
  .form-row textarea:focus {
    border-color: rgba(53, 231, 255, 0.62);
    background: rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 0 4px rgba(53, 231, 255, 0.08);
  }
  
  .hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
  }
  
  .form-submit {

    margin: 8px auto 0;
    border: none;
    cursor: pointer;
    display: flex;
  }
  
/* =========================================================
   9.1 CONTACT FORM STATUS POPUP
========================================================= */

.form-status-popup {
    width: 100%;
    max-width: 720px;
    min-height: 0;
    padding: 0 22px;
    margin: -12px auto -18px;
  
    border-radius: 20px;
    border: 1px solid transparent;
    background: rgba(5, 7, 16, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    overflow: hidden;
    max-height: 0;
  
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      max-height 0.28s ease,
      padding 0.28s ease,
      margin 0.28s ease,
      border-color 0.28s ease;
  }
  
  .form-status-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    max-height: 160px;
    padding: 20px 22px;
    margin: -8px auto -8px;
  }
  
  .form-status-popup strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    color: var(--text-main);
    text-align: center;
  }
  
  .form-status-popup span {
    display: block;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
  }
  
  .form-status-popup.is-success {
    border-color: rgba(53, 231, 255, 0.45);
  }
  
  .form-status-popup.is-success::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 20px 0 0 20px;
    background: var(--accent-cyan);
  }
  
  .form-status-popup.is-error {
    border-color: rgba(255, 40, 92, 0.55);
  }
  
  .form-status-popup.is-error::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 20px 0 0 20px;
    background: var(--accent-red);
  }
  
  .form-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
  }
  
  /* =========================================================
   10. FOOTER
========================================================= */

.site-footer {
    padding: 42px 24px;
    border-top: 1px solid var(--line-soft);
    background: #02030a;
  }
  
  .footer-container {
    max-width: var(--container);
    margin: 0 auto;
  
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .footer-logo {
    margin: 0 0 8px;
    color: var(--text-main);
    font-weight: 900;
    letter-spacing: 0.18em;
  }
  
  .footer-brand p,
  .footer-info p,
  .footer-links a {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  
  .footer-brand p,
  .footer-info p {
    margin: 0 0 7px;
    color: var(--text-muted);
  }
  
  .footer-info {
    text-align: center;
  }
  
  .footer-info strong {
    color: var(--text-soft);
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    text-align: right;
  }
  
  .footer-links a {
    color: var(--text-muted);
    transition: color var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--text-main);
  }
  
  
  /* =========================================================
     11. RESPONSIVE DESIGN
  ========================================================= */
  
  @media (max-width: 980px) {
    .two-column,
    .contact-container {
      grid-template-columns: 1fr;
      gap: 34px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .acronym-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
      }
      
      .footer-brand,
      .footer-info,
      .footer-links {
        text-align: center;
      }
      
      .footer-links {
        align-items: center;
      }
  }
  
  @media (max-width: 720px) {
    .site-header {
      padding: 14px;
    }
  
    .navbar {
      min-height: 58px;
      padding: 0 16px;
      border-radius: 24px;
    }
  
    .nav-toggle {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: calc(100% + 12px);
      left: 14px;
      right: 14px;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
  
      padding: 16px;
      border: 1px solid var(--line-soft);
      border-radius: 22px;
      background: rgba(5, 7, 16, 0.94);
      backdrop-filter: blur(18px);
    }
  
    .nav-links.is-open {
      display: flex;
    }
  
    .nav-links a {
      width: 100%;
      padding: 12px 6px;
    }
  
    .hero-section {
      min-height: 92vh;
      padding: 130px 18px 70px;
    }
  
    .text {
      font-size: clamp(3.5rem, 17vw, 7rem);
      letter-spacing: -0.09em;
    }
  
    .hero-kicker {
      font-size: 0.9rem;
    }
  
    .hero-description {
      font-size: 0.96rem;
    }
  
    .section {
      padding: 76px 18px;
    }
  
    .section h2 {
      font-size: clamp(2rem, 9vw, 3rem);
    }
  
    .acronym-grid {
      grid-template-columns: 1fr;
    }
  
    .service-card,
    .acronym-card,
    .company-info-card,
    .contact-card {
      border-radius: 22px;
    }
  
    .contact-email {
      word-break: break-word;
    }
  }
  
  @media (max-width: 420px) {
    .hero-actions {
      flex-direction: column;
    }
  
    .btn {
      width: 100%;
    }
  }

  /* =========================================================
   12. PRIVACY POLICY PAGE
========================================================= */

.privacy-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 24px;
  }
  
  .privacy-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    min-height: 64px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    background: rgba(5, 7, 16, 0.7);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  }
  
  .privacy-logo {
    display: inline-flex;
  }
  
  .privacy-top-button {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.86rem;
  }
  
  .privacy-main {
    min-height: 100vh;
  }
  
  .privacy-hero {
    position: relative;
    min-height: 58vh;
    padding: 160px 24px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  
    background:
      radial-gradient(circle at top left, rgba(49, 93, 255, 0.18), transparent 34rem),
      radial-gradient(circle at top right, rgba(255, 40, 92, 0.14), transparent 30rem),
      var(--bg-main);
  }
  
  .privacy-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    text-align: center;
  }
  
  .privacy-hero-content .section-label {
    justify-content: center;
  }
  
  .privacy-hero-content h1 {
    margin: 0;
    font-size: clamp(3.6rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
    font-weight: 900;
  
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.88);
    text-shadow:
      0 0 32px rgba(53, 231, 255, 0.2),
      0 0 54px rgba(255, 40, 92, 0.12);
  }
  
  .privacy-hero-content p {
    max-width: 680px;
    margin: 24px auto 0;
    color: var(--text-muted);
    font-size: 1.08rem;
  }
  
  .privacy-updated {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-soft) !important;
    font-size: 0.9rem !important;
  }
  
  .privacy-content-section {
    padding: 80px 24px 120px;
    background:
      radial-gradient(circle at 80% 10%, rgba(155, 92, 255, 0.1), transparent 28rem),
      var(--bg-soft);
  }
  
  .privacy-content-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 48px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-large);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  }
  
  .privacy-block {
    padding: 0 0 34px;
    margin: 0 0 34px;
    border-bottom: 1px solid var(--line-soft);
  }
  
  .privacy-block:last-of-type {
    margin-bottom: 0;
  }
  
  .privacy-block h2 {
    margin: 0 0 18px;
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
  }
  
  .privacy-block p {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 1rem;
  }
  
  .privacy-block p:last-child {
    margin-bottom: 0;
  }
  
  .privacy-block strong {
    color: var(--text-soft);
  }
  
  .privacy-block a {
    color: var(--accent-cyan);
    font-weight: 700;
    transition: color var(--transition);
  }
  
  .privacy-block a:hover {
    color: var(--text-main);
  }
  
  .privacy-block ul {
    margin: 0 0 18px;
    padding-left: 22px;
    color: var(--text-muted);
  }
  
  .privacy-block li {
    margin-bottom: 8px;
  }
  
  .privacy-info-box {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid rgba(53, 231, 255, 0.22);
    border-radius: var(--radius-medium);
    background:
      radial-gradient(circle at top right, rgba(53, 231, 255, 0.11), transparent 16rem),
      rgba(255, 255, 255, 0.045);
  }
  
  .privacy-info-box p {
    margin-bottom: 9px;
  }
  
  .privacy-bottom-actions {
    padding-top: 14px;
    display: flex;
    justify-content: center;
  }
  
  @media (max-width: 720px) {
    .privacy-header {
      padding: 14px;
    }
  
    .privacy-header-inner {
      min-height: 58px;
      padding: 0 16px;
      border-radius: 24px;
    }
  
    .privacy-top-button {
      min-height: 38px;
      padding: 0 14px;
      font-size: 0.8rem;
    }
  
    .privacy-hero {
      min-height: 48vh;
      padding: 130px 18px 54px;
    }
  
    .privacy-hero-content h1 {
      font-size: clamp(3rem, 14vw, 5rem);
    }
  
    .privacy-content-section {
      padding: 56px 18px 82px;
    }
  
    .privacy-content-card {
      padding: 28px;
      border-radius: 22px;
    }
  
    .privacy-block {
      padding-bottom: 28px;
      margin-bottom: 28px;
    }
  
    .privacy-info-box {
      padding: 20px;
    }
  }