:root {
  --bg: #f4f1ea;
  --bg-soft: rgba(255, 255, 255, 0.62);
  --panel: rgba(255, 255, 255, 0.7);
  --panel-strong: rgba(255, 255, 255, 0.82);
  --text: #1c2428;
  --muted: #5c666d;
  --line: rgba(28, 36, 40, 0.1);
  --accent: #0d6efd;
  --accent-2: #8be0d4;
  --shadow: 0 20px 60px rgba(24, 36, 42, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Onest", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(137, 224, 212, 0.35), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(13, 110, 253, 0.14), transparent 22%),
    linear-gradient(180deg, #f8f5ef 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 78%);
  opacity: 0.4;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 24px auto 56px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(25, 31, 35, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #78aefb 60%, var(--accent-2));
  color: white;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--muted);
}

.brand-text strong {
  color: var(--text);
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #111d24, #22333d);
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}

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

.btn-small {
  padding: 12px 16px;
  font-size: 14px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.42);
  color: var(--text);
  border: 1px solid rgba(28, 36, 40, 0.1);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0 56px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.cta-card h2,
.about-copy h2 {
  margin: 0;
  font-family: "Onest", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 3.7vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-text,
.section-note,
.about-copy p,
.cta-card p,
.info-card p,
.showcase-card p,
.process-track p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-tags li,
.metric-chip,
.showcase-top span,
.process-track span,
.card-index {
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(28, 36, 40, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  /*min-height: 700px;*/
  padding: 24px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.05), rgba(139, 224, 212, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-orb {
  position: absolute;
  border-radius: 10px;
  filter: blur(8px);
}

.orb-a {
  inset: 40px auto auto -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(139, 224, 212, 0.9), transparent 70%);
}

.orb-b {
  inset: auto -40px 40px auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.4), transparent 68%);
}

.interface-card {
  backdrop-filter: blur(16px);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(29, 38, 44, 0.12);
}

.interface-site {
  padding: 18px;
  border-radius: 10px;
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(28, 36, 40, 0.16);
}

.site-preview {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(12, 25, 34, 0.96), rgba(16, 41, 52, 0.88)),
    linear-gradient(135deg, rgba(139, 224, 212, 0.2), transparent 40%);
  color: white;
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.metric-chip strong {
  font-size: 18px;
}

.site-headline {
  max-width: 470px;
  margin-top: 54px;
  font-family: "Onest", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.02;
}

.site-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: auto;
}

.site-stats div {
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.site-stats span,
.showcase-top,
.proof-strip span,
.about-points span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

.showcase-top span {
  display: block;
  margin-bottom: 8px;
}

.showcase-top strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.showcase-card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.showcase-card:not(.tall) .showcase-top,
.showcase-card:not(.tall) .showcase-top strong,
.showcase-card:not(.tall) .showcase-top span {
  color: rgba(29, 38, 44, 0.8);
}

.showcase-card p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Chat Demo Styles */
.interface-chat-demo {
  padding: 18px;
  border-radius: 10px;
}

.chat-demo-window {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(12, 25, 34, 0.96), rgba(16, 41, 52, 0.88)),
    linear-gradient(135deg, rgba(139, 224, 212, 0.15), transparent 40%);
  color: white;
  overflow: hidden;
}

.chat-demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-demo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8be0d4, #0d6efd);
}

.chat-demo-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.chat-demo-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.chat-demo-info span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.chat-demo-body {
  flex: 1;
  padding: 20px;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.chat-demo-body::-webkit-scrollbar {
  width: 6px;
}

.chat-demo-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-demo-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.chat-demo-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-demo-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  animation: chatMessageIn 0.4s ease forwards;
}

@keyframes chatMessageIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-demo-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  border-bottom-right-radius: 4px;
}

.chat-demo-message.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 4px;
}

