@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/*
Theme Name: OmniForgeAI
Author: Veeraj
Version: 1.0
*/

:root {
  --bg-main: #090d15;
  --bg-panel: #151a23;
  --bg-band: #171d27;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f4f8;
  --muted: #c0c6d2;
  --subtle: #9ea6b4;
  --primary: #2f67e9;
  --primary-hover: #3e77ff;
  --max: 1300px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: radial-gradient(circle at 50% 5%, #0f1930 0%, var(--bg-main) 42%, #070a11 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100% - 2.2rem, var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 2.2rem, 980px);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(7, 10, 17, 0.95);
  border-top: 1px solid #b66b2b;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(170px, 18vw, 260px);
  max-height: 62px;
  object-fit: contain;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  color: #f0f2f7;
  font-size: 0.98rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.nav-menu a:hover,
.footer-menu a:hover,
.legal-list a:hover,
.contact-link:hover {
  color: #7fb2ff;
}

.nav-menu a[href*="/contact"] {
  background: var(--primary);
  padding: 0.82rem 1.5rem;
  border-radius: 0;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(47, 103, 233, 0.28);
}

.nav-menu a[href*="/contact"]:hover {
  background: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(47, 103, 233, 0.34);
}

@supports selector(li:has(> a)) {
  .nav-menu li:has(> a[href*="/contact"]) {
    order: 999;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 7.5rem;
  text-align: center;
}

.hero::before {
  content: none;
}

.hero-content {
  max-width: 1040px;
  position: relative;
  z-index: 2;
}

.hero-backdrop-word {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 17vw, 15rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.hero-banner-image {
  width: min(100%, 1200px);
  margin: 0 auto 1.8rem;
  border-radius: 0;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 0.98;
  margin: 0 0 1.4rem;
  text-wrap: balance;
}

.lead {
  font-size: clamp(1.05rem, 1.65vw, 1.95rem);
  max-width: 980px;
  color: var(--muted);
  margin: 0;
}

.center-lead {
  margin-inline: auto;
}

.hero-link {
  display: inline-block;
  margin-top: 2.2rem;
  font-size: 1.9rem;
  font-weight: 700;
  color: #f5f7fb;
}

.hero-link:hover {
  color: #8cb8ff;
}

.section {
  padding: 5.4rem 0;
  position: relative;
}

.what-we-do {
  padding-top: 3.7rem;
}

h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  line-height: 1.02;
  margin: 0 0 1.3rem;
  text-wrap: balance;
}

h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.1;
}

p {
  margin-top: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.3rem;
}

.center-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn.square {
  border-radius: 0;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-light {
  background: #f6f7f9;
  border-color: #f6f7f9;
  color: #1854d5;
}

.btn-light:hover {
  background: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.88);
}

.btn-outline:hover {
  border-color: #86b3ff;
  color: #86b3ff;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(20, 25, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 165, 255, 0.38);
  box-shadow: 0 18px 34px rgba(8, 11, 18, 0.5);
}

.card p,
.footer p,
.small-text {
  font-size: 1.04rem;
  color: var(--muted);
}

.top-space {
  margin-top: 1.6rem;
}

.top-space-xl {
  margin-top: 3rem;
}

.service-grid {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.8rem;
  color: #8ab5ff;
  margin-bottom: 1rem;
}

.contrast-band {
  background: var(--bg-band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-lists {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}

.list-block h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.problem h2 {
  color: #ff6f7d;
}

.solution h2 {
  color: #41db8a;
}

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

.status-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.04rem;
  color: #d7dce6;
  margin-bottom: 0.75rem;
}

.status-icon {
  display: inline-flex;
  min-width: 1rem;
  margin-top: 0.06rem;
  font-weight: 700;
}

.problem .status-icon {
  color: #ff4f83;
}

.solution .status-icon {
  color: #53df96;
}

.trust-section .container {
  width: min(100% - 2.2rem, 940px);
}

.trust-grid {
  gap: 1.1rem;
}

.trust-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trust-icon {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #f5f7fb;
}

.trust-card p {
  margin: 0;
  font-size: 1.05rem;
}

.cta-section {
  padding-top: 2rem;
  padding-bottom: 4.7rem;
}

.cta-panel {
  max-width: 830px;
}

.page-hero {
  padding: 4.2rem 0 2.8rem;
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  color: var(--muted);
}

.ai-terms-hero {
  padding: 4.9rem 0 0;
  border-bottom: 0;
  text-align: center;
}

.ai-terms-hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 4.5vw, 4.15rem);
  line-height: 1.03;
}

.ai-terms-updated {
  margin: 0.8rem 0 0;
  color: #c7cdd8;
  font-size: clamp(1.03rem, 1.3vw, 1.4rem);
}

.ai-terms-section {
  position: relative;
  overflow: hidden;
  padding: 8.3rem 0 5.8rem;
}

.ai-terms-section::before {
  content: none;
}

.ai-terms-section::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.6rem, 10vw, 8.7rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.ai-terms-inner {
  width: min(100% - 2.2rem, 760px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ai-terms-block + .ai-terms-block {
  margin-top: 2.35rem;
}

.ai-terms-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.05rem, 2.7vw, 2.95rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.ai-terms-inner p {
  margin: 0;
  color: #c9d0db;
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.52;
}

.ai-terms-inner ul {
  margin: 0.65rem 0 0;
  padding-left: 1.35rem;
}

.ai-terms-inner li {
  margin-bottom: 0.28rem;
  color: #c9d0db;
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.52;
}

.ai-terms-inner a {
  color: #5aa9ff;
}

.ai-terms-inner a:hover {
  color: #89c4ff;
}

.about-hero {
  padding: 5rem 0 2.4rem;
  border-bottom: 0;
}

.about-hero h1 {
  margin-bottom: 1.1rem;
}

.about-hero .lead {
  max-width: 980px;
}

.about-content {
  position: relative;
  overflow: hidden;
  padding-top: 2.6rem;
  padding-bottom: 4.2rem;
}

.about-content::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.6rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.about-content .container {
  position: relative;
  z-index: 1;
}

.about-content p,
.about-list li {
  font-size: 1.04rem;
  color: var(--muted);
}

.about-section-title {
  font-size: clamp(2rem, 2.5vw, 2.95rem);
  margin-bottom: 0.9rem;
}

.about-list {
  margin: 0;
  padding-left: 1.4rem;
}

.about-list li {
  margin-bottom: 0.6rem;
}

.about-team-grid {
  gap: 1.4rem;
}

.about-team-card {
  background: rgba(20, 25, 34, 0.85);
  border-color: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  animation: fade-slide-up 0.7s ease both;
}

.about-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(95, 165, 255, 0.13), rgba(95, 165, 255, 0));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.about-team-card:hover::before {
  opacity: 1;
}

.about-team-card:nth-child(2) {
  animation-delay: 0.08s;
}

.about-team-card:nth-child(3) {
  animation-delay: 0.16s;
}

.about-team-card h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 0.35rem;
}

.about-team-card p {
  margin: 0;
}

.about-role {
  color: #5fa5ff;
  font-weight: 600;
}

.about-role + p {
  margin-top: 0.35rem;
}

.about-tools {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.about-tools li {
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #d0d6e2;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  animation: fade-slide-up 0.6s ease both;
}

.about-tools li:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 176, 255, 0.65);
  background: rgba(95, 165, 255, 0.14);
}

