/* Havenoro Design System — GENERATED BUNDLE (do not edit directly).
 * Generated by /home/havenoro/web/havenoro.com/private/agent/build-css.sh
 * Edit component files under /assets/css/ and re-run the build script. */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #888;
  --color-light-gray: #ccc;
  --color-dark-gray: #111;
  --color-border: #222;
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-primary);
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
main {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
main a,
main button,
main input,
main select,
main textarea,
main .btn,
main .faq-item,
main .faq-question,
main .card,
main .nav-toggle,
main .logo,
main .nav-dropdown,
main .dropdown,
main .dropdown-trigger,
main .dropdown-menu,
main .dropdown-menu a,
main .custom-select,
main .custom-select-trigger,
main .custom-select-options,
main .custom-select-option {
  pointer-events: auto;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
a:hover { opacity: 0.7; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.required { color: var(--color-white); font-weight: 700; }

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
  max-width: 700px;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.6;
}
.tagline {
    display: inline-block;
    padding: 8px 16px;
    background-color: transparent; 
    border: 1px solid red; 
    color: red; 
    font-size: 12px;
    border-radius: 25px; 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: red;
}
@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1rem; }
  .tagline { font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.9rem; }
  .tagline { font-size: 0.65rem; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--color-white);
  border-radius: 0;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  background: var(--color-white);
  color: var(--color-black);
  transition: opacity var(--transition-normal);
}
.btn-primary:hover {
  opacity: 0.8;
  color: var(--color-black);
}
.btn-primary.btn-sm { padding: 10px 20px; font-size: 0.75rem; }
.btn-primary.btn-lg { padding: 18px 40px; font-size: 0.9rem; }
@media (max-width: 768px) {
  .btn-primary, .btn-primary.btn-lg {
    padding: 14px 28px;
    font-size: 0.8rem;
    width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--color-white);
  border-radius: 0;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--color-white);
  transition: background var(--transition-normal), color var(--transition-normal);
}
.btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.btn.btn-sm { padding: 10px 20px; font-size: 0.75rem; }
.btn.btn-lg { padding: 18px 40px; font-size: 0.9rem; }
@media (max-width: 768px) {
  .btn, .btn.btn-lg {
    padding: 14px 28px;
    font-size: 0.8rem;
    width: 100%;
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid var(--color-white);
  border-radius: 0;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--color-white);
  transition: background var(--transition-normal), color var(--transition-normal);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-outline.btn-sm { padding: 10px 20px; font-size: 0.75rem; }
.btn-outline.btn-lg { padding: 18px 40px; font-size: 0.9rem; }
@media (max-width: 768px) {
  .btn-outline, .btn-outline.btn-lg {
    padding: 14px 28px;
    font-size: 0.8rem;
    width: 100%;
  }
}

.nav-auth .btn-signup {
  color: var(--color-black);
  border: 1px solid var(--color-white);
  background: var(--color-white);
  padding: 8px 20px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity var(--transition-fast);
}
.nav-auth .btn-signup:hover {
  opacity: 0.8;
  color: var(--color-black);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; background: transparent; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 24px; }
  .container-sm { padding: 0 24px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .container-sm { padding: 0 16px; }
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 40px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col-content h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.two-col-content p {
  color: var(--color-gray);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1rem;
}
.two-col-content ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--color-light-gray);
  font-size: 0.95rem;
}
.two-col-content ul li::before {
  content: "\2022";
  color: var(--color-white);
  position: absolute;
  left: 0;
}
.two-col-image img { border-radius: 0; width: 100%; }
.two-col-image { width: 100%; }
.about-animation { width: 100%; }
.about-animation svg { width: 100%; height: auto; }
.about-coding .anim-elem {
  animation: aboutFadeIn 0.3s ease forwards;
}
.about-coding .m1 { animation-delay: 0.3s; }
.about-coding .m2 { animation-delay: 0.4s; }
.about-coding .m3 { animation-delay: 0.5s; }
.about-coding .m4 { animation-delay: 0.6s; }
.about-coding .m5 { animation-delay: 0.68s; }
.about-coding .m6 { animation-delay: 0.76s; }
.about-coding .m7 { animation-delay: 0.7s; }
.about-coding .person-back {
  animation: aboutFadeIn 0.6s ease 0.8s forwards;
}
.about-coding .line-nums {
  animation: aboutFadeIn 0.3s ease 1.2s forwards;
}
.about-coding .clp1 {
  animation: aboutFadeIn 0.01s ease 1.5s forwards, codeReveal 0.4s steps(6) 1.5s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp2 {
  animation: aboutFadeIn 0.01s ease 2.1s forwards, codeReveal 0.5s steps(8) 2.1s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp3 {
  animation: aboutFadeIn 0.01s ease 2.8s forwards, codeReveal 0.5s steps(7) 2.8s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp4 {
  animation: aboutFadeIn 0.01s ease 3.5s forwards, codeReveal 0.6s steps(8) 3.5s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp5 {
  animation: aboutFadeIn 0.01s ease 4.2s forwards, codeReveal 0.15s steps(2) 4.2s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp6 {
  animation: aboutFadeIn 0.01s ease 4.5s forwards, codeReveal 0.5s steps(7) 4.5s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp7 {
  animation: aboutFadeIn 0.01s ease 5.2s forwards, codeReveal 0.15s steps(2) 5.2s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp8 {
  animation: aboutFadeIn 0.01s ease 5.5s forwards, codeReveal 0.5s steps(8) 5.5s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp9 {
  animation: aboutFadeIn 0.01s ease 6.2s forwards, codeReveal 0.5s steps(8) 6.2s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp10 {
  animation: aboutFadeIn 0.01s ease 6.9s forwards, codeReveal 0.3s steps(5) 6.9s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp11 {
  animation: aboutFadeIn 0.01s ease 7.5s forwards, codeReveal 0.5s steps(8) 7.5s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .clp12 {
  animation: aboutFadeIn 0.01s ease 8.2s forwards, codeReveal 0.3s steps(5) 8.2s forwards;
  clip-path: inset(0 100% 0 0);
}
.about-coding .typing-cursor {
  animation: aboutFadeIn 0.01s ease 1.5s forwards,
             cursorFollow 7s linear 1.5s forwards,
             blink 0.8s step-end 1.5s infinite;
}
@keyframes cursorFollow {
  0%     { transform: translate(0px, 2px); }
  5.71%  { transform: translate(45px, 2px); }
  5.72%  { transform: translate(45px, 2px); }
  8.57%  { transform: translate(45px, 2px); }
  8.58%  { transform: translate(0px, 16px); }
  15.71% { transform: translate(111px, 16px); }
  15.72% { transform: translate(111px, 16px); }
  18.57% { transform: translate(111px, 16px); }
  18.58% { transform: translate(0px, 36px); }
  25.71% { transform: translate(105px, 36px); }
  25.72% { transform: translate(105px, 36px); }
  28.57% { transform: translate(105px, 36px); }
  28.58% { transform: translate(0px, 50px); }
  37.14% { transform: translate(165px, 50px); }
  37.15% { transform: translate(165px, 50px); }
  38.57% { transform: translate(165px, 50px); }
  38.58% { transform: translate(5px, 64px); }
  40.71% { transform: translate(10px, 64px); }
  40.72% { transform: translate(10px, 64px); }
  42.86% { transform: translate(10px, 64px); }
  42.87% { transform: translate(8px, 78px); }
  50%    { transform: translate(117px, 78px); }
  50.01% { transform: translate(117px, 78px); }
  52.86% { transform: translate(117px, 78px); }
  52.87% { transform: translate(13px, 92px); }
  55%    { transform: translate(18px, 92px); }
  55.01% { transform: translate(18px, 92px); }
  57.14% { transform: translate(18px, 92px); }
  57.15% { transform: translate(17px, 106px); }
  64.29% { transform: translate(95px, 106px); }
  64.30% { transform: translate(95px, 106px); }
  67.14% { transform: translate(95px, 106px); }
  67.15% { transform: translate(25px, 120px); }
  74.29% { transform: translate(115px, 120px); }
  74.30% { transform: translate(115px, 120px); }
  77.14% { transform: translate(115px, 120px); }
  77.15% { transform: translate(25px, 134px); }
  81.43% { transform: translate(66px, 134px); }
  81.44% { transform: translate(66px, 134px); }
  85.71% { transform: translate(66px, 134px); }
  85.72% { transform: translate(17px, 148px); }
  92.86% { transform: translate(129px, 148px); }
  92.87% { transform: translate(129px, 148px); }
  95.71% { transform: translate(129px, 148px); }
  95.72% { transform: translate(25px, 162px); }
  100%   { transform: translate(89px, 162px); }
}
@keyframes aboutFadeIn {
  to { opacity: 1; }
}
@keyframes codeReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes blink {
  50% { opacity: 0; }
}
.company-card {
  margin-top: 24px;
}
.company-card .company-info {
  list-style: none;
  margin: 0;
}
.company-info .company-info-row {
  padding-left: 0;
  position: static;
}
.company-info .company-info-row::before {
  content: none;
}
.company-info-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.company-info-row:first-child { padding-top: 0; }
.company-info-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.company-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.company-info-value {
  font-size: 0.95rem;
  color: var(--color-white);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-content h2 { font-size: 1.5rem; }
}

.hero {
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero p {
  font-size: 1.15rem;
  color: var(--color-gray);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-with-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  text-align: left;
}
.hero-with-image .hero-content { flex: 1; max-width: 600px; }
.hero-with-image .hero-image {
  flex: 0 0 450px;
  width: 450px;
  height: 450px;
  border-radius: 0;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero { min-height: 100vh; padding: 100px 20px 60px; }
  .hero h1 { font-size: 2.5rem; letter-spacing: 0.04em; }
  .hero p { font-size: 1rem; }
  .hero-with-image { flex-direction: column; text-align: center; gap: 32px; }
  .hero-with-image .hero-content { max-width: 100%; }
  .hero-with-image .hero-image { flex: 0 0 280px; width: 280px; height: 280px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn, .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero { min-height: 100vh; padding: 100px 20px 80px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9rem; }
  .lettering-split-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
  }
  .lettering-split-mobile .lettering-bg {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lettering-split-mobile .words {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lettering-split-mobile .lettering {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .lettering-split-mobile .lettering.reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .lettering-split-mobile .lettering svg {
    width: auto;
    height: 35vh;
    max-height: 35vh;
  }
  .lettering-desktop-only {
    display: none !important;
  }
  .hero-mobile-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 20px;
  }
  .hero-mobile-buttons .btn,
  .hero-mobile-buttons .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 481px) {
  .lettering-desktop-only {
    display: block !important;
  }
  .hero-mobile-buttons {
    display: flex;
    justify-content: center;
  }
}

.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  z-index: 1;
  padding: 120px 0 60px;
}
.hero-new .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-lettering {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 800px;
}
.hero-bottom h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
.hero-new-desc {
  font-size: 1.05rem;
  color: var(--color-gray);
  line-height: 1.8;
  margin: 0;
  max-width: 650px;
}
.hero-services {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.hero-services span {
  padding: 6px 14px;
  border: 1px solid red;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: red;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.hero-mobile-text {
  display: none;
}
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-gray);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 10;
  animation: scrollBounce 2s ease infinite;
}
.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--color-gray);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 900px) {
  .hero-new { padding: 120px 0 40px; }
  .hero-bottom h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .hero-new {
    height: 100vh;
    min-height: 100vh;
    padding: 0;
    justify-content: center;
  }
  .hero-new .container {
    padding: 0 20px;
    justify-content: center;
    height: 100%;
  }
  .hero-bottom {
    display: none;
  }
  .lettering-split-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .lettering-split-mobile .lettering-bg {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lettering-split-mobile .words {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lettering-split-mobile .lettering {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .lettering-split-mobile .lettering.reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .lettering-split-mobile .lettering svg {
    width: auto;
    height: 35vh;
    max-height: 35vh;
  }
  .hero-mobile-text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 80px 20px;
  }
  .hero-mobile-text .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hero-mobile-text h1,
  .hero-mobile-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
  }
  .hero-mobile-text .hero-new-desc {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.8;
    max-width: 100%;
  }
  .hero-mobile-text .hero-services {
    justify-content: center;
  }
  .hero-mobile-text .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .hero-mobile-text .hero-buttons .btn,
  .hero-mobile-text .hero-buttons .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 481px) {
  .lettering-split-mobile {
    display: none !important;
  }
  .lettering-desktop-only {
    display: block !important;
  }
}
.btn-animated {
  position: relative;
  overflow: hidden;
}
.btn-animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.18) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: btnShimmer 2.8s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%, 65% { left: -100%; }
  100% { left: 150%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-animated::after {
    animation: none;
  }
}

.stats { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; text-align: center; }
.stat-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .stats { gap: 32px; }
  .stat-value { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .stat-value { font-size: 2rem; }
  .stat-label { font-size: 0.7rem; }
  .stats { gap: 24px; }
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-white);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: "\2212";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
  color: var(--color-gray);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 0 24px;
}
@media (max-width: 768px) {
  .faq-question { font-size: 0.9rem; padding: 20px 0; }
}
.faq-answer ul a {
  color: var(--color-gray);
  transition: color var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}
.faq-answer ul a:hover {
  color: var(--color-white);
}

.cta-section {
  text-align: center;
  padding: 120px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.cta-section p {
  color: var(--color-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cta-section h2 { font-size: 2rem; }
  .cta-section { padding: 64px 0; }
}

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.step {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  position: relative;
  overflow: hidden;
}
.step-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.step h3, .step h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.step p { color: var(--color-gray); font-size: 0.85rem; line-height: 1.6; }
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

.pillars { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.pillar {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
}
.pillar-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.pillar h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pillar p { color: var(--color-gray); font-size: 0.9rem; line-height: 1.6; }
.pillar-icon { width: 48px; height: 48px; margin: 0 0 16px; }
@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; gap: 40px; }
}

.infinite-scroll-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  z-index: 1;
}
.infinite-scroll-header {
  text-align: center;
  margin-bottom: 32px;
}
.infinite-scroll-header h2 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gray);
}
.infinite-scroll-tag-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}
.infinite-scroll-row {
  width: 100%;
  overflow: hidden;
}
.infinite-scroll-inner {
  display: flex;
  width: fit-content;
  animation: infiniteScroll var(--duration, 20s) linear infinite;
  animation-direction: var(--direction, normal);
}
.infinite-scroll-tag {
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  margin-right: 12px;
  white-space: nowrap;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.infinite-scroll-tag:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.infinite-scroll-fade {
  pointer-events: none;
  background: linear-gradient(90deg, var(--color-bg, #000), transparent 15%, transparent 85%, var(--color-bg, #000));
  position: absolute;
  inset: 0;
}
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .infinite-scroll-tag {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

.showcase-page {
  padding: 80px 0;
}
.showcase-page .tagline {
  margin-bottom: 16px;
}
.showcase-page .section-title {
  margin-bottom: 12px;
}
.showcase-page .section-subtitle {
  margin-bottom: 48px;
}
.showcase-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.showcase-filter-btn {
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.showcase-filter-btn:hover,
.showcase-filter-btn.active {
  background: var(--color-white);
  color: var(--color-black);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-card {
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.3s ease;
}
.showcase-card:hover {
  opacity: 0.85;
}
.showcase-card-preview {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 12px;
  background: #1a1a1a;
}
.showcase-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase-card:hover .showcase-card-preview img {
  transform: scale(1.05);
}
.showcase-card-info {
  padding: 0;
}
.showcase-card-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.showcase-card-info p {
  color: var(--color-gray);
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.showcase-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.showcase-card-link:hover {
  color: var(--color-gray);
}
.showcase-card-link svg {
  width: 12px;
  height: 12px;
}
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .showcase-page {
    padding: 48px 0;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .showcase-filters {
    margin-bottom: 32px;
  }
}
.showcase-load-more {
  display: block;
  margin: 48px auto 0;
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 12px 32px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.showcase-load-more:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.showcase-load-more.hidden {
  display: none;
}
.showcase-card.card-hidden {
  display: none;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-item {
  text-align: left;
  position: relative;
  overflow: hidden;
}
.industry-item .industry-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.industry-item .industry-link:hover {
  color: var(--color-gray);
}
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
  filter: none;
}
[data-reveal="fade-up"] {
  transform: translateY(30px);
}
[data-reveal="blur-in"] {
  filter: blur(8px);
}
[data-reveal="blur-in"].revealed {
  filter: blur(0);
}
[data-reveal="rise"] {
  transform: translateY(20px) scale(0.97);
}
[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal="stagger"].revealed > * {
  opacity: 1;
  transform: none;
}
[data-reveal="stagger"].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal="stagger"].revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-reveal="stagger"].revealed > *:nth-child(3) { transition-delay: 0.2s; }
[data-reveal="stagger"].revealed > *:nth-child(4) { transition-delay: 0.3s; }
[data-reveal="stagger"].revealed > *:nth-child(5) { transition-delay: 0.4s; }
[data-reveal="stagger"].revealed > *:nth-child(6) { transition-delay: 0.5s; }
[data-reveal="stagger"].revealed > *:nth-child(7) { transition-delay: 0.6s; }
[data-reveal="stagger"].revealed > *:nth-child(8) { transition-delay: 0.7s; }
[data-reveal="stagger"].revealed > *:nth-child(9) { transition-delay: 0.8s; }
[data-reveal="slide-left"] {
  transform: translateX(-40px);
}
[data-reveal="slide-right"] {
  transform: translateX(40px);
}

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}
.article h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 16px;
}
.article .article-meta {
  font-size: 0.9rem;
  color: var(--color-gray);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}
.article .article-meta em { font-style: normal; }
.article h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  margin: 3rem 0 1rem;
}
.article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  margin: 2.5rem 0 0.75rem;
}
.article h4 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  margin: 2rem 0 0.6rem;
}
.article p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-light-gray);
  margin-bottom: 1.5rem;
}
.article strong { color: var(--color-white); }
.article ul,
.article ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-light-gray);
  margin-bottom: 0.6rem;
}
.article blockquote {
  border-left: 3px solid #e63946;
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0 2rem;
  color: var(--color-light-gray);
}
.article blockquote p { margin-bottom: 0; }
.article blockquote strong { color: var(--color-white); }
.article figure {
  margin: 2rem 0;
  text-align: center;
}
.article figure img {
  max-width: 100%;
  border-radius: 8px;
}
.article a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-back {
  text-align: center;
  margin-top: 3rem;
}
.article-back a {
  color: #e63946;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 768px) {
  .article { padding: 0 24px; }
  .article h1 { font-size: 1.8rem; }
  .article h2 { font-size: 1.4rem; }
}

.card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: none;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover { opacity: 0.9; }
.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card p {
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
}
.card-image {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 16px;
}
.card-animation {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-animation svg {
  width: 100%;
  height: 100%;
}
.card-icon { width: 48px; height: 48px; margin-bottom: 16px; }
.card ul { margin-top: 12px; }
.card li {
  color: var(--color-light-gray);
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.card li::before {
  content: "\2022";
  color: var(--color-white);
  position: absolute;
  left: 0;
}
@keyframes drawFrame {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: scaleX(0); transform-origin: left; }
  to { opacity: 1; transform: scaleX(1); transform-origin: left; }
}
@keyframes blink {
  50% { opacity: 0; }
}

.card-animation .browser-frame {
  animation: drawFrame 1.2s ease-out forwards;
}
.card-animation .title-bar {
  animation: fadeIn 0.3s ease 1s forwards;
}
.card-animation .dot1 { animation: fadeIn 0.2s ease 1.2s forwards; }
.card-animation .dot2 { animation: fadeIn 0.2s ease 1.35s forwards; }
.card-animation .dot3 { animation: fadeIn 0.2s ease 1.5s forwards; }
.card-animation .url-bar { animation: fadeIn 0.3s ease 1.4s forwards; }
.card-animation .block1 { animation: slideUp 0.4s ease 1.6s forwards; }
.card-animation .block-text1 { animation: slideRight 0.5s ease 1.8s forwards; }
.card-animation .block-text2 { animation: slideRight 0.5s ease 2s forwards; }
.card-animation .block2, .card-animation .block3, .card-animation .block4 {
  animation: slideUp 0.35s ease forwards;
}
.card-animation .block2 { animation-delay: 2.1s; }
.card-animation .block3 { animation-delay: 2.25s; }
.card-animation .block4 { animation-delay: 2.4s; }
.card-animation .block-img1, .card-animation .block-img2, .card-animation .block-img3 {
  animation: fadeIn 0.3s ease forwards;
}
.card-animation .block-img1 { animation-delay: 2.5s; }
.card-animation .block-img2 { animation-delay: 2.65s; }
.card-animation .block-img3 { animation-delay: 2.8s; }
.card-animation .block-t1, .card-animation .block-t2, .card-animation .block-t3 {
  animation: fadeIn 0.2s ease forwards;
}
.card-animation .block-t1 { animation-delay: 2.9s; }
.card-animation .block-t2 { animation-delay: 3s; }
.card-animation .block-t3 { animation-delay: 3.1s; }
.card-animation .block-footer { animation: fadeIn 0.3s ease 3.1s forwards; }
.card-animation .cursor {
  animation: blink 1s step-end 3.3s infinite, fadeIn 0.1s ease 3.3s forwards;
}

.card-animation-hosting .rack-frame {
  animation: drawFrame 1s ease-out forwards;
}
.card-animation-hosting .s1 { animation: fadeIn 0.3s ease 0.8s forwards; }
.card-animation-hosting .sf1 { animation: fadeIn 0.2s ease 0.9s forwards; }
.card-animation-hosting .l1a { animation: fadeIn 0.2s ease 1.1s forwards; }
.card-animation-hosting .l1b { animation: fadeIn 0.2s ease 1.2s forwards; }
.card-animation-hosting .d1 { animation: fadeIn 0.2s ease 1.3s forwards; }
.card-animation-hosting .d2 { animation: fadeIn 0.2s ease 1.4s forwards; }
.card-animation-hosting .s2 { animation: fadeIn 0.3s ease 1.5s forwards; }
.card-animation-hosting .sf2 { animation: fadeIn 0.2s ease 1.6s forwards; }
.card-animation-hosting .l2a { animation: fadeIn 0.2s ease 1.8s forwards; }
.card-animation-hosting .l2b { animation: fadeIn 0.2s ease 1.9s forwards; }
.card-animation-hosting .d3 { animation: fadeIn 0.2s ease 2s forwards; }
.card-animation-hosting .d4 { animation: fadeIn 0.2s ease 2.1s forwards; }
.card-animation-hosting .s3 { animation: fadeIn 0.3s ease 2.2s forwards; }
.card-animation-hosting .sf3 { animation: fadeIn 0.2s ease 2.3s forwards; }
.card-animation-hosting .l3a { animation: fadeIn 0.2s ease 2.5s forwards; }
.card-animation-hosting .l3b { animation: fadeIn 0.2s ease 2.6s forwards; }
.card-animation-hosting .d5 { animation: fadeIn 0.2s ease 2.7s forwards; }
.card-animation-hosting .d6 { animation: fadeIn 0.2s ease 2.8s forwards; }
.card-animation-hosting .s4 { animation: fadeIn 0.3s ease 2.9s forwards; }
.card-animation-hosting .sf4 { animation: fadeIn 0.2s ease 3s forwards; }
.card-animation-hosting .l4a { animation: fadeIn 0.2s ease 3.2s forwards; }
.card-animation-hosting .l4b { animation: fadeIn 0.2s ease 3.3s forwards; }
.card-animation-hosting .d7 { animation: fadeIn 0.2s ease 3.4s forwards; }
.card-animation-hosting .d8 { animation: fadeIn 0.2s ease 3.5s forwards; }
.card-animation-hosting .uptime-text { animation: fadeIn 0.4s ease 3.6s forwards; }
.card-animation-hosting .light {
  animation-name: lightPulse;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.card-animation-hosting .l1a { animation-delay: 1.1s, 3.5s; }
.card-animation-hosting .l2a { animation-delay: 1.8s, 4s; }
.card-animation-hosting .l3b { animation-delay: 2.6s, 4.5s; }
.card-animation-hosting .l4a { animation-delay: 3.2s, 5s; }
@keyframes lightPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.card-animation-strategy .search-bar-stroke {
  animation: drawFrame 0.8s ease-out forwards;
}
.card-animation-strategy .search-bar {
  animation: fadeIn 0.3s ease 0.6s forwards;
}
.card-animation-strategy .magnifier {
  animation: fadeIn 0.2s ease 0.8s forwards;
}
.card-animation-strategy .magnifier-handle {
  animation: fadeIn 0.2s ease 0.9s forwards;
}
.card-animation-strategy .st1 {
  animation: fadeIn 0.15s ease 1s forwards;
}
.card-animation-strategy .st2 {
  animation: fadeIn 0.15s ease 1.15s forwards;
}
.card-animation-strategy .r1 { animation: fadeIn 0.3s ease 1.4s forwards; }
.card-animation-strategy .rs1 { animation: fadeIn 0.2s ease 1.5s forwards; }
.card-animation-strategy .rk1 { animation: fadeIn 0.2s ease 1.6s forwards; }
.card-animation-strategy .rn1 { animation: fadeIn 0.15s ease 1.7s forwards; }
.card-animation-strategy .rt1 { animation: slideRight 0.3s ease 1.8s forwards; }
.card-animation-strategy .ru1 { animation: slideRight 0.3s ease 1.95s forwards; }
.card-animation-strategy .rd1 { animation: slideRight 0.3s ease 2.1s forwards; }
.card-animation-strategy .r2 { animation: fadeIn 0.3s ease 2.3s forwards; }
.card-animation-strategy .rs2 { animation: fadeIn 0.2s ease 2.4s forwards; }
.card-animation-strategy .rk2 { animation: fadeIn 0.2s ease 2.5s forwards; }
.card-animation-strategy .rn2 { animation: fadeIn 0.15s ease 2.6s forwards; }
.card-animation-strategy .rt2 { animation: slideRight 0.3s ease 2.7s forwards; }
.card-animation-strategy .ru2 { animation: slideRight 0.3s ease 2.85s forwards; }
.card-animation-strategy .rd2 { animation: slideRight 0.3s ease 3s forwards; }
.card-animation-strategy .map-pin-bg { animation: fadeIn 0.3s ease 3.2s forwards; }
.card-animation-strategy .map-pin-ring { animation: fadeIn 0.2s ease 3.3s forwards; }
.card-animation-strategy .map-pin { animation: pinDrop 0.4s ease 3.4s forwards; }
.card-animation-strategy .map-pin-dot { animation: fadeIn 0.15s ease 3.7s forwards; }
.card-animation-strategy .ping {
  animation: pingExpand 2s ease-out infinite;
}
.card-animation-strategy .ping1 { animation-delay: 3.8s; }
.card-animation-strategy .ping2 { animation-delay: 4.8s; }
@keyframes pinDrop {
  0% { opacity: 0; transform: translateY(-20px); }
  70% { opacity: 1; transform: translateY(3px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes pingExpand {
  0% { r: 10; opacity: 0.6; }
  100% { r: 45; opacity: 0; }
}

.card-plain {
  padding: 32px 24px;
  border-top: 2px solid red;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.card-plain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(214,48,49,0.7) 0%, rgba(214,48,49,0.2) 50%, transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.card-plain:hover::before {
  opacity: 1;
}
.card-plain::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #d63031;
  box-shadow: 0 0 16px 6px rgba(214,48,49,1), 0 0 40px 12px rgba(214,48,49,0.6);
  border-radius: 2px;
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}
.card-plain:hover::after {
  width: 60px;
  opacity: 1;
}
.card-plain:hover {
  background: rgba(214,48,49,0.02);
  border-top-color: #d63031;
}
.card-plain h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.4s ease;
}
.card-plain:hover h3 {
  color: var(--color-white);
}
.card-plain p {
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 400;
}

.feature-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.feature-card {
  background: transparent;
  border: none;
  padding: 0;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.feature-card p { color: var(--color-gray); font-size: 0.9rem; line-height: 1.5; }
@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.showcase-item {
  background: transparent;
  overflow: hidden;
}
.showcase-item img { transition: transform 0.5s ease; }
.showcase-item:hover img { transform: scale(1.03); }
.showcase-preview { min-height: 200px; display: flex; align-items: center; justify-content: center; }
.showcase-info { padding: 16px 0; }
.showcase-info h4 { font-size: 1rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.showcase-info p { color: var(--color-gray); font-size: 0.85rem; }
@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  text-align: left;
  padding: 32px 24px;
  border-top: 2px solid red;
}
.testimonial-card blockquote {
  color: var(--color-light-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testimonial-role {
  color: var(--color-gray);
  font-size: 0.75rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-dark-gray);
  border: 1px solid var(--color-border);
  border-radius: 0;
  color: var(--color-white);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-dark-gray);
  border: 1px solid var(--color-border);
  border-radius: 0;
  color: var(--color-gray);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-select-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-gray);
  transition: transform 0.2s;
}
.custom-select.open .custom-select-trigger::after {
  transform: rotate(180deg);
}
.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
  border-color: var(--color-white);
}
.custom-select.selected .custom-select-trigger {
  color: var(--color-white);
}
.custom-select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-dark-gray);
  border: 1px solid var(--color-border);
  border-top: none;
  z-index: 10;
  max-height: 240px;
  overflow-y: auto;
}
.custom-select.open .custom-select-options {
  display: block;
}
.custom-select-option {
  padding: 12px 16px;
  color: var(--color-gray);
  font-size: 0.85rem;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.custom-select-option:hover {
  color: var(--color-white);
  background: var(--color-black);
}
.custom-select-option.selected {
  color: var(--color-white);
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  border: 1px solid var(--color-border);
  margin-top: 24px;
}
.form-success.show { display: block; }
.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--color-gray); }
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
#footerCaptchaGroup input {
  width: 100px;
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

.dropdown {
  position: relative;
}
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}
@media (hover: hover) and (min-width: 901px) {
  .dropdown-trigger:hover,
  .dropdown:hover .dropdown-trigger {
    opacity: 1;
  }
}
.dropdown-trigger .dropdown-arrow {
  font-size: 0.5rem;
  transition: transform 0.2s;
}
@media (hover: hover) and (min-width: 901px) {
  .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}
.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-dark-gray);
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 8px 0;
  min-width: 240px;
  z-index: 100;
}
.dropdown-menu-wide {
  min-width: 780px;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (hover: hover) and (min-width: 901px) {
  .dropdown:hover .dropdown-menu-wide {
    display: grid;
  }
}
.dropdown.open .dropdown-menu-wide {
  display: grid;
}
.dropdown-col {
  padding: 24px 20px;
}
.dropdown-col + .dropdown-col {
  border-left: 1px solid var(--color-border);
}
.dropdown-col h3 {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0 12px 16px;
  margin: 0 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dropdown-col a {
  padding: 7px 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}
@media (hover: hover) and (min-width: 901px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
.dropdown.open .dropdown-menu {
  display: block;
}
.dropdown-menu a,
.dropdown-menu label {
  display: block;
  padding: 12px 20px;
  color: var(--color-gray);
  font-size: 0.8rem;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
  opacity: 1 !important;
}
.dropdown-menu a:hover,
.dropdown-menu label:hover,
.nav-dropdown .dropdown-menu a:hover,
.nav-dropdown .dropdown-menu label:hover {
  color: var(--color-white) !important;
  background: var(--color-black) !important;
  -webkit-text-fill-color: var(--color-white) !important;
  opacity: 1 !important;
  outline: none !important;
  text-decoration: none !important;
}
.dropdown-menu a::-moz-focus-inner,
.dropdown-menu label::-moz-focus-inner {
  border: 0;
}
.dropdown-menu a,
.dropdown-menu label {
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 900px) {
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  .nav-dropdown .dropdown-trigger {
    width: 100%;
    justify-content: center;
    font-size: 1.2rem;
    padding: 14px 24px;
    letter-spacing: 0.12em;
    opacity: 1;
  }
  .nav-dropdown .dropdown-menu,
  .nav-dropdown .dropdown-menu-wide {
    position: static;
    display: none;
    background: transparent;
    border: none;
    padding: 0;
    min-width: auto;
    z-index: auto;
    width: 100%;
    left: auto;
    transform: none;
  }
  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown.open .dropdown-menu-wide {
    display: block;
    padding: 0;
    width: 100%;
    animation: dropdown-fade-in 0.2s ease;
  }
  @keyframes dropdown-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .nav-dropdown .dropdown-col {
    padding: 12px 0 0;
    border-left: none;
    text-align: center;
    width: auto;
  }
  .nav-dropdown .dropdown-col + .dropdown-col {
    border-left: none;
    border-top: none;
  }
  .nav-dropdown .dropdown-col h3 {
    display: block;
    margin: 0 auto;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: center;
    cursor: pointer;
    opacity: 0.85;
  }
  .nav-dropdown .dropdown-col h3::after {
    content: '\25B8';
    display: inline-block;
    margin-left: 8px;
    font-size: 0.7em;
    transition: transform 0.2s;
  }
  .nav-dropdown .dropdown-col.open h3::after {
    transform: rotate(90deg);
  }
  .nav-dropdown .dropdown-col a {
    display: none;
    padding: 9px 0;
    font-size: 0.88rem;
    color: var(--color-white);
    opacity: 0.6;
    text-align: center;
    width: auto;
  }
  .nav-dropdown .dropdown-col.open a {
    display: block;
  }
  .nav-dropdown .dropdown-col a:hover,
  .nav-dropdown .dropdown-col a:active {
    opacity: 1;
    background: transparent;
  }
  .nav-dropdown .dropdown-menu > a {
    display: block;
    padding: 9px 0;
    font-size: 0.88rem;
    color: var(--color-white);
    opacity: 0.6;
    text-align: center;
    width: auto;
  }
  .nav-dropdown .dropdown-menu > a:hover,
  .nav-dropdown .dropdown-menu > a:active {
    opacity: 1;
    background: transparent;
  }
}
@media (hover: none) {
  .dropdown:hover:not(.open) .dropdown-menu,
  .dropdown:hover:not(.open) .dropdown-menu-wide,
  .nav-dropdown:hover:not(.open) .dropdown-menu,
  .nav-dropdown:hover:not(.open) .dropdown-menu-wide {
    display: none;
  }
  .dropdown:hover:not(.open) .dropdown-arrow {
    transform: none;
  }
}
.form-dropdown {
  position: relative;
}
.form-dropdown select {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-dark-gray);
  border: 1px solid var(--color-border);
  border-radius: 0;
  color: var(--color-white);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form-dropdown select:focus {
  outline: none;
  border-color: var(--color-white);
}
.form-dropdown::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-gray);
  pointer-events: none;
}
.form-dropdown select option {
  background: var(--color-dark-gray);
  color: var(--color-white);
  padding: 8px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: transparent;
  transition: background 0.3s;
}
.top-bar .container,
.top-bar .nav-toggle,
.top-bar .logo,
.top-bar .nav-links,
.top-bar .nav-links a,
.top-bar .nav-auth a,
.top-bar .nav-dropdown,
.top-bar .nav-dropdown .dropdown-trigger,
.top-bar .nav-dropdown .dropdown-menu,
.top-bar .nav-dropdown .dropdown-menu a {
  pointer-events: auto;
}
.top-bar.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.logo img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--color-white);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}
.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
.nav-auth a {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10003;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .top-bar.menu-open {
    bottom: 0;
    background: var(--color-black);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .top-bar.menu-open .container {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 24px 60px;
  }
  .top-bar.menu-open .logo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    padding: 0 24px;
    z-index: 10002;
    background: var(--color-black);
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }
  .nav-links.open { display: flex; }
  .nav-links > a,
  .nav-links .nav-auth {
    font-size: 1.2rem;
    padding: 14px 24px;
    letter-spacing: 0.12em;
    opacity: 1;
    text-align: center;
  }
  .nav-auth {
    margin-left: 0;
    margin-top: 24px;
  }
}