.chat-demo-input {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-demo-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.chat-demo-typing::before {
  content: "";
  display: inline-flex;
  gap: 3px;
}

.chat-demo-typing.is-typing::before {
  content: "●●●";
  animation: typingDots 1.2s infinite;
  letter-spacing: 2px;
  font-size: 8px;
}

@keyframes typingDots {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.site-stats strong {
  font-size: 15px;
}

.interface-bot {
  width: 340px;
  padding: 18px 22px;
  border-radius: 10px;
  margin-left: 110px;
}

.interface-bot p {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.interface-bot strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(25, 31, 35, 0.06);
}

.proof-strip div {
  padding: 12px 16px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip span {
  color: var(--muted);
  margin-bottom: 10px;
}

.proof-strip strong {
  font-size: 17px;
  line-height: 1.35;
}

.section {
  padding: 88px 0 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: end;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.showcase-card,
.about-panel,
.cta-card {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 44px rgba(25, 31, 35, 0.07);
}

.info-card {
  padding: 28px;
}

.info-card h3,
.showcase-card h3,
.process-track h3 {
  margin: 14px 0 10px;
  font-size: 28px;
  line-height: 1.1;
}

.info-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.info-card li {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.promo-card {
  position: relative;
  overflow: hidden;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 10px;
  opacity: 0.55;
  pointer-events: none;
}

.promo-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.18), transparent 34%);
}

.promo-card-accent::after {
  background: radial-gradient(circle, rgba(13, 110, 253, 0.24), transparent 70%);
}

.promo-card-neutral {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56)),
    radial-gradient(circle at top right, rgba(139, 224, 212, 0.18), transparent 34%);
}

.promo-card-neutral::after {
  background: radial-gradient(circle, rgba(139, 224, 212, 0.24), transparent 70%);
}

.promo-card-dark {
  background:
    linear-gradient(145deg, rgba(15, 30, 39, 0.95), rgba(16, 38, 49, 0.88)),
    radial-gradient(circle at top right, rgba(139, 224, 212, 0.18), transparent 30%);
  color: white;
}

.promo-card-dark::after {
  background: radial-gradient(circle, rgba(13, 110, 253, 0.32), transparent 70%);
}

.promo-card-dark p,
.promo-card-dark .promo-highlight,
.promo-card-dark .promo-validity {
  color: rgba(255, 255, 255, 0.76);
}

.promo-badge,
.promo-highlight,
.promo-validity {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--accent);
}

.promo-highlight {
  color: var(--muted);
}

.promo-details {
  margin-top: 14px;
}

.promo-validity {
  margin-top: 18px;
  color: var(--muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.54)),
    radial-gradient(circle at top right, rgba(139, 224, 212, 0.2), transparent 30%);
}

.showcase-card.tall {
  min-height: 420px;
  background:
    linear-gradient(145deg, rgba(15, 30, 39, 0.95), rgba(16, 38, 49, 0.88)),
    radial-gradient(circle at top right, rgba(139, 224, 212, 0.18), transparent 30%);
  color: white;
}

.showcase-card.tall .showcase-top,
.showcase-card.tall .showcase-top strong,
.showcase-card.tall .showcase-top span {
  color: white;
}

.showcase-card.tall p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase-card.tall h3 {
  color: white;
}

.process-section {
  padding-top: 100px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-track article {
  padding: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.process-track span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--accent);
  background: rgba(13, 110, 253, 0.06);
}

.about-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  padding: 32px;
}

.about-points {
  display: grid;
  gap: 16px;
}

.about-points div {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(28, 36, 40, 0.08);
}

.about-points span {
  color: var(--text);
}

.about-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-section {
  padding-bottom: 40px;
}

.cta-card {
  position: relative;
  padding: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(139, 224, 212, 0.3), transparent 26%),
    linear-gradient(145deg, rgba(12, 28, 36, 0.97), rgba(20, 40, 52, 0.92));
  color: white;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 300px;
  height: 300px;
  border-radius: 10px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.45), transparent 70%);
}

.cta-card .eyebrow,
.cta-card p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-card h2 {
  max-width: 780px;
  font-size: clamp(1.9rem, 2.8vw, 3.1rem);
}

.cta-card p {
  max-width: 700px;
}

.page-hero h1,
.news-article h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-anchor-nav a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(28, 36, 40, 0.08);
  color: var(--text);
  font-weight: 700;
}

.page-section-block {
  max-width: 860px;
}

.rich-text {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.rich-text p {
  margin: 0 0 16px;
}

.rich-text h2,
.rich-text h3,
.rich-text blockquote {
  color: var(--text);
  margin: 28px 0 16px;
}

.rich-text img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
  margin: 20px 0;
}

.rich-text ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card,
.news-article,
.site-footer {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 44px rgba(25, 31, 35, 0.07);
}