.about-cta {
  margin-top: 2.3rem;
}

.about-cta .btn {
  min-width: 310px;
  animation: fade-slide-up 0.7s ease both;
  animation-delay: 0.2s;
}

.about-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(16, 31, 63, 0.45);
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: #8fb8ff;
}

.card ul,
.check-list,
.x-list,
.legal-list,
.footer-menu {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.card li,
.footer-menu li,
.legal-list li {
  margin-bottom: 0.6rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font: inherit;
  background: rgba(17, 22, 31, 0.9);
  color: var(--text);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-wrap {
  background: rgba(17, 22, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-actions {
  margin-top: 1rem;
}

.center {
  text-align: center;
}

.contact-page {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 6.2rem;
}

.contact-page::before {
  content: none;
}

.contact-page-inner {
  width: min(100% - 2.2rem, 940px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-page h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.05rem, 3.5vw, 3.45rem);
  line-height: 1.05;
}

.contact-page-lead {
  margin: 0 auto;
  max-width: 860px;
  color: #c4c9d5;
  font-size: clamp(1.02rem, 1.58vw, 1.93rem);
}

.contact-page-form-wrap {
  margin: 4.4rem auto 0;
  max-width: 700px;
  position: relative;
}

.contact-zoho-embed {
  display: block;
  width: min(100%, 610px);
  max-width: 100%;
  height: 320px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #fff;
  position: relative;
  z-index: 1;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(34, 38, 47, 0.84);
  color: #dee3ed;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: #9ea6b4;
}

.contact-confirmation {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(95, 165, 255, 0.45);
  background: rgba(22, 40, 66, 0.7);
  color: #d9e8ff;
  font-weight: 600;
}

.contact-page-form textarea {
  min-height: 150px;
}

.contact-submit {
  width: 100%;
  min-width: 0;
  border-radius: 0;
  margin-top: 0.5rem;
}

.contact-page-alt-text {
  margin: 2.85rem 0 0.45rem;
  color: #d3d7df;
  font-size: 1.04rem;
}

.contact-page-alt-link {
  margin: 0;
}

.contact-page-alt-link a {
  color: #4fa3ff;
  font-size: 1.04rem;
  font-weight: 700;
}

.contact-page-alt-link a:hover {
  color: #80c3ff;
}

/* Terms Page */
body.page-terms .header {
  border-top-color: transparent;
}

body.page-terms::before {
  display: none;
}

.terms-page {
  position: relative;
  overflow: hidden;
}

.terms-page::before {
  content: none;
}

.terms-page > * {
  position: relative;
  z-index: 1;
}

.terms-shell {
  width: min(100% - 2.2rem, 760px);
}

.terms-hero {
  padding: 4.9rem 0 0;
}

.terms-hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 4.5vw, 4.15rem);
  line-height: 1.03;
}

.terms-updated {
  margin: 0.8rem 0 0;
  color: #c7cdd8;
  font-size: clamp(1.03rem, 1.3vw, 1.4rem);
}

.terms-content {
  position: relative;
  padding: 8.3rem 0 5.8rem;
}

.terms-content::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.6rem, 10vw, 8.7rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.terms-content .terms-shell {
  position: relative;
  z-index: 1;
}

.terms-block {
  margin-bottom: 2.35rem;
}

.terms-block h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.05rem, 2.7vw, 2.95rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.terms-block p {
  margin: 0;
  color: #c9d0db;
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.52;
}

.terms-block a,
.terms-confirmation a {
  color: #5aa9ff;
  text-decoration: underline;
}

.terms-block a:hover,
.terms-confirmation a:hover {
  color: #89c4ff;
}

.terms-confirmation {
  margin-top: 3.1rem;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(18, 22, 31, 0.82);
}

.terms-confirmation label {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: #c8ced9;
  line-height: 1.56;
}

.terms-confirmation input[type="checkbox"] {
  appearance: none;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0;
  background: #ffffff;
}

.terms-confirmation input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}

/* Privacy Page */
.privacy-page {
  position: relative;
  overflow: hidden;
  padding: 5.1rem 0 5.9rem;
}

.privacy-page::before {
  content: none;
}

.privacy-page::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.5rem, 9vw, 8.8rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
}