.nav-dropdown {
  position: relative;
}
@media (min-width: 901px) and (hover: hover) {
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }
  .nav-dropdown:hover .dropdown-menu-wide {
    display: grid;
  }
}
@media (min-width: 901px) {
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .nav-dropdown.open .dropdown-menu-wide {
    display: grid;
  }
}

.footer {
  background: transparent;
  border-top: 1px solid rgba(34,34,34,0.5);
  padding: 80px 0 40px;
  position: relative;
  z-index: 10;
  scroll-margin-top: 80px;
}
.footer-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--color-border);
}
.footer-cta-left .tagline { margin-bottom: 12px; }
.footer-cta-left .section-title { margin-bottom: 20px; }
.footer-cta-pain {
  position: relative;
  min-height: 72px;
}
.footer-cta-pain-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gray);
  margin-bottom: 10px;
}
.footer-cta-pain-rotate {
  position: relative;
  height: 48px;
  overflow: hidden;
}
.footer-cta-pain-rotate .pain-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.footer-cta-pain-rotate .pain-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.footer-cta-pain-rotate .pain-item.exit {
  opacity: 0;
  transform: translateY(-14px);
}
.footer-cta-right .contact-form-wrap { max-width: 100%; }
.footer-cta-right .form-group { margin-bottom: 16px; }
.footer-cta-right .form-group label { font-size: 0.7rem; margin-bottom: 6px; }
.footer-cta-right .form-group input,
.footer-cta-right .form-group textarea {
  padding: 12px 14px;
  font-size: 0.85rem;
}
.footer-cta-right .form-group textarea { min-height: 80px; }
.footer-cta-right .custom-select-trigger { padding: 12px 14px; font-size: 0.85rem; }
.footer-cta-right .custom-select-option { padding: 10px 14px; font-size: 0.8rem; }
.footer-phone-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-phone-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.flag-icon {
  font-size: 1.2rem;
  line-height: 1;
}
.footer-phone-number {
  font-family: inherit;
}
.footer-form-phones {
  margin-top: 24px;
}
.footer-form-phones-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-bottom: 10px;
}
.footer-form-phones-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-form-phones .footer-phone-link {
  padding: 8px 12px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.03);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.footer-brand p { color: var(--color-gray); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; }