.news-card {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.news-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.news-date {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.news-article {
  padding: 34px;
}

.article-cover-image {
  width: 100%;
  max-width: 760px;
  margin: 0 0 24px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.news-article-signoff {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 700;
}

.news-article-signoff p {
  margin: 0;
}

.article-lead-box {
  margin-top: 28px;
  padding: 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(139, 224, 212, 0.14));
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.article-related-box {
  margin-top: 28px;
}

.article-lead-form {
  display: grid;
  gap: 14px;
}

.article-lead-form label {
  display: grid;
  gap: 8px;
}

.article-lead-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.article-lead-form input,
.article-lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(28, 36, 40, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
}

.article-lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.article-lead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.article-lead-actions button {
  padding: 14px 18px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #111d24, #22333d);
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.article-lead-actions button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.article-actions {
  margin-top: 28px;
}

.site-toast-stack {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 70;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100vw - 24px));
}

.site-toast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 10px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(25, 31, 35, 0.18);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
}

.site-toast strong {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-toast p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.site-toast.is-success {
  background: rgba(88, 194, 124, 0.14);
  border-color: rgba(65, 153, 93, 0.2);
}

.site-toast.is-error {
  background: rgba(165, 53, 53, 0.14);
  border-color: rgba(165, 53, 53, 0.22);
}

.site-toast.is-warning {
  background: rgba(219, 154, 41, 0.14);
  border-color: rgba(219, 154, 41, 0.22);
}

.site-toast-dismiss {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(17, 29, 36, 0.08);
  color: var(--muted);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 88px;
  padding: 24px 28px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #111d24, #22333d);
  color: white;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(18, 29, 35, 0.24);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.chat-launcher.is-hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.chat-launcher-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #8be0d4;
  box-shadow: 0 0 0 6px rgba(139, 224, 212, 0.18);
}

.site-chat {
  position: fixed;
  right: 24px;
  bottom: 76px;
  z-index: 39;
  width: min(380px, calc(100vw - 24px));
  max-height: min(760px, calc(100vh - 112px));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(19, 30, 36, 0.16);
  transition: opacity 180ms ease, transform 180ms ease;
  overflow: hidden;
}

.site-chat.is-collapsed {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.site-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-chat-meta,
.site-chat-footer {
  min-width: 0;
}

.site-chat-header p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-chat-header strong {
  font-size: 18px;
}

.site-chat-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(17, 29, 36, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.site-chat-body {
  display: grid;
  gap: 8px;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 10px;
}

.chat-message p {
  margin: 0;
  line-height: 1.4;
  font-size: 15px;
}

.chat-message-bot {
  background: rgba(17, 29, 36, 0.08);
}

.chat-message-user {
  margin-left: auto;
  background: rgba(13, 110, 253, 0.12);
}

.chat-brief-action {
  display: flex;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  max-width: 88%;
  margin-top: 4px;
}

.chat-brief-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  background: #0d6efd;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease;
}

.chat-brief-button:hover {
  background: #0b5ed7;
}

.chat-author {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.chat-sources {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted);
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 8px;
}

.chat-mode-switch {
  position: relative;
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  margin-top: 8px;
  border-radius: 10px;
  background: rgba(17, 29, 36, 0.06);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.chat-mode-switch.is-grounded {
  background: rgba(13, 110, 253, 0.12);
  box-shadow: 0 14px 34px rgba(13, 110, 253, 0.14);
}

.chat-mode-switch.is-general {
  background: rgba(17, 29, 36, 0.06);
}

.chat-mode-switch.is-auto-switching {
  animation: chatModeSwitchPulse 1.2s ease;
}

.chat-mode-button {
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.chat-mode-button.is-active {
  background: white;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(17, 29, 36, 0.08);
  transform: translateY(-1px);
}

.chat-mode-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

@keyframes chatModeSwitchPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(13, 110, 253, 0);
  }

  35% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0.12);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 14px 34px rgba(13, 110, 253, 0.14);
  }
}

.chat-chip {
  padding: 5px 10px;
  border: 0;
  border-radius: 10px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 8px;
}

.chat-quick-actions.hidden {
  display: none;
}

.chat-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 16px 8px;
  border-top: 1px solid rgba(28, 36, 40, 0.1);
}

