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

html {
  scroll-behavior: smooth;
}

/* === TOKENS (exact from Figma palette) === */
:root {
  --bg: #F1F5F8;
  --green: #A9F06E;
  --green-lt: #E1FFC9;
  --black: #14202C;
  --dark: #14202C;
  --white: #FFFFFF;
  --tag-blue-lt: #B9DBFB;
  --tag-gray: #C6CFD4;
  --tag-blue: #468DCC;
  --tag-navy: #253E5C;
  --tag-orange: #FF9459;
  --card-bg: rgba(255, 255, 255, 0.6);
  --card-border: rgba(255, 255, 255, 1);
  --radius-card: 24px;
  --radius-btn: 36px;
  --font-heading: 'Inter Display', 'Inter', -apple-system, sans-serif;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: inline-flex !important;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: var(--bg);
  border-bottom: 1px solid rgba(20, 32, 44, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

nav ul a {
  font-size: 14px;
  color: #1c2729;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity .15s;
}

nav ul a:hover {
  opacity: .6;
}

.nav-cta {
  border: 1.5px solid rgba(20, 32, 44, 0.24);
  background: transparent;
  border-radius: 40px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}

.nav-cta:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* === HERO === */
.hero {
  padding: 80px 24px 0;
}

.hero-card {
  border-radius: 32px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-image: url('../public/anker-main-image.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
}

.hero-rating .star {
  color: #f97316;
}

.hero-rating .num {
  color: #fff;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 44px;
  letter-spacing: -0.01em;
}

.hero-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: auto;
}

.hero-btns .btn-orange {
  text-align: center;
}

.btn-green {
  background: #FF9459;
  color: var(--dark);
  border: none;
  border-radius: var(--radius-btn);
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.01em;
  transition: opacity .15s, transform .15s;
}

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

.btn-orange {
  background: #FF9459;
  color: var(--dark);
  border: none;
  border-radius: var(--radius-btn);
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.01em;
  transition: opacity .15s, transform .15s;
}

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

.btn-outline-white {
  background: transparent;
  color: #FF9459;
  border: 1.5px solid #FF9459;
  border-radius: var(--radius-btn);
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: -0.01em;
  transition: all .15s;
}

.btn-outline-white:hover {
  background: rgba(255, 148, 89, 0.05);
}

.btn-outline-white .icon-box {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.btn-outline-white:hover .icon-box {
  background: rgba(255, 255, 255, .2);
}

/* Hero image removed as it's now a background */

.hero-foot {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: -0.01em;
  margin-top: 48px;
}

/* === SHARED SECTION STYLES === */
.section {
  padding: 96px 24px;
}

.section-title-c {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.05;
}

.btn-black {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.01em;
  transition: opacity .15s;
}

.btn-black:hover {
  opacity: .75;
}

.center {
  text-align: center;
}

/* === RESULTS === */
.results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.res-card {
  background: rgba(255, 255, 255, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  backdrop-filter: blur(25px);
}

.res-card-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #aaa;
}

.res-card h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--dark);
}

/* === FOR WHOM === */
.for-whom-wrap {
  padding: 96px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
}

.for-whom-header {
  text-align: center;
  margin-bottom: 40px;
}

.for-whom-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--dark);
}

.for-whom-meta {
  font-size: 16px;
  color: #888;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 1200px;
  margin-bottom: 56px;
}

.tag-uniform {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: #ced5d9;
  color: var(--dark);
  padding: 20px 28px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.tag-icon-arrow {
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === PROBLEMS === */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 160px;
}

.prob-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 8px;
}

.prob-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.prob-item h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.3;
  color: var(--dark);
}

/* === SOLUTION DARK BANNER === */
.sol-banner {
  background: var(--dark);
  background-image: url('../public/solution.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  padding: 60px 48px 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

/* green glow blobs */
.sol-glow-a,
.sol-glow-b {
  display: none;
}

/* grain overlay */
.sol-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .045;
  pointer-events: none;
  z-index: 0;
}

.sol-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.sol-banner p {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.sol-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sol-card {
  background: rgba(255, 255, 255, .07);
  border: 2px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 20px 18px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sol-card-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: rgba(255, 255, 255, .45);
}

.sol-card h4 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.3;
}

/* === SCENARIOS === */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.sc-card {
  background: #14202C;
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 4px solid #e1e4e8;
}

.sc-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.sc-card h3 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 64px;
  color: #fff;
}

.sc-card .btn-green {
  display: block;
  text-align: center;
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
}