.privacy-page-inner {
  width: min(100% - 2.2rem, 980px);
  position: relative;
  z-index: 1;
}

.privacy-page-header {
  margin: 0 auto 3.6rem;
}

.privacy-page h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.7vw, 4.85rem);
  line-height: 0.98;
}

.privacy-updated {
  margin: 0.9rem 0 0;
  font-size: 1.04rem;
  color: #c0c6d2;
}

.privacy-block {
  margin-top: 2.15rem;
}

.privacy-block h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.05rem, 2.8vw, 3rem);
  line-height: 1.05;
}

.privacy-block p,
.privacy-block li {
  font-size: 1.04rem;
  color: #c7cdd8;
  line-height: 1.56;
}

.privacy-block p {
  margin: 0;
}

.privacy-block ul {
  margin: 0.65rem 0 0;
  padding-left: 1.35rem;
}

.privacy-block li {
  margin-bottom: 0.28rem;
}

.privacy-block li strong {
  color: #f5f7fb;
}

.privacy-block a {
  color: #4fa3ff;
}

.privacy-block a:hover {
  color: #80c3ff;
}

.cookie-table-wrap {
  margin-top: 0.8rem;
  overflow-x: auto;
}

.cookie-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.72rem 0;
  font-size: 1.04rem;
  color: #c7cdd8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cookie-table th {
  color: #f5f7fb;
  font-weight: 700;
}