.footer-brand .address { color: var(--color-gray); font-size: 0.85rem; margin-top: 16px; line-height: 1.6; }
.footer-grid h3 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  color: var(--color-gray);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer ul a:hover { color: var(--color-white); }
.footer .social-list { list-style: none; display: flex; gap: 16px; margin-top: 20px; }
.footer .social-list li { margin-bottom: 0; display: flex; align-items: center; }
.footer .social-list a {
  color: var(--color-gray);
  font-size: 1.1rem;
  transition: color var(--transition-fast);
  text-transform: none;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer .social-list a:hover { color: var(--color-white); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.footer .social-list .social-icon { width: 16px; height: 16px; flex-shrink: 0; color: inherit; }
.footer .social-list li:hover .social-icon { color: var(--color-white); }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--color-border);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.trust-badge-link:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}
.trust-badge-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.trust-badge-icon svg { display: block; }
.trust-badge-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-badge-label {
  color: var(--color-gray);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-badge-stars { display: flex; gap: 1px; }
.trust-badge-stars svg { width: 10px; height: 10px; display: block; }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  text-align: center;
  color: var(--color-gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-legal-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-legal-links a {
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  transition: color var(--transition-fast);
}
.footer-legal-links a:hover {
  color: var(--color-white);
}
.footer-legal-links a + a::before {
  content: "|";
  margin-right: 16px;
  color: var(--color-border);
}
@media (max-width: 768px) {
  .footer-cta { grid-template-columns: 1fr; gap: 40px; }
  .footer-cta-left { text-align: center; }
  .footer-phone-cta { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-cta { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 48px 0 24px; }
}


/* ==== assets/components/lettering/style.css (folded from separate <link>) ==== */
.lettering-bg {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.lettering-bg .words {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 100%;
  overflow: hidden;
}
.letter-space {
  width: clamp(16px, 3vw, 40px);
  flex-shrink: 0;
}
.lettering-bg .lettering {
  display: flex;
  align-items: center;
  gap: 0;
}
.lettering-bg .lettering svg {
  display: block;
  height: clamp(50px, 10vw, 140px);
  width: auto;
  flex-shrink: 0;
}
.lettering-bg .lettering.hidden {
  position: relative;
  z-index: 2;
}
.lettering-bg .lettering.hidden svg {
  fill: #f9f9f9;
  transition: opacity 0.6s ease;
}
.lettering-bg .lettering.reveal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.lettering-bg .lettering.reveal svg {
  fill: #272628;
}
.lettering-bg .words.hover .lettering.hidden {
  opacity: 0;
}
.lettering-bg .words.hover .lettering.reveal {
  opacity: 1;
}
.lettering-split {
  display: flex;
  gap: 24px;
  align-items: center;
}
.lettering-vertical .lettering-bg {
  justify-content: center;
}
.lettering-vertical .words {
  flex-direction: column;
  height: 100%;
}
.lettering-vertical .lettering {
  flex-direction: column;
}
.lettering-vertical .lettering.reveal {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lettering-bg .swipe-to-appear-down {
  clip-path: inset(0 0 100% 0);
  animation: swipeRevealDown 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.lettering-bg .words.hover .swipe-to-appear-down {
  clip-path: inset(0 0 0 0);
  animation: swipeHideUp 4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes swipeRevealDown {
  0% { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0 0 0 0); }
}
@keyframes swipeHideUp {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(100% 0 0 0); }
}
.lettering-bg .swipe-to-appear-up {
  clip-path: inset(100% 0 0 0);
  animation: swipeRevealUp 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.lettering-bg .words.hover .swipe-to-appear-up {
  clip-path: inset(0 0 0 0);
  animation: swipeHideDown 4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes swipeRevealUp {
  0% { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}
@keyframes swipeHideDown {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}
.lettering-bg .animate-load .lettering.hidden {
  animation: letterLoadDown 0.9s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes letterLoadDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.lettering-up .animate-load .lettering.hidden {
  animation: letterLoadUp 0.9s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes letterLoadUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.lettering-down .lettering.hidden svg:nth-child(1) { animation-delay: 0.0s; }
.lettering-down .lettering.hidden svg:nth-child(2) { animation-delay: 0.12s; }
.lettering-down .lettering.hidden svg:nth-child(3) { animation-delay: 0.24s; }
.lettering-down .lettering.hidden svg:nth-child(4) { animation-delay: 0.36s; }
.lettering-up .lettering.hidden svg:nth-child(1) { animation-delay: 0.36s; }
.lettering-up .lettering.hidden svg:nth-child(2) { animation-delay: 0.24s; }
.lettering-up .lettering.hidden svg:nth-child(3) { animation-delay: 0.12s; }
.lettering-up .lettering.hidden svg:nth-child(4) { animation-delay: 0.0s; }
.lettering-bg .words.animate-gather .gather-letter {
  opacity: 0;
  transform: translate(var(--gather-tx, 0), var(--gather-ty, 0)) rotate(var(--gather-rot, 0deg)) scale(var(--gather-scale, 0.5));
}
.lettering-bg .words.animate-gather .gather-letter {
  animation: letterGather 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) var(--gather-delay, 0ms) forwards;
}
@keyframes letterGather {
  0% {
    opacity: 0;
    transform: translate(var(--gather-tx, 0), var(--gather-ty, 0)) rotate(var(--gather-rot, 0deg)) scale(var(--gather-scale, 0.5));
  }
  50% {
    opacity: 1;
  }
  75% {
    transform: translate(0, -8px) rotate(0deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lettering-bg .swipe-to-appear-down,
  .lettering-bg .swipe-to-appear-up {
    animation: none;
    clip-path: inset(0 0 0 0);
  }
  .lettering-bg .animate-load .lettering.hidden {
    animation: none;
  }
  .lettering-bg .lettering.hidden,
  .lettering-bg .lettering.reveal {
    transition: none;
  }
}
@media (max-width: 900px) {
  .service-lettering .lettering-bg .lettering svg {
    height: clamp(28px, 6.5vw, 80px);
  }
}
@media (max-width: 768px) {
  .lettering-bg .lettering svg {
    height: clamp(32px, 8vw, 80px);
  }
}
@media (max-width: 480px) {
  .lettering-bg .lettering svg {
    height: clamp(60px, 22vw, 200px);
  }
  .service-lettering .lettering-bg .lettering svg {
    height: clamp(50px, 18vw, 120px);
  }
  .lettering-bg .words {
    flex-direction: row;
    gap: 0;
  }
  .lettering-bg .lettering {
    flex-direction: row;
  }
  .lettering-vertical .words {
    flex-direction: row;
  }
  .lettering-vertical .lettering {
    flex-direction: row;
  }
  .lettering-vertical .lettering.reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}


/* ==== assets/components/grid/style.css (folded from separate <link>) ==== */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.grid-background .interactive-grid {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: auto;
}
@media (hover: none) and (pointer: coarse) {
  .grid-background .interactive-grid {
    pointer-events: auto;
    touch-action: pan-y;
  }
  .grid-background .grid {
    touch-action: pan-y;
  }
  .grid-background .grid div {
    pointer-events: auto;
    touch-action: pan-y;
  }
}
.grid-background .grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 20), 1fr);
  grid-template-rows: repeat(var(--grid-rows, 10), 1fr);
  font-size: var(--grid-font-size, 1.5rem);
  font-weight: 600;
  line-height: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  cursor: none;
  width: 100%;
  height: 100%;
}
.grid-background .grid div {
  padding: 2px;
  opacity: calc(var(--cell-opacity, 0.1) * 0.3);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition-property: opacity, rotate, filter;
  transition-duration: 0.8s, 0.4s, 0.6s;
  transition-timing-function: ease-in, ease-out, ease-out;
  scale: 1.5;
  filter: grayscale(1);
  color: hsl(var(--cell-hue, 0) 80% 50%);
  will-change: transform, opacity, filter;
}
@media (hover: hover) and (pointer: fine) {
  .grid-background .grid div:hover {
    transition-property: opacity, rotate, filter;
    transition-duration: 0s;
    rotate: calc(var(--cell-grade, 0) * 90deg);
    filter: grayscale(0) brightness(1.5);
    opacity: 1;
  }
}
.grid-background .grid div[data-hover] {
  transition-property: opacity, rotate, filter;
  transition-duration: 0s;
  rotate: calc(var(--cell-grade, 0) * 90deg);
  filter: grayscale(0) brightness(1.5);
  opacity: 1;
}
.grid-background[data-theme="dark"] .grid div {
  opacity: calc(var(--cell-opacity, 0.1) + 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .grid-background[data-theme="dark"] .grid div:hover {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .grid-background .grid div {
    transition: none;
  }
  .grid-background .grid div:hover,
  .grid-background .grid div[data-hover] {
    transition: none;
  }
}