/* === ROADMAP === */
.roadmap-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  line-height: 1.05;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.rm-card {
  background: rgba(255, 255, 255, .6);
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-card);
  padding: 24px 22px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(25px);
}

.rm-num {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.rm-card p {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.3;
  color: var(--dark);
}

/* === CASES === */
.cases-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  line-height: 1.05;
  color: var(--dark);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.case-card {
  background: #14202C;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.case-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.case-logo {
  width: 56px;
  height: 56px;
  background: #ced5d9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-top-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

.case-top-info a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.case-badge {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0;
  white-space: nowrap;
}

.case-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 20px 0;
}

.case-label {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.case-problem-title {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.case-list {
  padding-left: 20px;
  margin: 0;
  margin-bottom: 40px;
}

.case-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 4px;
}

.case-list li::marker {
  color: rgba(255, 255, 255, 0.4);
}

.case-result {
  background: #B9D1DF;
  border-radius: 16px;
  padding: 24px;
  margin-top: auto;
}

.case-result .rl {
  font-size: 12px;
  font-weight: 600;
  color: #14202C;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.case-result p {
  font-size: 15px;
  font-weight: 400;
  color: #14202C;
  line-height: 1.4;
}

/* === TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.team-photo-area {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e0e6e4, #c8d4cf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  overflow: hidden;
}

.team-photo-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-overlay-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-name-pill {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.team-social-row {
  display: flex;
  gap: 5px;
}

.team-social {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  transition: background .15s;
}

.team-social:hover {
  background: #fff;
}

.team-bottom {
  padding: 14px 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.team-bottom p {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  flex: 1;
}

.team-plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #888;
  cursor: pointer;
  flex-shrink: 0;
}

/* === REVIEWS === */
.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.reviews-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-tag-strip {
  background: #e0e4e7;
  border-radius: 12px 12px 0 0;
  padding: 10px 18px;
  font-size: 10px;
  font-weight: 700;
  color: #777;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.review-body {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  flex: 1;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  overflow: hidden;
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-person-info {
  flex: 1;
}

.review-person-info h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.review-person-info span {
  font-size: 13px;
  color: #888;
}

.review-links-row {
  display: flex;
  gap: 5px;
}

.review-link-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: background .15s;
}

.review-link-pill:hover {
  background: #e0e0e0;
}

.review-sub-links {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.review-sub-links a {
  font-size: 12px;
  color: #2a7aff;
  text-decoration: underline;
}

.review-quote {
  font-size: 56px;
  color: #cbd5e1;
  line-height: .4;
  font-family: Georgia, serif;
  margin-bottom: -10px;
  margin-top: 40px;
}

.review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.65;
}

.review-text strong {
  font-weight: 700;
  font-style: italic;
}

/* === FAQ === */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 150px;
  align-items: start;
}

.faq-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  line-height: 1.05;
}

.faq-item {
  border-bottom: 1px solid rgba(17, 17, 17, .12);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #666;
  letter-spacing: -0.04em;
  gap: 16px;
  transition: color .15s;
}

.faq-q:hover {
  color: var(--dark);
}

.faq-plus {
  flex-shrink: 0;
  font-size: 22px;
  color: #bbb;
  line-height: 1;
  transition: transform .2s, color .2s;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  color: var(--dark);
}

.faq-item.open .faq-q {
  color: var(--dark);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.faq-item.open .faq-a {
  display: block;
}

/* === CTA BANNER === */
.cta-wrap {
  padding: 20px 24px 32px;
}

.cta-banner {
  background: var(--dark);
  background-image: url('../public/getaiaudit.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  padding: 90px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, .12);
}

.cta-glow-l,
.cta-glow-r {
  display: none;
}

.cta-banner h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: #fff;
  color: var(--dark);
  border: none;
  border-radius: var(--radius-btn);
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.01em;
  transition: opacity .15s;
}

.btn-white:hover {
  opacity: .88;
}

.btn-outline-dark-border {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-btn);
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.01em;
  transition: border-color .15s;
}

.btn-outline-dark-border:hover {
  border-color: rgba(255, 255, 255, .45);
}

/* === FORM === */
.form-section {
  margin: 0 24px 64px;
  padding: 80px 24px 0;
  text-align: center;
}

.form-section h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 48px;
  color: var(--dark);
}

.form-card {
  max-width: 860px;
  margin: 0 auto;
  background: #14202C;
  border-radius: 28px;
  padding: 40px;
  text-align: left;
}

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

.form-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-submit-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.fg label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.checkbox-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.cb-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cb-box {
  width: 20px;
  height: 20px;
  background: #2e2e2e;
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}