.footer {
  background: #171b24;
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 2.2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}

.footer p,
.footer-menu a,
.legal-list a,
.contact-link {
  font-size: 1.04rem;
  color: #9ea6b4;
}

.contact-link {
  color: #5fa5ff;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.9rem;
  padding-top: 1.2rem;
  text-align: center;
}

.terms-note,
.copyright {
  margin: 0;
  font-size: 0.93rem;
  color: #70788a;
}

.copyright {
  margin-top: 0.45rem;
}

.terms-note a {
  color: #5fa5ff;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 1.5rem;
  }

  .lead,
  .card p,
  .footer p,
  .footer-menu a,
  .legal-list a,
  .contact-link,
  .status-list li {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.98rem;
  }

  .hero-link {
    font-size: 1.4rem;
  }
}

@media (max-width: 980px) {
  .grid-4,
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid,
  .grid-2,
  .split-lists {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 6.4rem 0 5rem;
  }

  .hero-backdrop-word {
    white-space: normal;
    width: 100%;
    text-align: center;
    font-size: clamp(4rem, 23vw, 8rem);
  }

  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-terms-inner {
    width: min(100% - 2.2rem, 760px);
  }

  .ai-terms-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .ai-terms-section {
    padding-top: 6.2rem;
  }

  .terms-page::before {
    width: min(40vw, 470px);
  }

  .terms-content {
    padding-top: 6.2rem;
  }

  .terms-block h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
}