.chat-action-button {
  padding: 6px 12px;
  border: 1px solid rgba(13, 110, 253, 0.3);
  border-radius: 10px;
  background: rgba(13, 110, 253, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-action-button.is-primary {
  background: linear-gradient(135deg, #111d24, #22333d);
  border-color: transparent;
  color: #fff;
}

.chat-action-button:hover {
  background: rgba(13, 110, 253, 0.12);
  border-color: rgba(13, 110, 253, 0.5);
}

.chat-action-button.is-primary:hover {
  background: linear-gradient(135deg, #162630, #2b4350);
  border-color: transparent;
}

.chat-inline-form-wrap {
  padding: 8px 16px 10px;
  border-top: 1px solid rgba(28, 36, 40, 0.1);
}

.chat-inline-form {
  display: grid;
  gap: 10px;
}

.chat-inline-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.chat-inline-form input,
.chat-inline-form textarea {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(28, 36, 40, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.chat-inline-form textarea {
  resize: vertical;
}

.chat-inline-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.site-chat-form input {
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid rgba(28, 36, 40, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.site-chat-form button {
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #111d24, #22333d);
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .hero,
  .section-heading.split,
  .about-panel,
  .showcase-grid,
  .card-grid.three,
  .process-track,
  .proof-strip,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero-panel {
    min-height: auto;
  }

  .chat-demo-window {
    min-height: auto;
  }

  .interface-bot,
  .interface-site {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar {
    border-radius: 10px;
    padding: 14px;
  }

  .btn-small {
    display: none;
  }

  .site-chat {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 96px);
  }

  .chat-launcher {
    right: 12px;
    bottom: 12px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-panel {
    min-height: auto;
    padding: 16px;
  }

  .chat-demo-window {
    min-height: auto;
  }

  .chat-demo-body {
    max-height: 300px;
  }

  .site-preview {
    min-height: auto;
  }

  .site-headline {
    margin-top: 26px;
    font-size: 1.8rem;
  }

  .site-stats {
    grid-template-columns: 1fr;
  }

  .info-card,
  .showcase-card,
  .cta-card,
  .about-panel,
  .process-track article,
  .news-card,
  .news-article,
  .site-footer {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Contacts Page */
.contacts-section {
  padding-top: 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #78aefb 60%, var(--accent-2));
  color: white;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

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

.contact-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.contacts-form-wrap {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.contacts-form h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.contacts-form > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* About Page */
.about-content {
  padding-top: 0;
}

.about-block {
  margin-bottom: 60px;
}

.about-block h2 {
  margin: 0 0 20px;
  font-size: 1.5rem;
}

.about-block > p {
  max-width: 800px;
  line-height: 1.7;
  color: var(--muted);
}

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

.principle-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.principle-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.76);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #78aefb 60%, var(--accent-2));
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-step h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-list li {
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.audience-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.audience-list li {
  color: var(--muted);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tech-tag {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-cta {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(139, 224, 212, 0.12));
  text-align: center;
}

.about-cta h2 {
  margin: 0 0 12px;
}

.about-cta p {
  margin: 0 0 24px;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Responsive for new pages */
@media (max-width: 900px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-cta {
    padding: 26px;
  }

  .portfolio-full-grid {
    grid-template-columns: 1fr;
  }

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

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

  .portfolio-section .see-all {
    width: 100%;
    text-align: center;
  }
}

/* AI Stack Section */
.ai-stack-section .stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.stack-category {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.stack-category h3 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.stack-category ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stack-category li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.stack-category li:last-child {
  border-bottom: none;
}

/* Portfolio Section */
.portfolio-section .section-heading.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.portfolio-section .see-all {
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.portfolio-section .see-all:hover {
  background: #0d5ccc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.portfolio-card {
  padding: 28px 24px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(25, 31, 35, 0.12);
  border-color: var(--accent-2);
}

.portfolio-card .work-category {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--accent);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.portfolio-card > p {
  margin: 0 0 16px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.work-results {
  margin-bottom: 16px;
}

.work-results strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.work-results ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-results li {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.work-results li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.work-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tech-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(139, 224, 212, 0.15);
  color: var(--accent-2);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

/* Full Portfolio Grid */
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.portfolio-full-card {
  padding: 32px;
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-strong) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.portfolio-full-card.featured {
  grid-column: span 1;
  border-color: var(--accent-2);
  box-shadow: 0 0 20px rgba(139, 224, 212, 0.2);
}

.portfolio-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(25, 31, 35, 0.15);
  border-color: var(--accent);
}

.portfolio-card-header {
  margin-bottom: 20px;
}

.portfolio-card-header .work-category {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(13, 110, 253, 0.12);
  color: var(--accent);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-card-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.portfolio-card-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.portfolio-card-results {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.portfolio-card-results strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-results ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-card-results li {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.portfolio-card-results li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 600;
}

.portfolio-card-tech {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolio-card-tech strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Cookie Notification Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  background: rgba(28, 36, 40, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner.hide {
  animation: slideDown 0.4s ease-out forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-content a {
  color: var(--accent-2);
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-content a:hover {
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--accent);
  color: white;
}

.cookie-btn-accept:hover {
  background: #0d5ccc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.cookie-btn-dismiss {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-dismiss:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}
