.technology-main {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.technology-hero,
.technology-item {
  background: linear-gradient(160deg, #ffffff 0%, #f0f7f2 100%);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.technology-hero {
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-md);
}

.technology-hero h1 {
  margin-top: 0.55rem;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.technology-hero p {
  margin-top: 0.45rem;
  color: var(--muted);
  max-width: 65ch;
}

.technology-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.95rem;
}

.technology-item {
  padding: 1rem;
  border-left: 4px solid #3d9d61;
}

.technology-main h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.technology-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.technology-grid p,
.technology-grid ul,
.technology-main p,
.technology-main li {
  color: var(--muted);
  line-height: 1.75;
}

.technology-grid ul {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
}

.technology-item .btn {
  margin-top: 0.95rem;
}

@media (max-width: 980px) {
  .technology-main {
    width: 94vw;
    padding: 2.1rem 0 3.2rem;
  }

  .technology-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .technology-item {
    padding: 0.85rem;
  }
}

@media (max-width: 640px) {
  .technology-hero h1 {
    font-size: clamp(1.82rem, 9.4vw, 2.35rem);
  }
}

@media (max-width: 430px) {
  .technology-main {
    width: 95vw;
    padding: 1.8rem 0 2.8rem;
  }

  .technology-hero h1 {
    font-size: clamp(1.74rem, 9.8vw, 2.2rem);
  }
}

@media (max-width: 380px) {
  .technology-hero h1 {
    font-size: clamp(1.58rem, 10.2vw, 2rem);
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .technology-main {
    width: 93vw;
    padding: 2.4rem 0 3.6rem;
  }

  .technology-hero h1 {
    font-size: clamp(2.25rem, 5.4vw, 3.25rem);
  }
}

.technology-item {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.technology-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.flagship-suite {
  display: block;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 4px solid var(--accent-warm);
}

.flagship-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.flagship-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  border: 4px solid var(--line-soft);
}

.flagship-icon svg {
  width: 2rem;
  height: 2rem;
}

.flagship-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.flagship-description {
  max-width: 800px;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
}

.flagship-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.flagship-card {
  background: var(--card);
  
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 4px;
  background-color: #f1ebd8; border: 1px solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flagship-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background-color: #fdfdf9;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.flagship-card h3 {
  color: var(--accent);
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}

.flagship-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