@media (max-width: 760px) {
  body::before {
    width: min(72vw, 360px);
    height: 70vh;
    top: 6.5rem;
  }

  .nav-row {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    gap: 0.7rem 1.1rem;
    flex-wrap: wrap;
  }

  .nav-menu a[href*="/contact"] {
    padding: 0.7rem 1rem;
  }

  .brand-logo {
    width: clamp(150px, 48vw, 220px);
  }

  .section {
    padding: 4.2rem 0;
  }

  .btn {
    min-width: 220px;
    width: 100%;
  }

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

  .about-content {
    padding-top: 2rem;
  }

  .about-content::after {
    top: 62%;
    font-size: clamp(2.3rem, 16vw, 5.2rem);
    white-space: normal;
    width: 100%;
    text-align: center;
    line-height: 0.92;
  }

  .about-list {
    padding-left: 1.1rem;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-tools {
    gap: 0.55rem;
  }

  .about-tools li {
    font-size: 0.95rem;
  }

  .about-cta .btn {
    min-width: 0;
  }

  .contact-page {
    padding: 4.3rem 0 4.8rem;
  }

  .contact-page::before {
    width: min(70vw, 380px);
    top: 4.8rem;
    height: 86%;
  }

  .contact-page-form-wrap {
    margin-top: 3.2rem;
  }

  .contact-zoho-embed {
    height: 400px;
  }

  .terms-page::before {
    width: min(72vw, 430px);
  }

  .ai-terms-hero {
    padding-top: 4rem;
  }

  .ai-terms-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .ai-terms-updated {
    font-size: 1rem;
  }

  .ai-terms-section {
    padding: 4.8rem 0 4.5rem;
  }

  .ai-terms-section::before {
    width: min(72vw, 430px);
  }

  .ai-terms-section::after {
    top: 53%;
    font-size: clamp(2.5rem, 16vw, 5rem);
    white-space: normal;
    width: 100%;
    text-align: center;
    line-height: 0.92;
  }

  .ai-terms-block + .ai-terms-block {
    margin-top: 2rem;
  }

  .ai-terms-inner h2 {
    font-size: clamp(1.7rem, 6.4vw, 2.45rem);
  }

  .ai-terms-inner p,
  .ai-terms-inner li {
    font-size: 1rem;
    line-height: 1.54;
  }

  .terms-hero {
    padding-top: 4rem;
  }

  .terms-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .terms-updated {
    font-size: 1rem;
  }

  .terms-content {
    padding: 4.8rem 0 4.5rem;
  }

  .terms-content::after {
    top: 53%;
    font-size: clamp(2.5rem, 16vw, 5rem);
    width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 0.92;
  }

  .terms-block {
    margin-bottom: 2rem;
  }

  .terms-block h2 {
    font-size: clamp(1.7rem, 6.4vw, 2.45rem);
  }

  .terms-block p {
    font-size: 1rem;
    line-height: 1.54;
  }

  .terms-confirmation {
    margin-top: 2.55rem;
    padding: 1.15rem;
  }

  .terms-confirmation label {
    gap: 0.65rem;
    font-size: 0.97rem;
  }

  .privacy-page {
    padding: 4.2rem 0 4.8rem;
  }

  .privacy-page::before {
    width: min(66vw, 380px);
    top: 4rem;
    height: calc(100% - 7.2rem);
  }

  .privacy-page::after {
    top: 56%;
    font-size: clamp(2.4rem, 16vw, 5rem);
    white-space: normal;
    width: 100%;
    text-align: center;
    line-height: 0.92;
  }

  .privacy-page-header {
    margin-bottom: 2.7rem;
  }

  .privacy-block h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu a,
  .card,
  .about-team-card,
  .about-team-card::before,
  .about-tools li,
  .about-cta .btn {
    transition: none;
    animation: none;
  }

  .card:hover,
  .about-tools li:hover,
  .about-cta .btn:hover,
  .nav-menu a[href*="/contact"]:hover {
    transform: none;
  }
}

/* Services Page */
.services-page {
  position: relative;
  overflow: hidden;
}

.services-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 28%, rgba(55, 128, 255, 0.2) 0%, rgba(17, 19, 33, 0) 48%);
  pointer-events: none;
  z-index: 0;
}

.services-page > * {
  position: relative;
  z-index: 1;
}

.services-page .lead {
  font-size: clamp(1rem, 1.4vw, 1.95rem);
}

.services-hero {
  padding: 5.2rem 0 4.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(28, 69, 125, 0.52) 0%, rgba(19, 38, 78, 0.3) 55%, rgba(11, 14, 24, 0) 100%);
}

.services-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
}

.services-section {
  padding: 4.7rem 0;
}

.services-section-top {
  padding-top: 4.2rem;
}

