/* =================================
IT-cares.global
Full CSS
================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
}

main {
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 100px;
}

/* =========================
Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 138, 0, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo-wrap,
.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image,
.logo img {
  height: 34px;
  width: auto;
}

.header-nav-area {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  transition: 0.25s;
  position: relative;
}

.main-nav a:hover {
  color: #FF8A00;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF8A00;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-switch a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e8e8e8;
  font-size: 0.84rem;
  font-weight: 700;
  transition: 0.25s;
}

.lang-switch a:hover,
.lang-switch a.active {
  border-color: #FF8A00;
  color: #FF8A00;
  background: rgba(255, 138, 0, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: 0.25s;
}

.menu-toggle:hover {
  border-color: #FF8A00;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #222;
  transition: 0.25s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
Buttons
========================= */

.btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.25s;
  border: 1px solid #FF8A00;
  cursor: pointer;
  background: #FF8A00;
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 138, 0, 0.18);
}

.btn:hover,
.cta-btn:hover {
  background: #e67b00;
  border-color: #e67b00;
  transform: translateY(-1px);
}

.btn-primary {
  background: #FF8A00;
  color: #fff;
  border: 1px solid #FF8A00;
  box-shadow: 0 14px 30px rgba(255, 138, 0, 0.18);
}

.btn-primary:hover {
  background: #e67b00;
  border-color: #e67b00;
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #222;
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: #FF8A00;
  color: #FF8A00;
  background: #fff;
  transform: translateY(-1px);
}

/* =========================
Hero
========================= */

.hero,
.hero-section {
  padding: 52px 0 72px;
  background: #ffffff !important;
  border-bottom: 1px solid #f1f1f1;
  overflow: hidden;
}

.hero .container,
.hero-section .container,
.hero-inner,
.hero-grid,
.hero-visual {
  background: transparent !important;
}

.hero-inner,
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-label,
.section-kicker {
  color: #FF8A00;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy h1,
.hero h1 {
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 12ch;
}

.hero-description,
.hero-text {
  color: #555;
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-buttons,
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 520px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  isolation: isolate;
  background: transparent !important;
  filter: none;
}

.hero-face-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  z-index: 2;
  opacity: 0.92;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  display: block;
  background: transparent;
}

.flow {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.58;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(170, 240, 210, 0.15) 0px,
      rgba(170, 240, 210, 0.15) 2px,
      transparent 2px,
      transparent 24px
    );
  animation: flowRight 10s linear infinite;
}

@keyframes flowRight {
  0% { transform: translateX(-20%); }
  100% { transform: translateX(20%); }
}

@keyframes heroFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* =========================
Sections
========================= */

.positioning,
.positioning-section,
.featured-products,
.products-section,
.services-preview,
.services-section,
.stack-section,
.community-section,
.why-us,
.why-section,
.about,
.about-section,
.contact,
.contact-section {
  padding: 96px 0;
}

.featured-products,
.products-section,
.why-us,
.why-section {
  background: #fafafa;
}

.section-intro,
.section-head {
  max-width: none;
  margin-bottom: 38px;
}

.section-intro h2,
.section-head h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: 0 0 12px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.section-intro p,
.section-head p,
.section-sub {
  margin: 0;
  color: #5c5c5c;
  max-width: none;
}

/* =========================
Cards
========================= */

.positioning-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mini-card {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.045);
  transition: 0.28s;
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.075);
  border-color: rgba(255, 138, 0, 0.32);
}

.static-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.045);
  border-color: #ededed;
}

.mini-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.mini-card p {
  color: #595959;
  font-size: 0.98rem;
  margin: 0;
}

/* =========================
Products
========================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 28px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.045);
  transition: 0.28s;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 138, 0, 0.32);
}

.card-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 138, 0, 0.12);
  color: #FF8A00;
  font-size: 0.75rem;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 700;
}

.card-tag.muted {
  background: #eee;
  color: #666;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.product-card p {
  margin: 0 0 16px;
  color: #565656;
}

.text-link {
  color: #FF8A00;
  font-weight: 700;
}

.text-link:hover {
  opacity: 0.7;
}

/* =========================
Services interactive
========================= */

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.service-tab {
  min-height: 104px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.035);
  transition: 0.28s;
  font-size: 1.08rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
}

.service-tab:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 0, 0.32);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.065);
  color: #111;
}

.service-tab.active {
  border-color: #FF8A00;
  background: linear-gradient(to right, rgba(255, 138, 0, 0.08), rgba(255, 255, 255, 1));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.065);
}

.service-detail-wrap {
  margin-top: 18px;
}

.service-detail {
  display: none;
  padding: 32px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 28px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.045);
}

.service-detail.active {
  display: block;
}

.service-detail h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: #111;
}

.service-detail p {
  margin: 0 0 18px;
  color: #565656;
}

.service-points {
  margin: 0;
  padding-left: 20px;
  color: #444;
}

