/* КВАНТОРА - Adaptive responsive design for all screens */
:root {
  --bg: #071022;
  --bg-light: #0a1530;
  --card: #0f1724;
  --card-hover: #1a2237;
  --accent: #5af3c4;
  --accent-dark: #3dd9a3;
  --accent-light: #7fffd9;
  --blue: #62b6ff;
  --blue-dark: #4a9ae8;
  --muted: #9aa6b2;
  --text: #e6eef8;
  --text-dim: #a8b4c4;
  --border: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Inter, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* LAYOUT */
.container {
  width: 100%;
  padding: 2rem 1rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container { padding: 2rem 2rem; max-width: 100%; }
}

@media (min-width: 1200px) {
  .container { padding: 2rem 3rem; max-width: 1400px; margin: 0 auto; }
}

.page-container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 60px;
  min-height: 100vh;
  width: 100%;
}

@media (min-width: 768px) {
  .page-container { padding-top: 90px; padding-bottom: 80px; }
}

/* HEADER */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(7, 16, 34, 0.92), rgba(7, 16, 34, 0.75));
  border-bottom: 1px solid var(--border);
  padding: 0;
  height: 80px;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  padding: 1rem 1rem;
}

@media (min-width: 1024px) {
  .site-header .container { padding: 1rem 2rem; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }
.logo img { width: 40px; height: 40px; display: block; }
.brand { font-weight: 700; letter-spacing: 1.2px; font-size: 0.95rem; }

@media (max-width: 767px) {
  .brand { display: none; }
}

.nav {
  margin-left: auto;
  display: none;
  gap: 0;
}

@media (min-width: 1024px) {
  .nav { display: flex; gap: 0.5rem; }
}

.nav a {
  color: var(--muted);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent);
  background: rgba(90, 243, 196, 0.08);
}

.menu-btn {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  display: block;
  padding: 0.5rem;
  transition: color 0.2s;
}

@media (min-width: 1024px) {
  .menu-btn { display: none; }
}

.menu-btn:hover { color: var(--accent); }

/* HERO */
.hero {
  padding: 4rem 1rem;
  text-align: left;
  position: relative;
}

@media (min-width: 768px) {
  .hero { padding: 6rem 2rem; }
}

@media (min-width: 1200px) {
  .hero { padding: 8rem 3rem; }
}

.hero-title {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  color: var(--text);
}

@media (min-width: 768px) {
  .hero-title { font-size: 2.8rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.6rem; }
}

@media (min-width: 1440px) {
  .hero-title { font-size: 4.2rem; line-height: 1.05; }
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-sub { font-size: 1.1rem; max-width: 700px; margin-bottom: 2.5rem; }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-actions { gap: 1.2rem; }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  color: #000;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(90, 243, 196, 0.2);
}

.btn:active { transform: translateY(-1px); }

.btn.ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--accent);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(90, 243, 196, 0.05);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(90, 243, 196, 0.1);
}

@media (max-width: 767px) {
  .btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
}

/* GRIDS */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

@media (min-width: 1024px) {
  .features { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.feature {
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.6), rgba(15, 23, 36, 0.3));
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.8), rgba(15, 23, 36, 0.5));
  border-color: rgba(90, 243, 196, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90, 243, 196, 0.1);
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .feature h3 { font-size: 1.5rem; }
}

.feature p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin: 0;
}

/* FANCY CARDS */
.fancy-card {
  position: relative;
  padding: 2rem;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(90, 243, 196, 0.03), rgba(98, 182, 255, 0.02));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.fancy-card:hover {
  border-color: rgba(90, 243, 196, 0.3);
  box-shadow: 0 16px 48px rgba(90, 243, 196, 0.15);
  transform: translateY(-6px);
}

.fancy-card:before {
  content: '';
  position: absolute;
  inset: -30% -20% auto auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 20% 30%, rgba(90, 243, 196, 0.15), transparent 40%);
  transform: rotate(18deg);
  filter: blur(30px);
  pointer-events: none;
}

/* TWO COLUMN LAYOUTS */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .split-grid { grid-template-columns: 2fr 1fr; gap: 2.5rem; }
}

@media (min-width: 1440px) {
  .split-grid { grid-template-columns: 1.5fr 1fr; gap: 3rem; }
}

.left, .right { min-height: 200px; }

.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .two-column { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (min-width: 1440px) {
  .two-column { gap: 3.5rem; }
}

.col-item {
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.6), rgba(15, 23, 36, 0.3));
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.col-item:hover {
  border-color: rgba(90, 243, 196, 0.2);
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.8), rgba(15, 23, 36, 0.5));
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90, 243, 196, 0.1);
}

