@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,400;1,700&display=swap');


*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface2: #1c2330;
  --border: rgba(255,255,255,0.07);
  --brand: #4a90d9;
  --brand-glow: rgba(74,144,217,0.25);
  --brand-dim: rgba(74,144,217,0.12);
  --text: #e6edf3;
  --text-mid: #8b949e;
  --text-dim: #484f58;
  --retired: #484f58;
  --green: #3fb950;
  --header-left: rgb(65,132,199);
  --header-right: rgb(122,163,208);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg,
    rgb(65,132,199) 0%,
    rgb(84,140,202) 25%,
    rgb(100,150,204) 50%,
    rgb(114,158,207) 75%,
    rgb(122,163,208) 100%
  );
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 1px 0 rgba(0,0,0,0.3), 0 4px 20px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 57px;
  width: auto;
  max-width: 200px;
  object-fit: cover;
  object-position: left center;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ─── HERO ─── */
.hero {
  position: relative;
  z-index: 1;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,144,217,0.15) 0%, transparent 65%);
  border-radius: 50%;
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,168,231,0.1) 0%, transparent 65%);
  border-radius: 50%;
  animation: orbFloat 15s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 .line2 {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #7bb8e8 0%, #4a90d9 50%, #a8d0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 var(--brand-glow);
}
.btn-primary:hover {
  background: #5a9fdf;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--brand-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

/* ─── HERO RIGHT: CHAT MOCKUP ─── */
.hero-widget {
  position: relative;
}

.glow-ring {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, var(--brand-glow) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.chat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(74,144,217,0.1),
    0 24px 48px rgba(0,0,0,0.5),
    0 8px 16px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.chat-card:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
}

.chat-header {
  background: linear-gradient(90deg, rgb(65,132,199), rgb(90,150,206));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.chat-hinfo .chat-hname { color:#fff; font-size:0.84rem; font-weight:600; }
.chat-hinfo .chat-hstatus {
  color:rgba(255,255,255,0.65); font-size:0.66rem;
  display:flex; align-items:center; gap:5px; margin-top:2px;
}
.status-dot { width:6px;height:6px;border-radius:50%;background:#3fb950; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(63,185,80,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(63,185,80,0); }
}

.chat-msgs {
  padding: 20px;
  background: var(--surface2);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0;
  animation: msgSlide 0.5s ease forwards;
}
.msg.bot {
  background: var(--surface);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
}
.msg.user {
  background: linear-gradient(135deg, #3d7fc4, var(--brand));
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.msg:nth-child(1) { animation-delay: 0.3s; }
.msg:nth-child(2) { animation-delay: 0.8s; }
.msg:nth-child(3) { animation-delay: 1.4s; }
.msg:nth-child(4) { animation-delay: 2.0s; }

@keyframes msgSlide {
  from { opacity:0; transform: translateY(8px); }
  to { opacity:1; transform: translateY(0); }
}

.chat-input-row {
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.chat-input-row input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 9px 16px;
  font-size: 0.76rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text-mid);
  outline: none;
}

.send-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.send-btn:hover { background: #5a9fdf; transform: scale(1.08); }
.send-btn svg { width:13px;height:13px;fill:#fff; }

/* ─── SECTION WRAPPERS ─── */
.section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── DIVIDER LINE ─── */
.rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  position: relative;
  z-index: 1;
}

/* ─── SECTION HEADER ─── */
.sh {
  padding: 80px 0 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.sh-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sh-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--brand);
}

.sh-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.sh-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  align-self: end;
  padding-bottom: 4px;
}

/* ─── AI SECTION ─── */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  padding-bottom: 88px;
}

.ai-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 16px;
}

.features {
  list-style: none;
  margin: 32px 0 40px;
}

.features li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 0.15s;
}
.features li:first-child { border-top: 1px solid var(--border); }

.feat-n {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--brand);
  padding-top: 2px;
  opacity: 0.8;
}

.feat-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-top: 2px;
}

/* ─── WIDGET PANEL ─── */
.widget-panel {
  position: sticky;
  top: 80px;
}

.panel-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  text-align: center;
}

.embed-demo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(74,144,217,0.08), 0 32px 64px rgba(0,0,0,0.5);
}