.service-points li {
  margin-bottom: 8px;
}

/* =========================
Services mobile accordion
========================= */

.service-accordion {
  display: none;
}

.service-accordion-item {
  border: 1px solid #ededed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.035);
  overflow: hidden;
  transition: 0.25s;
}

.service-accordion-item + .service-accordion-item {
  margin-top: 14px;
}

.service-accordion-trigger {
  width: 100%;
  min-height: 76px;
  padding: 20px 22px;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  position: relative;
}

.service-accordion-trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #FF8A00;
  border-bottom: 2px solid #FF8A00;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 14px;
  transition: transform 0.25s ease;
}

.service-accordion-item.active {
  border-color: rgba(255, 138, 0, 0.34);
  box-shadow: 0 18px 44px rgba(255, 138, 0, 0.08);
  background: linear-gradient(180deg, rgba(255, 138, 0, 0.06), #ffffff 38%);
}

.service-accordion-item.active .service-accordion-trigger {
  background: transparent;
}

.service-accordion-item.active .service-accordion-trigger::after {
  transform: rotate(-135deg);
}

.service-accordion-panel {
  display: none;
  border-top: 1px solid #f1f1f1;
}

.service-accordion-panel.active {
  display: block;
}

.service-accordion-content {
  padding: 22px;
}

.service-accordion-content h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: #111;
}

.service-accordion-content p {
  margin: 0 0 16px;
  color: #565656;
}

/* =========================
Stack
========================= */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stack-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.045);
}

.stack-card h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.stack-tags span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  line-height: 1;
}

/* =========================
Community
========================= */

.community-section {
  background: #fff;
}

.community-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.community-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.045);
  text-align: center;
  transition: 0.28s;
}

a.community-logo-card:hover,
div.community-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.075);
  border-color: rgba(255, 138, 0, 0.32);
}

.community-logo-svg {
  width: 100%;
  max-width: 150px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.community-logo-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.68;
  transition: opacity 0.28s;
}

a.community-logo-card:hover .community-logo-svg svg,
div.community-logo-card:hover .community-logo-svg svg {
  opacity: 1;
}

.ethereum-word svg {
  max-width: 62px;
}

.builder-word svg {
  max-width: 72px;
}

.community-logo-card span {
  font-size: 0.98rem;
  font-weight: 700;
  color: #333;
}

/* =========================
About
========================= */

.about p {
  color: #565656;
  max-width: none;
}

.about-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-item {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.045);
}

.about-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF8A00;
  margin-bottom: 10px;
}

.about-item p {
  margin: 0;
  color: #555;
}

/* =========================
Contact form
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-info-card,
.contact-form {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 28px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.045);
  padding: 32px;
}

.contact-info-card h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.contact-info-card p {
  margin: 0 0 18px;
  color: #565656;
}

.contact-info-list {
  margin: 0;
  padding-left: 20px;
  color: #444;
}

.contact-info-list li {
  margin-bottom: 8px;
}

.contact-form {
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #222;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: #222;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9a9a9a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 138, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.08);
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

.form-group select {
  padding-right: 54px;
  cursor: pointer;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  background-repeat: no-repeat;
  border: 1px solid #e5e5e5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #FF8A00;
  border-bottom: 2px solid #FF8A00;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  transition: 0.2s;
}

.select-wrap:focus-within::after {
  transform: translateY(-55%) rotate(45deg);
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: #777;
}

.form-note a {
  color: #FF8A00;
  font-weight: 600;
}

.form-note a:hover {
  opacity: 0.75;
}

/* =========================
Footer
========================= */

.site-footer {
  padding: 34px 0;
  border-top: 1px solid #efefef;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-weight: 700;
  margin: 0 0 6px;
}

.footer-inner p,
.site-footer p {
  margin: 0;
  color: #666;
}

.site-footer a {
  color: #FF8A00;
}

.site-footer a:hover {
  opacity: 0.75;
}

/* =========================
Responsive
========================= */