.col-item h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.col-item p {
  color: var(--text-dim);
  line-height: 1.7;
}

/* GRID LAYOUTS */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.grid-item {
  padding: 1.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.5), rgba(15, 23, 36, 0.2));
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 243, 196, 0.2);
  box-shadow: 0 12px 32px rgba(90, 243, 196, 0.1);
}

.grid-item h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.grid-item p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin: 0;
}

/* TESTIMONIALS & PRICING */
.testimonial-card {
  background: linear-gradient(135deg, rgba(98, 182, 255, 0.08), rgba(90, 243, 196, 0.02));
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(98, 182, 255, 0.3);
  box-shadow: 0 16px 48px rgba(98, 182, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-card .quote {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .testimonial-card .quote { font-size: 1.2rem; }
}

.testimonial-card .author {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(98, 182, 255, 0.08), rgba(90, 243, 196, 0.04));
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.pricing-card .plan {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
}

.pricing-card .plan:last-child { border-bottom: none; }

.pricing-card strong {
  color: var(--blue);
  font-weight: 700;
}

.pricing-card .cta { margin-top: 1.5rem; }

/* BLOG */

/* CHAT WIDGET */
#chat-base {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 360px;
  max-width: calc(100% - 40px);
  background: linear-gradient(180deg, rgba(12,16,20,0.95), rgba(8,10,12,0.92));
  border: 1px solid rgba(90, 243, 196, 0.08);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(2,6,23,0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.985);
  opacity: 0;
  pointer-events: none;
  transition: all 320ms cubic-bezier(.2,.9,.25,1);
  z-index: 9999;
}
#chat-base.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
/* When chat is embedded on contact page */
#chat-base.embedded {
  position: static;
  width: auto;
  max-width: none;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.8), rgba(15, 23, 36, 0.5));
  border: 1px solid var(--border);
  margin-top: 2rem;
}
#chat-base .chat-header {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
#chat-base .chat-header h4 {
  margin: 0; font-size: 0.95rem; color: var(--accent); font-weight: 700;
}
#chat-base .chat-messages {
  padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; max-height: 320px;
}
.chat-msg { max-width: 78%; padding: 10px 12px; border-radius: 12px; font-size: 0.95rem; line-height: 1.4; animation: msg-slide-in 240ms cubic-bezier(0.2, 0.9, 0.25, 1); }
.chat-msg.me { margin-left: auto; background: linear-gradient(90deg, rgba(90,243,196,0.12), rgba(98,182,255,0.06)); border: 1px solid rgba(90,243,196,0.12); color: #dff; }
.chat-msg.bot { margin-right: auto; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.02); color: var(--text); }

/* Typing indicator */
.chat-msg.typing { padding: 10px 14px; }
.chat-msg.typing span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); margin: 0 2px; animation: typing-bounce 1.2s ease-in-out infinite; }
.chat-msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-8px); opacity: 1; } }
@keyframes msg-slide-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

#chat-base .chat-form { padding: 12px; border-top: 1px solid rgba(255,255,255,0.02); display: flex; gap: 8px; }
#chat-base .chat-form input[type="text"] { flex: 1; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.03); background: rgba(255,255,255,0.02); color: var(--text); outline: none; transition: all 200ms ease; }
#chat-base .chat-form input[type="text"]:focus { background: rgba(255,255,255,0.05); border-color: rgba(90,243,196,0.2); }
#chat-base .chat-form button { padding: 10px 14px; border-radius: 10px; border: none; background: linear-gradient(90deg, var(--accent), var(--blue)); color: #000; font-weight:700; cursor: pointer; transition: all 200ms ease; }
#chat-base .chat-form button:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(90,243,196,0.2); }
#chat-base .chat-form button:active { transform: translateY(0); }

/* Floating toggle */
#chat-toggle { 
  position: fixed; 
  right: 22px; 
  bottom: 22px; 
  width: 56px; 
  height: 56px; 
  border-radius: 14px; 
  display: grid; 
  place-items: center; 
  background: linear-gradient(90deg, var(--accent), var(--blue)); 
  color: #000; 
  border: none;
  box-shadow: 0 8px 28px rgba(90, 243, 196, 0.25), 0 0 20px rgba(90, 243, 196, 0.1);
  z-index: 10000; 
  cursor: pointer; 
  transition: all 280ms cubic-bezier(0.2, 0.9, 0.25, 1);
  font-size: 0;
  padding: 0;
}

#chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(90, 243, 196, 0.35), 0 0 30px rgba(90, 243, 196, 0.15);
}

#chat-toggle:active {
  transform: scale(0.95);
}

#chat-toggle .chat-icon {
  width: 24px;
  height: 24px;
  animation: chat-bounce 2.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  stroke: currentColor;
  fill: none;
}

@keyframes chat-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.05); }
}

@media (max-width: 700px) {
  #chat-base { right: 12px; left: 12px; width: auto; bottom: 18px; max-width: none; }
  #chat-toggle { right: 16px; bottom: 16px; }
}

/* END CHAT WIDGET */
.blog-list {
  margin-top: 2rem;
}

.blog-list h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

@media (min-width: 768px) {
  .blog-list h3 { font-size: 2rem; }
}

.blog-list .posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-list .posts { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

@media (min-width: 1024px) {
  .blog-list .posts { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.post {
  padding: 1.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.5), rgba(15, 23, 36, 0.2));
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.post:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(90, 243, 196, 0.06), rgba(98, 182, 255, 0.05));
  border-color: rgba(90, 243, 196, 0.2);
  box-shadow: 0 12px 32px rgba(90, 243, 196, 0.1);
}

.post h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-weight: 700;
}

@media (min-width: 768px) {
  .post h4 { font-size: 1.1rem; }
}

.post p.muted {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

/* PROJECT GRID */
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

@media (min-width: 1024px) {
  .project-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

@media (min-width: 1440px) {
  .project-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.project {
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.6), rgba(15, 23, 36, 0.3));
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.project:hover {
  background: linear-gradient(135deg, rgba(90, 243, 196, 0.08), rgba(98, 182, 255, 0.05));
  border-color: rgba(90, 243, 196, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(90, 243, 196, 0.15);
}

.project h4 {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

/* FOOTER */
.site-footer {
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 34, 0.5));
}

@media (min-width: 768px) {
  .site-footer { padding: 3rem 2rem; }
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; text-align: left; gap: 2rem; }
}

.foot-left, .foot-right {
  font-size: 0.9rem;
  color: var(--muted);
}

.foot-right a {
  color: var(--accent);
  transition: color 0.2s;
}

.foot-right a:hover { color: var(--accent-light); }

/* POPUP */
.site-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 260;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.site-popup[aria-hidden="false"] {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.6);
}

.popup-inner {
  background: linear-gradient(135deg, #071324, #0b1320);
  padding: 2rem;
  border-radius: 14px;
  min-width: 280px;
  max-width: 360px;
  color: #dbeeff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border);
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.site-popup[aria-hidden="false"] .popup-inner {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.5rem;
}

.popup-close:hover { color: var(--accent); }

.popup-inner h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--accent);
}

.popup-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popup-inner li { margin: 0; }

.popup-inner a {
  color: var(--text-dim);
  display: block;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s;
}

.popup-inner a:hover { color: var(--accent); }

.popup-inner li:last-child a { border-bottom: none; }

/* CANVAS BG */
#canvas-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* FORMS */
.contact-form {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  max-width: 600px;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  background: rgba(15, 23, 36, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(15, 23, 36, 0.8);
  box-shadow: 0 0 0 3px rgba(90, 243, 196, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* ANIMATIONS */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.reveal.in-view {
  opacity: 1 !important;
  transform: none !important;
}

.hero-title {
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* PAGE SPECIFIC */
.about-header {
  margin-bottom: 2rem;
}

.about-header h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-header h2 { font-size: 2.5rem; }
}

.about-header p {
  color: var(--text-dim);
  max-width: 800px;
  line-height: 1.8;
}

.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .team { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

@media (min-width: 1024px) {
  .team { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.member {
  padding: 1.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.5), rgba(15, 23, 36, 0.2));
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.member:hover {
  border-color: rgba(90, 243, 196, 0.2);
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.7), rgba(15, 23, 36, 0.4));
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90, 243, 196, 0.1);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .services-list { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}

.services-list li {
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: rgba(90, 243, 196, 0.05);
  border-radius: 4px;
  color: var(--text-dim);
  transition: all 0.2s ease;
}

.services-list li:hover {
  background: rgba(90, 243, 196, 0.1);
  border-left-color: var(--accent-light);
  transform: translateX(4px);
}

/* UTILITIES */
.muted { color: var(--muted); }
.text-dim { color: var(--text-dim); }
.text-accent { color: var(--accent); }
.no-scroll { overflow: hidden; }