.embed-topbar {
  background: linear-gradient(90deg, rgb(65,132,199), rgb(90,150,207));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.e-icon {
  width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,0.18);
  display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;
}
.e-name { color:#fff;font-size:0.82rem;font-weight:600; }
.e-status { color:rgba(255,255,255,0.65);font-size:0.66rem;display:flex;align-items:center;gap:5px;margin-top:2px; }
.e-dot { width:6px;height:6px;border-radius:50%;background:#3fb950; }

.embed-msgs {
  padding: 18px;
  background: var(--bg);
  min-height: 210px;
  display:flex;flex-direction:column;gap:10px;
}

.em {
  max-width:84%;
  padding:9px 13px;
  border-radius:10px;
  font-size:0.78rem;
  line-height:1.55;
  opacity:0;
  animation: msgSlide 0.5s ease forwards;
}
.em.bot {
  background:var(--surface);
  color:var(--text);
  align-self:flex-start;
  border-bottom-left-radius:3px;
  border:1px solid var(--border);
}
.em.user {
  background:linear-gradient(135deg,#3570b0,#4a90d9);
  color:#fff;
  align-self:flex-end;
  border-bottom-right-radius:3px;
}
.em:nth-child(1){animation-delay:0.5s}
.em:nth-child(2){animation-delay:1.1s}
.em:nth-child(3){animation-delay:1.8s}
.em:nth-child(4){animation-delay:2.5s}

.embed-foot {
  padding:12px 14px;
  display:flex;gap:8px;align-items:center;
  background:var(--surface);
  border-top:1px solid var(--border);
}
.embed-foot input {
  flex:1;background:var(--bg);border:1px solid var(--border);
  border-radius:20px;padding:8px 14px;font-size:0.74rem;
  font-family:'Outfit',sans-serif;color:var(--text);outline:none;
  transition: border-color 0.2s;
}
.embed-foot input:focus { border-color: var(--brand); }

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 2px;
}
.typing-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-mid);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

#chatMessages {
  scroll-behavior: smooth;
}
.esend {
  width:32px;height:32px;border-radius:50%;background:var(--brand);
  border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:background 0.2s;
}
.esend:hover{background:#5a9fdf}
.esend svg{width:12px;height:12px;fill:#fff}

/* ─── PRODUCTS ─── */
.products-pb { padding-bottom: 80px; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.prod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.prod-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.prod-img-area {
  background: linear-gradient(135deg, #1a2233 0%, #1e2840 100%);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.prod-img-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(74,144,217,0.08) 0%, transparent 60%);
}

.prod-img-area img {
  width: 100%;
  max-width: 190px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.4),
    0 12px 32px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.06);
  filter: brightness(0.95) saturate(0.85);
}

.prod-info {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-name {
  margin-bottom: 12px;
  line-height: 1.25;
}

.prod-name .net-prefix {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 3px;
  font-family: 'Outfit', sans-serif;
}

.prod-name .name-main {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: -0.01em;
}

.prod-name .name-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  margin-top: 2px;
}

.prod-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.prod-features li {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.45;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.prod-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 5px;
  opacity: 0.5;
}

.prod-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  margin-bottom: 18px;
}

.retired-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 5px 10px;
  border-radius: 4px;
  width: fit-content;
}
.rb-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(63,185,80,0.1);
  border: 1px solid rgba(63,185,80,0.25);
  padding: 5px 10px;
  border-radius: 4px;
  width: fit-content;
}
.nb-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.prod-card.featured {
  border-color: rgba(74,144,217,0.3);
  background: linear-gradient(160deg, #161b22 0%, #1a2233 100%);
}
.prod-card.featured .prod-img-area {
  background: linear-gradient(135deg, #0d1a2e 0%, #122040 100%);
}
.prod-card.featured:hover {
  border-color: rgba(74,144,217,0.5);
  box-shadow: 0 20px 48px rgba(74,144,217,0.15);
}
.prod-card.featured .prod-name {
  color: var(--text);
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

/* ─── CONTACT SECTION ─── */
.section {
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  padding: 72px 0 80px;
}

.contact-left .sh-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-left .sh-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--brand);
}

.contact-blurb {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-detail-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--brand-dim);
  border: 1px solid rgba(74,144,217,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail a {
  color: var(--brand);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-detail a:hover { text-decoration: underline; }

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(74,144,217,0.5);
  box-shadow: 0 0 0 3px rgba(74,144,217,0.1);
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
  align-self: flex-start;
}
.cf-submit:hover:not(:disabled) {
  background: #5a9fdf;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(74,144,217,0.3);
}
.cf-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.cf-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(63,185,80,0.1);
  border: 1px solid rgba(63,185,80,0.25);
  color: #3fb950;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
}

.cf-error {
  background: rgba(248,81,73,0.1);
  border: 1px solid rgba(248,81,73,0.25);
  color: #f85149;
  font-size: 0.82rem;
  padding: 12px 16px;
  border-radius: 8px;
  line-height: 1.6;
}
.cf-error a { color: #f85149; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 64px; }
}

.footer-in {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
}

.footer-right {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.9;
}
.footer-right a { color: var(--brand); text-decoration: none; }
.footer-right a:hover { text-decoration: underline; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-widget { display: none; }
  .ai-grid { grid-template-columns: 1fr; }
  .widget-panel { position: static; }
  .sh { grid-template-columns: 1fr; gap:16px; }
  .prod-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 700px) {
  .prod-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .hero { padding: 60px 20px; min-height: auto; }
  footer .footer-in { padding: 0 20px; flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
}

/* ─── BURGER MENU ─── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 7px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.burger:hover { background: rgba(255,255,255,0.2); }
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 57px;
  left: 0; right: 0;
  background: linear-gradient(135deg, rgb(50,120,190), rgb(65,132,199));
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  flex-direction: column;
  z-index: 99;
  padding: 8px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(255,255,255,0.12); color: #fff; }

@media (max-width: 640px) {
  .burger { display: flex; }
  nav { display: none; }
  header { position: relative; }
}