@media (max-width: 1100px) {
  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-inner,
  .hero-grid,
  .contact-grid,
  .about-card {
    grid-template-columns: 1fr;
  }

  .positioning-grid,
  .why-grid,
  .card-grid,
  .service-tabs,
  .community-logos {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 72px;
    justify-content: space-between;
    padding: 12px 0;
  }

  .logo-image,
  .logo img {
    height: 30px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-nav-area {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px;
    border: 1px solid #ededed;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.09);
    backdrop-filter: blur(10px);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .header-nav-area.open {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a::after {
    display: none;
  }

  .lang-switch {
    justify-content: flex-start;
    padding-top: 6px;
  }

  .hero,
  .hero-section {
    padding-top: 42px;
  }

  .hero-graphic {
    max-width: 420px;
    height: 420px;
  }
}

@media (max-width: 768px) {
  .hero,
  .hero-section {
    padding: 52px 0 56px;
  }

  .positioning,
  .positioning-section,
  .featured-products,
  .products-section,
  .services-preview,
  .services-section,
  .stack-section,
  .community-section,
  .why-us,
  .why-section,
  .about,
  .about-section,
  .contact,
  .contact-section {
    padding: 52px 0;
  }

  .section-intro,
  .section-head {
    margin-bottom: 24px;
  }

  .hero-copy h1,
  .hero h1 {
    font-size: 34px;
    max-width: none;
  }

  .hero-description,
  .hero-text {
    font-size: 16px;
    max-width: none;
  }

  .hero-buttons,
  .hero-actions {
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero-buttons .btn,
  .hero-actions .btn,
  .hero-buttons .cta-btn,
  .hero-actions .cta-btn {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.85rem;
    flex: 1;
  }

  .hero-buttons .btn-primary,
  .hero-actions .btn-primary {
    background: #fff;
    color: #222;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    flex: 1;
  }

  .hero-buttons .btn-primary:hover,
  .hero-actions .btn-primary:hover {
    background: #fff;
    color: #FF8A00;
    border-color: #FF8A00;
    transform: translateY(-1px);
  }

  .hero-buttons .btn-secondary,
  .hero-actions .btn-secondary {
    background: #fff;
    color: #222;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    flex: 1;
  }

  .hero-buttons .btn-secondary:hover,
  .hero-actions .btn-secondary:hover {
    background: #fff;
    color: #FF8A00;
    border-color: #FF8A00;
    transform: translateY(-1px);
  }

  .mini-card,
  .product-card,
  .service-detail,
  .contact-info-card,
  .contact-form,
  .about-item,
  .stack-card,
  .community-logo-card {
    padding: 24px;
  }

  .hero-visual {
    margin-top: 0;
  }

  .hero-graphic {
    max-width: 380px;
    height: 320px;
    aspect-ratio: auto;
  }

  .hero-face-image {
    object-position: center 38%;
  }

  .service-tabs,
  .service-detail-wrap {
    display: none;
  }

  .service-accordion {
    display: block;
    margin-top: 18px;
  }

  .community-logos {
    gap: 14px;
  }

  .community-logo-card {
    min-height: 120px;
    padding: 18px 16px;
  }

  .community-logo-svg {
    max-width: 110px;
    height: 52px;
    margin-bottom: 10px;
  }

  .community-logo-card span {
    font-size: 0.92rem;
  }

  .stack-tags span {
    font-size: 12px;
    height: 30px;
    padding: 0 10px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }

  .footer-inner div {
    width: 100%;
    text-align: right;
  }

  .footer-inner a {
    text-align: right;
    display: inline-block;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .logo-image,
  .logo img {
    height: 30px;
  }

  .stack-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-section {
    padding: 24px 0 36px;
  }

  .positioning,
  .positioning-section,
  .featured-products,
  .products-section,
  .services-preview,
  .services-section,
  .stack-section,
  .community-section,
  .why-us,
  .why-section,
  .about,
  .about-section,
  .contact,
  .contact-section {
    padding: 42px 0;
  }

  .hero-inner,
  .hero-grid {
    gap: 24px;
  }

  .section-intro,
  .section-head {
    margin-bottom: 20px;
  }

  .eyebrow,
  .section-label,
  .section-kicker {
    margin: 0 0 8px;
    font-size: 0.76rem;
  }

  .hero-copy h1,
  .hero h1 {
    margin: 0 0 12px;
    font-size: 2.05rem;
    line-height: 1.04;
  }

  .hero-description,
  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-intro h2,
  .section-head h2 {
    margin: 0 0 10px;
    line-height: 1.15;
  }

  .hero-buttons,
  .hero-actions {
    margin-top: 20px;
    gap: 12px;
  }

  .hero-buttons .btn-secondary,
  .hero-actions .btn-secondary {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .hero-buttons .btn-primary,
  .hero-actions .btn-primary {
    font-size: 0.84rem;
  }

  .hero-visual {
    margin-top: 0;
    align-items: flex-start;
  }

  .hero-graphic {
    max-width: 280px;
    height: 210px;
    width: 100%;
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .hero-face-image {
    object-position: center 32%;
  }

  .service-accordion-trigger {
    min-height: 70px;
    padding: 18px 18px;
    font-size: 0.96rem;
  }

  .service-accordion-content {
    padding: 18px;
  }

  .community-logo-card {
    min-height: 104px;
    padding: 16px 14px;
  }

  .community-logo-svg {
    max-width: 96px;
    height: 46px;
    margin-bottom: 8px;
  }

  .community-logo-card span {
    font-size: 0.88rem;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  .hero-graphic {
    max-width: 260px;
    height: 195px;
  }
}

/* particle fix */

.hero-graphic{
position:relative;
}

.hero-particle-canvas{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:5;
pointer-events:none;
}

.hero-face-image{
z-index:2;
position:relative;
}

.flow{
z-index:1;
}