:root {
  /* Palette: Clean & Trustworthy */
  --bg-body: #f9fafb; /* Very light grey-blue */
  --bg-surface: #ffffff;
  --text-primary: #111827; /* Near black */
  --text-secondary: #6b7280; /* Muted grey */
  --primary: #2563eb; /* Royal Blue */
  --primary-dark: #1d4ed8;
  --border: #e5e7eb; /* Light border */

  /* Spacing & Layout */
  --container: 1280px;
  --header-height: 80px;
  --radius: 12px;

  /* Shadows (Soft) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Button Styles (Reusable) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--header {
  background-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--header:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: var(--primary);
  color: white;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.header__logo-icon {
  width: 24px;
  height: 24px;
  background-color: var(--primary);
  border-radius: 6px;
  display: inline-block;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  gap: 40px;
}

.header__link {
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.header__link:hover {
  color: var(--primary);
}

/* Minimalist Underline Animation */
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.header__link:hover::after {
  width: 100%;
}

.header__mobile-actions {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Burger Menu */
.header__burger {
  display: none;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .header__menu {
    display: none; /* Hide default menu */
  }

  .header__burger {
    display: flex;
  }

  .header__actions .btn--header {
    display: none; /* Hide desktop CTA */
  }

  /* Mobile Drawer */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-surface);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav .header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .header__link {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
  }

  .header__mobile-actions {
    display: block;
    width: 100%;
    max-width: 280px;
  }
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding-top: 80px;
  margin-top: 80px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer__logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: block;
}

.footer__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer__title {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__link {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer__link:hover {
  color: var(--primary);
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer__icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__badge {
  margin-top: 20px;
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.1); /* Primary with opacity */
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* --- HERO SECTION --- */
.hero {
  padding: 140px 0 100px; /* Account for fixed header */
  min-height: 90vh; /* Almost full screen */
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Typography & Content */
.hero__badge {
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.text-highlight {
  color: var(--primary);
  position: relative;
  z-index: 1;
}

/* Creative underline for highlight */
.text-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(37, 99, 235, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.btn--primary {
  background-color: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn--outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn--outline:hover {
  border-color: var(--text-primary);
  background-color: #fff;
}

.hero__note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

/* --- HERO VISUAL (CSS Composition) --- */
.hero__visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background blob */
.hero__circle-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

/* Main Interface Card */
.hero__card {
  background: #fff;
  width: 380px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

.hero__card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.red {
  background: #ef4444;
}
.yellow {
  background: #f59e0b;
}
.green {
  background: #10b981;
}

.hero__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Skeleton UI items */
.chat-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-row.right {
  justify-content: flex-end;
}
.skeleton-avatar {
  width: 32px;
  height: 32px;
  background-color: #f3f4f6;
  border-radius: 50%;
}
.skeleton-text {
  height: 12px;
  background-color: #f3f4f6;
  border-radius: 6px;
}
.short {
  width: 120px;
}
.medium {
  width: 180px;
}
.long {
  width: 100%;
  max-width: 220px;
  background-color: #dbeafe; /* Light blue for user msg */
}

.hero__status {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Floating Elements Animation */
.hero__float-card {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.hero__float-card--1 {
  top: 60px;
  right: 20px;
  animation-delay: 0s;
}

.hero__float-card--2 {
  bottom: 80px;
  left: -20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  animation-delay: 3s;
}

.hero__stat {
  font-weight: 700;
  color: #10b981;
  font-size: 1.1rem;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* --- JS ANIMATION STATES --- */
.hero__anim-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero__anim-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Hero */
@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
    text-align: center;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__note {
    justify-content: center;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__visual {
    height: 400px;
  }

  .hero__float-card--1 {
    right: 0;
  }
  .hero__float-card--2 {
    left: 0;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__actions {
    flex-direction: column;
  }
}

/* --- GENERIC SECTION STYLES --- */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.center-align {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.badge {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 12px;
  border-radius: 4px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* --- TECH GRID --- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.tech-card {
  background-color: var(--bg-surface);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Lift + Border Color + Shadow */
.tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-lg);
}

/* subtle top accent on hover */
.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-card__icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background-color 0.3s ease;
}

.tech-card:hover .tech-card__icon-wrapper {
  background-color: var(--primary);
}

.tech-card__icon {
  color: var(--primary);
  width: 28px;
  height: 28px;
  transition: color 0.3s ease;
}

.tech-card:hover .tech-card__icon {
  color: #fff;
}

.tech-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tech-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tech-card__desc strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Footer Link */
.tech-footer {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 500;
}

.link-arrow {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  font-weight: 600;
}

.link-arrow:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-arrow i {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* Tech Responsive */
@media (max-width: 992px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .section-title {
    font-size: 2rem;
  }
}

/* Background utility */
.bg-white {
  background-color: #ffffff;
}

/* --- SOLUTIONS LAYOUT --- */
.solutions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 120px; /* Big space between rows */
}

.sol-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Modifier to swap columns */
.sol-item--reverse .sol-item__content {
  order: 2;
}
.sol-item--reverse .sol-item__visual {
  order: 1;
}

/* Content Styles */
.sol-item__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.sol-item__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.sol-item__desc strong {
  color: var(--primary);
}

.sol-item__list {
  margin-bottom: 40px;
}

.sol-item__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.sol-item__list li i {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

/* --- VISUALS (CSS ART) --- */
.sol-item__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Base Card for visual */
.visual-card {
  width: 100%;
  max-width: 450px;
  height: 320px;
  background: #f3f4f6;
  border-radius: 20px;
  position: relative;
  box-shadow: var(--shadow-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* --- Visual 1: Graph --- */
.v-header {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
}
.v-line {
  height: 10px;
  background: #e5e7eb;
  border-radius: 5px;
  margin-bottom: 10px;
}
.w-50 {
  width: 50%;
}

.v-graph {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  height: 150px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.v-bar {
  flex: 1;
  background: #d1d5db;
  border-radius: 6px 6px 0 0;
  transition: height 1s ease;
}

.v-bar.active {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.v-badge-float {
  position: absolute;
  top: 40px;
  right: 30px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  animation: float 5s ease-in-out infinite;
}

/* --- Visual 2: Code Editor --- */
.visual-card--dark {
  background: #1f2937; /* Dark Slate */
  justify-content: center;
  align-items: flex-start;
}

.v-code-row {
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-bottom: 8px;
}
.indent {
  margin-left: 20px;
}
.double-indent {
  margin-left: 40px;
}

.c-pink {
  color: #f472b6;
}
.c-blue {
  color: #60a5fa;
}
.c-yellow {
  color: #fcd34d;
}
.c-green {
  color: #34d399;
}
.c-orange {
  color: #fb923c;
}

.v-msg-float {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-primary);
  animation: float 6s ease-in-out infinite 1s; /* Delayed float */
}

.v-avatar {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
}

/* Responsive Solutions */
@media (max-width: 992px) {
  .solutions-wrapper {
    gap: 80px;
  }

  .sol-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Reset order for mobile so text is always first */
  .sol-item--reverse .sol-item__content {
    order: 0;
  }
  .sol-item--reverse .sol-item__visual {
    order: 0;
  }

  .visual-card {
    max-width: 100%;
  }
}

/* --- BLOG SECTION --- */
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Optional: subtle border for clean look */
  /* border: 1px solid var(--border); */
  /* border-radius: 12px; */
  /* overflow: hidden; */
}

.blog-card__img-link {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  padding-top: 60%; /* Aspect Ratio 16:10 roughly */
  background-color: #e5e7eb; /* Fallback color */
}

.blog-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card__img-link:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #fff;
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.blog-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card__meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-card__title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-card__title a:hover {
  color: var(--primary);
}

.blog-card__excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1; /* Pushes the link down */
  line-height: 1.6;
}

/* Responsive Blog */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .header-link-wrapper {
    display: none; /* Hide 'Read All' button on mobile to save space */
  }

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

/* --- CONTACT SECTION STYLES --- */
.bg-light-blue {
  background-color: #f0f5ff; /* Soft blue background for contrast */
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-benefits {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.c-icon {
  color: var(--primary);
  background: #fff;
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.c-benefit h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.c-benefit p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Form Card */
.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  width: 18px;
  height: 18px;
  transition: color 0.3s;
}

.form-input {
  width: 100%;
  padding: 12px 16px 12px 42px; /* padding-left for icon */
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: #fafafa;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input:focus + .input-icon {
  color: var(--primary);
}

/* Custom Checkbox */
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-text a {
  color: var(--primary);
  text-decoration: underline;
}

/* Fake Captcha */
.captcha-box {
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 10px 16px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.captcha-box input {
  display: none;
}

.captcha-check {
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
  position: relative;
  transition: all 0.2s;
}

.captcha-box input:checked ~ .captcha-check {
  border-color: #10b981;
}

.captcha-box input:checked ~ .captcha-check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #10b981;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.captcha-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
}

.captcha-logo {
  width: 24px;
  opacity: 0.6;
  margin-left: 10px;
}

.btn--full {
  width: 100%;
  justify-content: center;
  gap: 10px;
}

/* Success Message */
.success-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.success-message.is-active {
  opacity: 1;
  pointer-events: all;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #dcfce7;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* --- COOKIE POPUP --- */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  border: 1px solid var(--border);
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-popup.is-visible {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* --- PAGE STYLES (Privacy etc) --- */
.pages {
  padding: 120px 0 80px;
}

.pages h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.pages h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: var(--text-primary);
}

.pages p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pages ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text-secondary);
}

.pages li {
  margin-bottom: 8px;
}

/* Responsive Contact */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-benefits {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 24px;
  }

  .c-benefit {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* --- FORM VALIDATION STYLES --- */
.form-input.error {
  border-color: #ef4444 !important; /* Red border */
  background-color: #fef2f2 !important; /* Light red bg */
  animation: shake 0.4s ease-in-out;
}

.input-error-text {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 500;
  display: none; /* Hidden by default */
}

.input-error-text.is-visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Shake Animation for error */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