.cb-box.on {
  background: var(--green);
}

.cb-box.on::after {
  content: '✓';
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

.cb-opt span {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
}

.radio-row {
  display: flex;
  gap: 22px;
}

.rb-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.rb-dot {
  width: 20px;
  height: 20px;
  background: #2e2e2e;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}

.rb-dot.on {
  background: var(--green);
}

.rb-dot.on::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--dark);
  border-radius: 50%;
}

.rb-opt span {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
}

.fg input,
.fg textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  /* Softer blend with #14202C */
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
  letter-spacing: -0.01em;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, .28);
}

.fg input:focus,
.fg textarea:focus {
  border-color: rgba(70, 141, 204, .6);
  outline: none;
}

.fg textarea {
  resize: vertical;
  min-height: 88px;
}

.form-submit {
  width: 100%;
  background: #FF9459;
  color: var(--dark);
  border: none;
  border-radius: var(--radius-btn);
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: opacity .15s, transform .15s;
}

.form-submit:hover {
  opacity: .85;
  transform: translateY(-1px);
}

/* === FOOTER === */
.footer-wrap {
  padding: 0 24px 24px;
}

.footer-card {
  background: #fff;
  border-radius: 32px;
  padding: 40px 48px;
}

.fc-new-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.fc-new-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.fc-new-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 400;
  color: #333;
}

.fc-new-desc {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
  max-width: 640px;
}

.fc-new-copy {
  font-size: 14px;
  color: #888;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(20, 32, 44, 0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.fc-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.fc-legal-links a {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 500;
}

.fc-legal-links a:hover {
  color: var(--dark);
}

.fc-new-contacts {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #888;
  font-weight: 600;
}

.fc-new-contacts a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.fc-new-contacts a:hover {
  color: var(--dark);
}

.fc-new-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}

.fc-new-right div {
  font-size: 14px;
  color: #888;
  font-weight: 600;
  margin-bottom: 8px;
}

.fc-new-right a {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 500;
  display: block;
}

.fc-new-right a:hover {
  color: var(--dark);
}

@media (min-width: 801px) {
  /* No negative margins needed now that .section is standardized */
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {

  .results-grid,
  .problems-grid,
  .sol-cards,
  .roadmap-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 800px) {
  nav ul {
    display: none;
  }

  nav {
    padding: 0 12px;
  }

  .hero {
    padding: 80px 12px 40px;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-card {
    padding: 20px 0;
    min-height: auto;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .section {
    padding: 48px 12px;
  }

  .for-whom-wrap {
    padding: 40px 12px;
  }

  .tags-cloud {
    flex-direction: column;
    align-items: stretch;
  }

  .tag-uniform {
    white-space: normal;
    justify-content: flex-start;
  }

  .for-whom-layout {
    gap: 20px;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
  }

  .sol-cards {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 12px;
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 64px;
    margin-top: 48px;
  }

  .cases-grid,
  .reviews-grid,
  .team-grid,
  .scenarios-grid {
    grid-template-columns: 1fr;
  }

  .sol-banner {
    padding: 40px 20px;
  }

  .sc-card {
    padding: 32px 20px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fc-new-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .fc-new-right {
    align-items: flex-start;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-white,
  .btn-outline-dark-border,
  .btn-green,
  .btn-orange,
  .btn-black,
  .btn-outline-white {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

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

  .form-section {
    margin: 0 12px 48px;
    padding: 48px 12px 0;
  }

  .form-card {
    padding: 24px 20px;
  }

  .cta-wrap {
    padding: 20px 12px 32px;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .footer-wrap {
    padding: 0 12px 24px;
  }

  .footer-card {
    padding: 40px 20px;
  }

  .mobile-only {
    display: flex !important;
  }

  .desktop-only {
    display: none !important;
  }

  .reviews-mobile-cta,
  .faq-mobile-cta {
    margin-top: 32px;
  }

  .section-title-c,
  .roadmap-section h2,
  .cases-section h2,
  .reviews-header,
  .for-whom-header,
  .faq-left h2,
  .form-section h2,
  .cta-banner h2 {
    margin-bottom: 18px !important;
    font-size: 32px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 36px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .sol-cards {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    row-gap: 64px;
    margin-top: 48px;
  }

  .tag-uniform {
    padding: 12px 16px;
    font-size: 15px;
  }

  .sc-card h3 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .case-card {
    padding: 24px 20px;
  }

  .case-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .case-badge {
    margin-left: 0;
  }

  .faq-q {
    font-size: 16px;
  }
}