.services-band {
  background: rgba(22, 28, 37, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-page .section-tag {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #86bcff;
}

.services-page .section-intro {
  max-width: 1020px;
}

.services-page .section-intro h2 {
  margin: 0 0 0.75rem;
}

.services-page .section-intro p {
  margin: 0;
  font-size: 1.03rem;
  color: #c0c6d2;
}

.services-page .subheading {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  gap: 1.35rem;
}

.services-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid.cols-2 > .service-card:only-child {
  max-width: 520px;
}

.service-card {
  background: rgba(22, 27, 37, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.service-card h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.25rem, 1.8vw, 2.05rem);
}

.service-card-featured {
  border-color: #2f8dff;
  box-shadow: 0 0 0 1px rgba(47, 141, 255, 0.2) inset;
}

.service-card-featured-purple {
  border-color: #2f8dff;
  box-shadow: 0 0 0 1px rgba(47, 141, 255, 0.35) inset;
}

.services-page .card-tag {
  margin: 0 0 0.7rem;
  color: #86bcff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.services-page .card-tag.tag-green {
  color: #42db95;
}

.services-page .card-tag.tag-blue {
  color: #5eaaff;
}

.services-page .card-tag-floating {
  position: absolute;
  top: -0.48rem;
  left: 1.05rem;
  margin: 0;
  padding: 0 0.2rem;
  background: #111622;
}

.services-page .card-price {
  margin: 0;
  line-height: 1.1;
}

.services-page .card-price .value {
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 800;
  color: #f1f3f8;
}

.services-page .card-price .unit {
  margin-left: 0.15rem;
  font-size: 0.65em;
  color: #a9b0bf;
}

.services-page .card-note,
.services-page .card-highlight,
.services-page .card-unit-price,
.services-page .card-bonus {
  margin: 0.45rem 0 0;
  font-size: 0.96rem;
}

.services-page .card-note,
.services-page .card-highlight {
  color: #5aa9ff;
  font-weight: 600;
}

.services-page .card-note-purple {
  color: #7cb8ff;
}

.services-page .card-unit-price {
  color: #aeb4c0;
}

.services-page .card-bonus {
  color: #42db95;
}

.services-page .feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.services-page .feature-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.52rem;
  font-size: 0.96rem;
  color: #d5dae5;
}

.services-page .feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #5ba9ff;
  font-weight: 700;
}

.services-page .feature-list-purple li::before {
  color: #6fb0ff;
}

.services-page .market-list li::before {
  content: "\25C7";
  color: #6fb0ff;
}

.services-page .card-heading-blue {
  color: #5eaaff;
}

.service-btn {
  width: 100%;
  min-width: 0;
  margin-top: auto;
  border-radius: 0;
  padding: 0.78rem 1rem;
}

.ebook-card {
  gap: 0.8rem;
}

.ebook-card-media {
  margin: -0.1rem -0.1rem 0.2rem;
}

.ebook-card-cover {
  width: 100%;
  max-width: 240px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.services-page .service-link {
  margin-top: auto;
  display: inline-block;
  font-size: 1.02rem;
  font-weight: 700;
  color: #f4f6fb;
  text-align: center;
}

.services-page .service-link:hover {
  color: #81b6ff;
}

.membership-card {
  max-width: 1040px;
  margin-inline: auto;
  padding: 1.8rem 1.3rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(47, 141, 255, 0.5);
  background: rgba(18, 22, 31, 0.72);
}

.membership-card h3 {
  margin-bottom: 0.1rem;
}

.membership-card .membership-price {
  margin: 0 0 0.7rem;
}

.services-section-marketplace .services-grid.cols-3 {
  align-items: stretch;
}

.services-cta {
  padding-top: 4rem;
}

.services-cta .cta-panel {
  max-width: 860px;
}

@media (max-width: 1240px) {
  .services-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .services-section {
    padding: 4rem 0;
  }

  .services-grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .services-hero {
    padding: 4.4rem 0 3.8rem;
  }

  .services-grid.cols-4,
  .services-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .services-page .card-price .value {
    font-size: 2.2rem;
  }
}

