/* ============================================================
   DEFAULT PAGE TEMPLATE — banner + .default-css content area
   ============================================================ */
.default-main { background: #fff; color: #1a2240; overflow-x: clip; }

/* --- Short top banner --- */
.default-banner {
  position: relative;
  padding: 40px 0;
  background: #7ACC0D;
  color: #09102e;
  overflow: hidden;
  isolation: isolate;
}
.default-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(9, 16, 46, 0.08) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.default-banner > .container { position: relative; z-index: 2; }
.default-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 130px;
}

.default-banner-copy { flex: 1 1 auto; min-width: 0; }
.default-banner-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(9, 16, 46, 0.75);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.default-banner-crumb a { color: rgba(9, 16, 46, 0.85); text-decoration: none; }
.default-banner-crumb a:hover { color: #09102e; }
.default-banner-crumb .sep { color: rgba(9, 16, 46, 0.4); }
.default-banner h1 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #09102e;
  margin: 0;
  max-width: 640px;
}

/* Big standing rocket on the right — vertical, proud */
.default-banner-rocket {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  animation: drbHover 3.4s ease-in-out infinite;
}
.default-banner-rocket i {
  font-size: 118px;
  line-height: 1;
  color: #09102e;
  filter:
    drop-shadow(-5px 6px 0 rgba(9, 16, 46, 0.22))
    drop-shadow(0 18px 28px rgba(9, 16, 46, 0.38));
  position: relative;
  z-index: 2;
}
.default-banner-rocket .drb-flame {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 46px;
  background:
    radial-gradient(ellipse at 50% 20%, #fff 0%, #fff 18%, #ffeaa7 40%, #ff7a00 75%, rgba(255, 122, 0, 0) 100%);
  border-radius: 50% 50% 40% 40% / 35% 35% 65% 65%;
  filter: blur(0.5px);
  opacity: 0.9;
  z-index: 1;
  animation: drbFlame 0.5s ease-in-out infinite alternate;
  transform-origin: 50% 0%;
}
@keyframes drbHover {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes drbFlame {
  from { transform: translateX(-50%) scaleY(0.9) scaleX(0.95); opacity: 0.85; }
  to   { transform: translateX(-50%) scaleY(1.15) scaleX(1.05); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .default-banner-rocket,
  .default-banner-rocket .drb-flame { animation: none; }
}
@media (max-width: 767px) {
  .default-banner { padding: 32px 0; }
  .default-banner-inner { gap: 20px; min-height: 100px; }
  .default-banner-rocket { width: 90px; height: 90px; }
  .default-banner-rocket i { font-size: 80px; }
  .default-banner-rocket .drb-flame { width: 22px; height: 32px; }
}
@media (max-width: 479px) {
  .default-banner-rocket { width: 72px; height: 72px; }
  .default-banner-rocket i { font-size: 64px; }
}

.default-banner p {
  display: none;
  margin: 0;
}

/* --- Main content section --- */
.default-section {
  padding: 80px 0 90px;
  background: #fff;
}
.default-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 60px;
  /* default align-items: stretch — sidebar column matches left content height
     so the sticky inner has room to move */
}
.default-css {
  max-width: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #2a3353;
  align-self: start;
}

/* --- Sticky sidebar (desktop/laptop only; disabled on mobile below) --- */
.default-sidebar {
  position: relative;
}
.default-sidebar-inner {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Shared sidebar block styles — DARK premium theme */
.sb-block {
  position: relative;
  background:
    radial-gradient(420px 260px at 100% 0%, rgba(122, 204, 13, 0.14), transparent 65%),
    linear-gradient(165deg, #0b1436 0%, #09102e 60%, #070d27 100%);
  border: 1px solid rgba(122, 204, 13, 0.22);
  border-radius: 16px;
  padding: 26px 24px;
  color: #e6ecf7;
  box-shadow: 0 22px 44px rgba(9, 16, 46, 0.22);
  overflow: hidden;
}
.sb-title {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.sb-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0 0 16px;
}

/* CTA block — keep the dark base but add stronger gold/green accent */
.sb-cta {
  position: relative;
  padding: 28px 26px 26px;
  background:
    radial-gradient(420px 260px at 100% 0%, rgba(197, 240, 122, 0.32), transparent 62%),
    linear-gradient(160deg, #09102e 0%, #0a143a 60%, #09102e 100%);
  color: #fff;
  border: 1px solid rgba(122, 204, 13, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(9, 16, 46, 0.3);
}
.sb-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.16);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.sb-cta-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #7ACC0D;
  border-radius: 50%;
  box-shadow: 0 0 8px #7ACC0D;
}
.sb-cta h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 10px;
}
.sb-cta p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px;
}
.sb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e !important;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 10px 22px rgba(122, 204, 13, 0.35);
}
.sb-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(122, 204, 13, 0.5); }
.sb-cta-btn i { font-size: 15px; transition: transform 0.22s ease; }
.sb-cta-btn:hover i { transform: translateX(3px); }

/* Contact form block (dark) */
.sb-form .gform_fields { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 12px; }
.sb-form .gform_footer { margin-top: 4px; }
.sb-field { display: flex; flex-direction: column; }
.sb-field .ginput_container { display: block; }
.sb-field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c5f07a;
  margin-bottom: 6px;
}
.sb-field input,
.sb-field select,
.sb-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.sb-field input::placeholder,
.sb-field textarea::placeholder { color: rgba(255, 255, 255, 0.55); }
.sb-field textarea {
  display: block;
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}
.sb-field input:focus,
.sb-field select:focus,
.sb-field textarea:focus {
  border-color: #7ACC0D;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(122, 204, 13, 0.25);
}
.sb-submit {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e !important;
  font-weight: 800;
  font-size: 13.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  margin-top: 6px;
  box-shadow: 0 10px 22px rgba(122, 204, 13, 0.35);
}
.sb-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(122, 204, 13, 0.5); }

/* Services list (dark) */
.sb-svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sb-svc-list li { margin: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.sb-svc-list li:last-child { border-bottom: 0; }
.sb-svc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 6px;
  color: #e6ecf7 !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
  transition: padding-left 0.22s ease, color 0.22s ease;
}
.sb-svc-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(122, 204, 13, 0.16);
  color: #c5f07a;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.22s ease, color 0.22s ease;
}
.sb-svc-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  transition: color 0.22s ease, transform 0.22s ease;
}
.sb-svc-list a:hover {
  color: #c5f07a !important;
  padding-left: 10px;
}
.sb-svc-list a:hover .sb-svc-ic { background: #7ACC0D; color: #09102e; }
.sb-svc-list a:hover .sb-svc-arrow { color: #7ACC0D; transform: translate(2px, -2px); }

/* Responsive — stack sidebar below on tablet/mobile */
@media (max-width: 991px) {
  .default-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .default-sidebar-inner { position: static; }
}

/* Headings H1–H6 */
.default-css h1,
.default-css h2,
.default-css h3,
.default-css h4,
.default-css h5,
.default-css h6 {
  font-family: 'Fraunces', 'Inter', serif;
  color: #09102e;
  letter-spacing: -0.32px;
  line-height: 1.2;
  font-weight: 700;
}
.default-css > :first-child { margin-top: 0; }
.default-css h1 { margin: 0 0 14px;     font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; }
.default-css h2 { margin: 32px 0 12px;  font-size: clamp(26px, 2.8vw, 34px); }
.default-css h3 { margin: 26px 0 10px;  font-size: clamp(22px, 2.3vw, 28px); }
.default-css h4 { margin: 22px 0 10px;  font-size: 20px; }
.default-css h5 { margin: 18px 0 8px;   font-size: 17px; text-transform: uppercase; letter-spacing: 1.36px; font-weight: 700; color: #3d4a82; font-family: 'Inter', sans-serif; }
.default-css h6 { margin: 16px 0 8px;   font-size: 14px; text-transform: uppercase; letter-spacing: 1.96px; font-weight: 700; color: #568f00; font-family: 'Inter', sans-serif; }

/* Paragraph */
.default-css p {
  margin: 0 0 1.2em;
  color: #4a5175;
}

/* Anchors */
.default-css a {
  color: #568f00;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
}
.default-css a:hover {
  color: #09102e;
  text-decoration-thickness: 2.5px;
}

/* Strong */
.default-css strong {
  font-weight: 700;
  color: #09102e;
}

/* Horizontal rule */
.default-css hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9, 16, 46, 0.18), transparent);
  margin: 2.4em 0;
}

/* Lists (ul + ol) */
.default-css ul,
.default-css ol {
  margin: 0 0 1.4em;
  padding-left: 1.5em;
}
.default-css ul li,
.default-css ol li {
  margin-bottom: 0.55em;
  line-height: 1.65;
  color: #3a4263;
}
.default-css ul li::marker { color: #7ACC0D; font-size: 1.1em; }
.default-css ol li::marker { color: #568f00; font-weight: 700; }

/* Nested lists */
.default-css ul ul,
.default-css ol ol,
.default-css ul ol,
.default-css ol ul {
  margin: 0.45em 0 0.55em;
}

/* Multi-column list variants */
.default-css ul.two-col,
.default-css ol.two-col {
  columns: 2;
  column-gap: 44px;
  padding-left: 1.5em;
}
.default-css ul.three-col,
.default-css ol.three-col {
  columns: 3;
  column-gap: 32px;
  padding-left: 1.5em;
}
.default-css ul.two-col li,
.default-css ol.two-col li,
.default-css ul.three-col li,
.default-css ol.three-col li {
  break-inside: avoid;
  page-break-inside: avoid;
}
@media (max-width: 767px) {
  .default-css ul.two-col,
  .default-css ol.two-col,
  .default-css ul.three-col,
  .default-css ol.three-col { columns: 1; }
}

/* Blockquote */
.default-css blockquote {
  margin: 1.6em 0;
  padding: 18px 24px;
  background: #fbfff2;
  border-left: 4px solid #7ACC0D;
  border-radius: 0 10px 10px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: #3a4263;
  font-size: 17px;
}

/* Inline / block code */
.default-css code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.9em;
  padding: 2px 7px;
  background: #f3f6ec;
  border-radius: 6px;
  color: #568f00;
}

/* Images — WordPress-style alignment classes */
.default-css img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  padding: 8px;
  background: #ffffff;
  border: 2px solid #7ACC0D;
  box-sizing: border-box;
}
.default-css .aligncenter,
.default-css img.aligncenter {
  display: block;
  margin: 1.6em auto;
  clear: both;
}
.default-css .alignleft,
.default-css img.alignleft {
  float: left;
  max-width: 45%;
  margin: 0.35em 1.8em 1em 0;
}
.default-css .alignright,
.default-css img.alignright {
  float: right;
  max-width: 45%;
  margin: 0.35em 0 1em 1.8em;
}
.default-css .alignnone,
.default-css img.alignnone {
  display: block;
  margin: 1.2em 0;
}
/* Auto-clear floats before new block-level sections so layout stays clean */
.default-css h1, .default-css h2, .default-css h3,
.default-css h4, .default-css h5, .default-css h6,
.default-css hr,
.default-css blockquote,
.default-css .dc-embed,
.default-css table { clear: both; }
/* Manual clearfix helper (optional wrapper around image + text) */
.default-css .dc-clear::after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 575px) {
  .default-css .alignleft,
  .default-css .alignright,
  .default-css img.alignleft,
  .default-css img.alignright {
    float: none;
    max-width: 100%;
    margin: 1.2em 0;
  }
}

/* Gallery showcase grid */
.default-css .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 1.8em 0;
  clear: both;
}
.default-css .gallery-grid a,
.default-css .gallery-grid .gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #09102e;
  text-decoration: none !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}
.default-css .gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.default-css .gallery-grid a:hover,
.default-css .gallery-grid .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(9, 16, 46, 0.22);
}
.default-css .gallery-grid a:hover img,
.default-css .gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}
.default-css .gallery-grid .gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 16, 46, 0.78) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  pointer-events: none;
}
.default-css .gallery-grid a:hover .gallery-item-overlay,
.default-css .gallery-grid .gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Gallery variants: bento layout */
.default-css .gallery-grid.gallery-bento {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
}
.default-css .gallery-grid.gallery-bento > :nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.default-css .gallery-grid.gallery-bento > :nth-child(6) { grid-column: span 2; aspect-ratio: auto; }
.default-css .gallery-grid.gallery-bento > * { aspect-ratio: auto; }

@media (max-width: 767px) {
  .default-css .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .default-css .gallery-grid.gallery-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .default-css .gallery-grid.gallery-bento > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .default-css .gallery-grid.gallery-bento > :nth-child(6) { grid-column: span 2; }
}

/* Image caption */
.default-css figure { margin: 1.6em 0; }
.default-css figcaption {
  font-size: 13.5px;
  color: #6b7290;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* Responsive YouTube / video embed */
.default-css .dc-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin: 1.8em 0;
  box-shadow: 0 22px 44px rgba(9, 16, 46, 0.12);
}
.default-css .dc-embed iframe,
.default-css .dc-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tables */
.default-css table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.8em 0;
  font-size: 15px;
  background: #ffffff;
  border: 1px solid rgba(9, 16, 46, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(9, 16, 46, 0.06);
}
.default-css table th,
.default-css table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(9, 16, 46, 0.06);
}
.default-css table tbody tr:last-child td { border-bottom: 0; }
.default-css table th {
  background: linear-gradient(180deg, #09102e 0%, #0d1640 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
.default-css table th:first-child { border-top-left-radius: 16px; }
.default-css table th:last-child { border-top-right-radius: 16px; }
.default-css table th + th { box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08); }
.default-css table tbody tr { transition: background 0.2s ease; }
.default-css table tbody tr:nth-child(even) td { background: #fbfaf5; }
.default-css table tbody tr:hover td { background: rgba(122, 204, 13, 0.08); }
.default-css table tbody td {
  color: #2a3353;
  font-weight: 500;
}
.default-css table tbody td:first-child {
  font-weight: 700;
  color: #09102e;
  font-family: 'Fraunces', serif;
  font-size: 16px;
}
.default-css table tbody td:last-child {
  font-weight: 700;
  color: #568f00;
  font-family: 'Fraunces', serif;
  font-size: 16px;
}
@media (max-width: 575px) {
  .default-css table { font-size: 13.5px; }
  .default-css table th,
  .default-css table td { padding: 12px 14px; }
  .default-css table th { font-size: 11px; letter-spacing: 0.12em; }
  .default-css table tbody td:first-child,
  .default-css table tbody td:last-child { font-size: 14.5px; }
}

/* --- FAQ section (dark premium theme) --- */
.default-faq {
  position: relative;
  padding: 90px 0 110px;
  background:
    radial-gradient(700px 460px at 15% 20%, rgba(122, 204, 13, 0.12), transparent 60%),
    radial-gradient(600px 420px at 90% 85%, rgba(80, 120, 255, 0.12), transparent 60%),
    linear-gradient(160deg, #09102e 0%, #0a143a 60%, #09102e 100%);
  color: #e6ecf7;
  overflow: hidden;
  isolation: isolate;
}
.default-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 15%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.default-faq > .container { position: relative; z-index: 2; }

.default-faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.default-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.18);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.default-faq-head h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
}
.default-faq-head p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
}
.default-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.default-faq-item {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(122, 204, 13, 0.2);
  border-radius: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.default-faq-item:hover {
  border-color: rgba(122, 204, 13, 0.35);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
}
.default-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.default-faq-item summary::-webkit-details-marker { display: none; }
.default-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(122, 204, 13, 0.18);
  color: #c5f07a;
  font-size: 12px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.default-faq-item[open] {
  border-color: rgba(122, 204, 13, 0.55);
  background: linear-gradient(165deg, rgba(122, 204, 13, 0.08) 0%, rgba(122, 204, 13, 0.03) 100%);
  box-shadow: 0 16px 32px rgba(122, 204, 13, 0.15), 0 0 0 1px rgba(122, 204, 13, 0.25) inset;
}
.default-faq-item[open] .default-faq-icon { background: #7ACC0D; color: #09102e; transform: rotate(45deg); }
.default-faq-item > div {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   AI DEVELOPMENT — HERO (lime card, robot head outside, logo strip)
   ============================================================ */
.aic-hero-wrap {
  background: linear-gradient(180deg, #050a1f 0%, #09102e 100%);
  padding: 80px 0 70px;
}
.aic-hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 0% 50%, #88c63b 0%, #b3df3f 55%, #d8ec5e 100%);
  border-radius: 28px;
  padding: 64px 72px 0;
  isolation: isolate;
  box-shadow: 0 30px 80px rgba(9, 16, 46, 0.4);
}
.aic-hero-grid {
  display: grid;
  /* Content gets ~60% of the card so the display heading doesn't wrap into
     6-7 lines. Robot column shrinks to ~40% — it's just a visual placeholder
     since the robot image is absolutely positioned and floats above it. */
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 480px;
  padding-bottom: 64px;
}
.aic-hero-content { position: relative; z-index: 2; }

.aic-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: rgba(9, 16, 46, 0.22);
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 36px;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-shadow: 0 1px 2px rgba(9, 16, 46, 0.35);
}
.aic-hero-eyebrow:hover { background: #ffffff; color: #09102e; text-shadow: none; }

.aic-hero-title {
    font-family: 'Fraunces', 'Inter', serif;
    font-weight: 700;
    font-size: clamp(25px, 4.4vw, 60px);
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0 0 26px;
    max-width: 520px;
}
/* The hero card BG is lime green, so the brand `.grad-dark` / `.grad-light`
   gradients (also greens) blend into the background and become illegible.
   Repaint any highlight span on this title to solid deep navy — strong
   contrast against the lime card. */
.aic-hero-title .grad-dark,
.aic-hero-title .grad-light,
.aic-hero-title em,
.aic-hero-title span {
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  -webkit-text-fill-color: #09102e;
          color: #09102e;
  font-style: normal;
}
.aic-hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 480px;
}
.aic-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.aic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}
.aic-btn-white {
  background: #09102e;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(9, 16, 46, 0.28);
  border-color: #09102e;
}
.aic-btn-white:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #09102e !important;
  border-color: #ffffff;
}
.aic-btn-outline {
  background: transparent;
  color: #09102e !important;
  border-color: #09102e;
}
.aic-btn-outline:hover {
  background: #09102e;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Robot — absolutely positioned so head extends above card */
.aic-hero-robot {
  position: absolute;
  right: 60px;
  top: -90px;
  bottom: 0;
  width: 44%;
  max-width: 600px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.aic-hero-robot img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
}

/* Bottom logo strip — darker lime band inside card */
.aic-hero-logos {
  position: relative;
  margin: 0 -72px;
  padding: 22px 72px;
  background: linear-gradient(90deg, rgba(106, 168, 36, 0.95) 0%, rgba(140, 196, 50, 0.95) 100%);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  z-index: 3;
}
.aic-hero-logos img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%) contrast(1.6) brightness(0.55);
  opacity: 0.95;
  transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
}
.aic-hero-logos img:hover {
  opacity: 1;
  filter: grayscale(100%) contrast(1.8) brightness(0.3);
  transform: translateY(-2px);
}
.aic-rating-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: #0a1f0a;
  font-family: 'Inter', sans-serif;
  transition: transform 0.22s ease, color 0.22s ease;
}
.aic-rating-block:hover { transform: translateY(-2px); color: #000; }
.aic-rating-block .name {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
}
.aic-rating-block .stars {
  margin-top: 5px;
  letter-spacing: 3px;
  font-size: 12px;
  color: #1a3015;
}

@media (max-width: 991px) {
  .aic-hero-wrap { padding: 60px 0 50px; }
 section.aic-hero-wrap .aic-hero {
        padding: 48px 32px 40px !important;
        border-radius: 22px;
    }
  .aic-hero-grid { grid-template-columns: 1fr; min-height: 0; padding-bottom: 0; }
  .aic-hero-robot {
    position: relative; right: auto; top: auto; bottom: auto;
    width: 80%; max-width: 360px; margin: 30px auto -40px;
  }
  .aic-hero-logos {
    margin: 0 -32px;
    padding: 22px 32px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .aic-hero-buttons .aic-btn { padding: 12px 22px; font-size: 14px; }
  .aic-hero-logos img { height: 28px; }
}

/* ============================================================
   SECTION 2 — What Is It?
   ============================================================ */
.aic-what {
  background: #ffffff;
  padding: 90px 0 100px;
  color: #2a3353;
}
.aic-what .container { max-width: 1280px; }
.aic-what-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.aic-what-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.12);
  border: 1px solid rgba(122, 204, 13, 0.35);
  color: #568f00;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.aic-what-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #7ACC0D; box-shadow: 0 0 8px #7ACC0D;
}
.aic-what h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #09102e;
  margin: 0 0 18px;
}
.aic-what h2 em { font-style: italic; font-weight: 600; }
.aic-what p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0 0 14px;
  max-width: 560px;
}
.aic-what-platforms {
  margin-top: 26px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.aic-platform {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #f5f7f2;
  border: 1.5px solid rgba(9, 16, 46, 0.08);
  border-radius: 999px;
  font-weight: 700; font-size: 14px;
  color: #09102e;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.aic-platform i { font-size: 18px; }
.aic-platform.is-web      i { color: #1a73e8; }
.aic-platform.is-whatsapp i { color: #25d366; }
.aic-platform.is-msgr     i { color: #0084ff; }
.aic-platform:hover {
  transform: translateY(-2px);
  background: #09102e;
  color: #ffffff;
  border-color: #09102e;
}
.aic-platform:hover i { color: #c5f07a; }

.aic-what-visual {
  position: relative;
  border-radius: 22px;
  background:
    radial-gradient(420px 260px at 70% 20%, rgba(122, 204, 13, 0.18), transparent 60%),
    linear-gradient(160deg, #e6f4c4 0%, #d4ec9c 60%, #c5e87a 100%);
  padding: 40px;
  min-height: 360px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.aic-chat-mock {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(9, 16, 46, 0.2);
  padding: 18px 18px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.aic-chat-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(9,16,46,0.06);
}
.aic-chat-head .dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ACC0D, #4a7d08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.aic-chat-head .name { font-weight: 700; color: #09102e; font-size: 14px; }
.aic-chat-head .status { font-size: 11.5px; color: #7ACC0D; display: flex; align-items: center; gap: 6px; }
.aic-chat-head .status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #7ACC0D; box-shadow: 0 0 6px #7ACC0D;
}
.aic-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
}
.aic-bubble.bot {
  background: #f0f5e6;
  color: #09102e;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.aic-bubble.user {
  background: #09102e;
  color: #ffffff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.aic-typing {
  display: inline-flex; gap: 4px; align-self: flex-start;
  padding: 12px 14px; border-radius: 14px;
  background: #f0f5e6;
}
.aic-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #7ACC0D;
  animation: aicDot 1.2s ease-in-out infinite;
}
.aic-typing span:nth-child(2) { animation-delay: .2s; }
.aic-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes aicDot {
  0%, 80%, 100% { transform: translateY(0); opacity: .4; }
  40%           { transform: translateY(-4px); opacity: 1; }
}

/* ============================================================
   SECTION 3 — Key Features
   ============================================================ */
.aic-feats {
  background:
    radial-gradient(720px 420px at 90% 0%, rgba(122, 204, 13, 0.10), transparent 60%),
    linear-gradient(165deg, #0b1436 0%, #09102e 60%, #050a1f 100%);
  padding: 90px 0 100px;
  color: #e6ecf7;
}
.aic-feats .container { max-width: 1280px; }
.aic-feats-head {
  text-align: center;
  max-width: 720px;    transform: none;
  margin: 0 auto 56px;opacity: 1;
}
.aic-feats-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.16);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.aic-feats-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #7ACC0D; box-shadow: 0 0 8px #7ACC0D;
}
.aic-feats h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px;
}
.aic-feats h2 em { font-style: italic; font-weight: 600; }
.aic-feats-head p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.aic-feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.aic-feat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(122, 204, 13, 0.22);
  border-radius: 18px;
  padding: 28px 22px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.aic-feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 204, 13, 0.6);
  background: rgba(122, 204, 13, 0.08);
}
.aic-feat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(122, 204, 13, 0.16);
  color: #c5f07a;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.aic-feat-card:hover .aic-feat-icon {
  background: #7ACC0D;
  color: #09102e;
  transform: scale(1.05);
}
.aic-feat-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 8px;
}
.aic-feat-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

@media (max-width: 1100px) {
  .aic-feats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .aic-what-grid { grid-template-columns: 1fr; gap: 40px; }
  .aic-feats-grid { grid-template-columns: repeat(2, 1fr); }







}
@media (max-width: 575px) {
  .aic-what, .aic-feats { padding: 60px 0 70px; }
  .aic-feats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 4 — Use Cases by Industry
   ============================================================ */
.aic-use {
  background: #f5f7f2;
  padding: 90px 0 100px;
}
.aic-use .container { max-width: 1280px; }
.aic-use-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.aic-use-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.12);
  border: 1px solid rgba(122, 204, 13, 0.35);
  color: #568f00;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.aic-use-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #7ACC0D; box-shadow: 0 0 8px #7ACC0D;
}
.aic-use h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #09102e;
  margin: 0 0 12px;
}
.aic-use h2 em { font-style: italic; font-weight: 600; }
.aic-use-head p {
  font-size: 16px;
  line-height: 1.6;
  color: #5b6b75;
  margin: 0;
}

.aic-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
/* When the grid contains exactly 3 cards (no 4th), drop to a 3-column layout
   so each card fills the row instead of leaving a phantom 4th column.
   Scoped to .aic-use-grid only — no risk of bleeding into other grids. */
.aic-use-grid:has(> .aic-use-card:nth-child(3)):not(:has(> .aic-use-card:nth-child(4))) {
  grid-template-columns: repeat(3, 1fr);
}
/* And exactly 2 cards → 2 columns. */
.aic-use-grid:has(> .aic-use-card:nth-child(2)):not(:has(> .aic-use-card:nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.aic-use-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 28px 30px;
  border: 1px solid rgba(9, 16, 46, 0.06);
  box-shadow: 0 14px 30px rgba(9, 16, 46, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.32s cubic-bezier(.22,.9,.28,1), box-shadow 0.32s ease, border-color 0.32s ease;
  overflow: hidden;
  isolation: isolate;
}
.aic-use-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--use-accent, rgba(122, 204, 13, 0.18));
  filter: blur(8px);
  opacity: 0.5;
  transition: opacity 0.32s ease, transform 0.32s ease;
  z-index: -1;
}
.aic-use-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(9, 16, 46, 0.14);
  border-color: rgba(122, 204, 13, 0.4);
}
.aic-use-card:hover::before { opacity: 0.85; transform: scale(1.15); }

.aic-use-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--use-accent, rgba(122, 204, 13, 0.16));
  color: var(--use-color, #568f00);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
}
.aic-use-card:hover .aic-use-icon {
  background: var(--use-color, #7ACC0D);
  color: #ffffff;
  transform: scale(1.05) rotate(-3deg);
}

.aic-use-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #09102e;
  margin: 0;
  letter-spacing: -0.01em;
}
.aic-use-card .arrow {
  font-family: 'Caveat', 'Inter', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--use-color, #7ACC0D);
  margin-bottom: -8px;
}
.aic-use-card .uses {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.aic-use-card .uses li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #4a5568;
}
.aic-use-card .uses li i {
  color: var(--use-color, #7ACC0D);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Per-industry accent colors */
.aic-use-card.is-ecom    { --use-accent: rgba(122, 204, 13, 0.18); --use-color: #568f00; }
.aic-use-card.is-travel  { --use-accent: rgba(26, 115, 232, 0.16); --use-color: #1a73e8; }
.aic-use-card.is-realty  { --use-accent: rgba(255, 122, 24, 0.16); --use-color: #d65a00; }
.aic-use-card.is-health  { --use-accent: rgba(232, 56, 92, 0.14);  --use-color: #c62a52; }

@media (max-width: 1100px) { .aic-use-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .aic-use-grid { grid-template-columns: 1fr; } .aic-use { padding: 60px 0 70px; } }

/* ============================================================
   SECTION 5 — How It Works (4-step process)
   ============================================================ */
.aic-how {
  position: relative;
  background:
    radial-gradient(720px 420px at 10% 100%, rgba(122, 204, 13, 0.10), transparent 60%),
    linear-gradient(165deg, #0b1436 0%, #09102e 60%, #050a1f 100%);
  padding: 90px 0 110px;
  color: #e6ecf7;
  overflow: hidden;
  isolation: isolate;
}
.aic-how::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none; z-index: 0;
}
.aic-how > .container { position: relative; z-index: 1; max-width: 1280px; }
.aic-how-head {
  text-align: center;
  max-width: 760px;transform: none;
  margin: 0 auto 60px;opacity: 1;
}
.aic-how-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.16);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.aic-how-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #7ACC0D; box-shadow: 0 0 8px #7ACC0D;
}
.aic-how h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px;
}
.aic-how h2 em { font-style: italic; font-weight: 600; }
.aic-how-head p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.aic-how-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
/* Connecting dashed line behind step circles */
.aic-how-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(122, 204, 13, 0.55) 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.aic-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.aic-step-num {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(160deg, #14205a 0%, #0d1645 50%, #0a1130 100%);
  border: 2px solid rgba(122, 204, 13, 0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 28px;
  color: #c5f07a;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.aic-step:hover .aic-step-num {
  transform: scale(1.08);
  border-color: #7ACC0D;
  background: linear-gradient(160deg, #1a2050 0%, #141a45 100%);
}
.aic-step-num::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(122, 204, 13, 0.25);
  animation: aicSpin 22s linear infinite;
}
@keyframes aicSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .aic-step-num::after { animation: none; } }

.aic-step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(122, 204, 13, 0.16);
  color: #c5f07a;
  font-size: 22px;
  margin-bottom: 14px;
}
.aic-step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.aic-step p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .aic-how-track { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .aic-how-track::before { display: none; }

.aic-use-grid:has(> .aic-use-card:nth-child(3)):not(:has(> .aic-use-card:nth-child(4))) {
    grid-template-columns: repeat(2, 1fr);
}
.aic-use-grid > :last-child:nth-child(odd){
        grid-column: 1 / 3;
        justify-self: center;
        width: 50%;
}

}
@media (max-width: 575px) {
  .aic-how { padding: 60px 0 70px; }
  .aic-how-track { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   TESTIMONIAL + CONTACT — split section
   ============================================================ */
.gw-tc {
  background:
    radial-gradient(720px 420px at 5% 0%, rgba(122, 204, 13, 0.10), transparent 60%),
    linear-gradient(165deg, #0b1436 0%, #09102e 60%, #050a1f 100%);
  padding: 90px 0 100px;
  color: #e6ecf7;
}
.gw-tc .container { max-width: 1320px; }
.gw-tc-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.gw-tc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.16);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.gw-tc-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #7ACC0D; box-shadow: 0 0 8px #7ACC0D;
}
.gw-tc h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.0vw, 35px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 22px;
}
.gw-tc h2 em { font-style: italic; font-weight: 600; }

/* TESTIMONIAL SLIDER */
.gw-test {
  background:
    radial-gradient(420px 260px at 0% 0%, rgba(122, 204, 13, 0.18), transparent 60%),
    linear-gradient(160deg, #14205a 0%, #0d1645 50%, #0a1130 100%);
  border: 1px solid rgba(122, 204, 13, 0.22);
  border-radius: 24px;
  padding: 38px 38px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gw-test-marker {
  font-family: 'Fraunces', serif;
  font-size: 65px;
  line-height: 0.6;
  color: rgba(122, 204, 13, 0.25);
  margin-bottom: 6px;
  user-select: none;
}
.gw-test-track {
  position: relative;
  flex: 1 0 auto;
  min-height: 230px;
}
.gw-test-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gw-test-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.gw-test-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 22px;
}
.gw-test-stars {
  color: #ffc83d;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.gw-test-person { display: flex; align-items: center; gap: 14px; }
.gw-test-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #1a2050 center/cover no-repeat;
  border: 2px solid rgba(122, 204, 13, 0.5);
  flex-shrink: 0;
}
.gw-test-name { font-weight: 700; color: #ffffff; font-size: 15px; margin: 0 0 2px; }
.gw-test-role { font-size: 13px; color: rgba(255, 255, 255, 0.65); }
.gw-test-controls {
  margin-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; position: relative; z-index: 2;
}
.gw-test-dots { display: flex; gap: 8px; }
.gw-test-dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none; padding: 0;
  cursor: pointer;
  transition: background 0.22s ease, width 0.22s ease;
}
.gw-test-dot.is-active { background: #7ACC0D; width: 40px; }
.gw-test-arrows { display: flex; gap: 10px; }
.gw-test-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(122, 204, 13, 0.5);
  color: #c5f07a;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.gw-test-arrow:hover {
  background: #7ACC0D; color: #09102e; transform: translateY(-2px);
}

/* CONTACT FORM */
.gw-contact {
  background: #ffffff;
  border-radius: 24px;
  padding: 38px 36px 32px;
  color: #2a3353;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}
.gw-contact .gw-tc-eyebrow {
  background: rgba(122, 204, 13, 0.12);
  border-color: rgba(122, 204, 13, 0.35);
  color: #568f00;
}
.gw-contact h2 { color: #09102e; }
.gw-contact-sub { color: #5b6b75; font-size: 14.5px; margin: -10px 0 22px; }

.gw-contact .gform_wrapper { margin: 0; }
.gw-contact .gform_fields {
  list-style: none; padding: 0; margin: 0 0 12px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.gw-contact .gfield { display: flex; flex-direction: column; }
.gw-contact .gfield--full { grid-column: 1 / -1; }
/* Field + button styling moved to forms-bridge.css so all sub-page form
   classes (gw / lh / wd / ls / aic) render uniformly. The legacy block
   here was forcing `transition: background 0.2s` which animated the select
   chevron's background-image/position on hover — chevron jump from left to
   right. Stripped; forms-bridge.css now owns these rules. */
.gw-contact-trust { font-size: 12.5px; color: #5b6b75; }
.gw-contact-trust i { color: #7ACC0D; }
@media (max-width: 1024px) { 
i.bi.bi-headphones {
    margin: 0 !important;
}
}
@media (max-width: 991px) { .gw-tc-grid { grid-template-columns: 1fr; gap: 24px; } 
.gw-test-track {
    min-height: 345px;
}
}
@media (max-width: 767px) {
    .gw-test-track {
        min-height: 415px;
    }
.aic-use-grid:has(> .aic-use-card:nth-child(3)):not(:has(> .aic-use-card:nth-child(4))) {
        grid-template-columns: repeat(1, 1fr);
    }
    .aic-use-grid > :last-child:nth-child(odd) {
        width: 100%;
        grid-column: 1;
        justify-content: center;
    }



    }
@media (max-width: 575px) {
  .gw-tc { padding: 60px 0 70px; }
  .gw-test, .gw-contact { padding: 28px 24px; border-radius: 20px; }
  .gw-contact .gform_fields { grid-template-columns: 1fr; }
    .gw-test-track {
        min-height: 515px;
    }
.aic-what-visual { padding: 20px;
}
.aic-step p {
    max-width: 350px;
}


}
@media (max-width: 480px) {
    .gw-test-track {
        min-height: 535px;
    }



}

@media (max-width: 425px) {
    .gw-test-track {
        min-height: 625px;
    }
}




/* ============================================================
   FAQ — accordion before the form
   ============================================================ */
.aic-faq {
  background: #f5f7f2;
  padding: 90px 0 100px;
}
.aic-faq .container { max-width: 1080px; }
.aic-faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.aic-faq-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.12);
  border: 1px solid rgba(122, 204, 13, 0.35);
  color: #568f00;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.aic-faq-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #7ACC0D; box-shadow: 0 0 8px #7ACC0D;
}
.aic-faq h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #09102e;
  margin: 0 0 12px;
}
.aic-faq h2 em { font-style: italic; font-weight: 600; }
.aic-faq-head p {
  font-size: 16px;
  line-height: 1.6;
  color: #5b6b75;
  margin: 0;
}

.aic-faq-list {
  display: flex; flex-direction: column;
  gap: 12px;
}
.aic-faq-item {
  background: #ffffff;
  border: 1px solid rgba(9, 16, 46, 0.08);
  border-radius: 14px;
  padding: 0;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
  overflow: hidden;
}
.aic-faq-item[open] {
  border-color: rgba(122, 204, 13, 0.5);
  box-shadow: 0 12px 28px rgba(9, 16, 46, 0.08);
}
.aic-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  color: #09102e;
  transition: color 0.22s ease;
}
.aic-faq-item summary::-webkit-details-marker { display: none; }
.aic-faq-item summary:hover { color: #568f00; }
.aic-faq-item summary .q-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #7ACC0D;
  background: rgba(122, 204, 13, 0.12);
  border: 1px solid rgba(122, 204, 13, 0.3);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.aic-faq-item summary .q-text { flex: 1; }
.aic-faq-item summary .q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(9, 16, 46, 0.06);
  color: #09102e;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.aic-faq-item[open] summary .q-icon {
  background: #7ACC0D;
  color: #09102e;
  transform: rotate(45deg);
}
.aic-faq-item .a {
  padding: 0 24px 22px 74px;
  font-size: 15px;
  line-height: 1.65;
  color: #4a5568;
  margin: 0;
}

@media (max-width: 575px) {
  .aic-faq { padding: 60px 0 70px; }
  .aic-faq-item summary { padding: 16px 18px !important; font-size: 15.5px; gap: 12px; }
  .aic-faq-item summary .q-num { width: 30px; height: 30px; font-size: 12px; }
}
/* Answer body padding.
   IMPORTANT: the template renders `<p class="a"><p>...</p></p>` — a nested
   <p> inside another <p>, which is INVALID HTML. Browsers auto-close the
   outer <p class="a"> when they hit the inner <p>, so the actual text
   ends up in a SIBLING <p> with no class. We pad EVERY <p> inside the
   .aic-faq-item to cover both the legitimate .a paragraph and the
   auto-split sibling. */
.aic-faq-item > p,
.aic-faq-item .a,
.aic-faq-item p.a {
  padding-left: 24px !important;
  padding-right: 24px !important;
  padding-top: 0 !important;
  padding-bottom: 22px !important;
  margin: 0 !important;
  font-size: 15px;
  line-height: 1.65;
  color: #4a5568;
}
/* Empty auto-split wrapper from invalid markup — hide so it doesn't
   create a gap between summary and the real content paragraph. */
.aic-faq-item > p.a:empty,
.aic-faq-item > p.a:not(:has(*)):not(:has(:not(:empty))) {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .aic-faq-item > p,
  .aic-faq-item .a,
  .aic-faq-item p.a {
    padding-left: 22px !important;
    padding-right: 22px !important;
    padding-bottom: 20px !important;
    font-size: 14.5px;
    line-height: 1.6;
  }
.aic-what p {
    font-size: 16px;
    line-height: 1.6;
}



}
@media (max-width: 575px) {
  .aic-faq-item > p,
  .aic-faq-item .a,
  .aic-faq-item p.a {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
  }
    section.aic-hero-wrap .aic-hero {
        padding: 40px 22px 40px !important;
    }


}

/* Standalone testimonial section (centered) */
.gw-test-only { padding: 90px 0 100px; }
.gw-test-only .container { max-width: 920px; }
@media (max-width: 575px) { .gw-test-only { padding: 60px 0 70px; } }

/* Standalone contact section */
.gw-contact-only { padding: 90px 0 110px; }
.gw-contact-only .container { max-width: 880px; }
@media (max-width: 575px) { .gw-contact-only { padding: 60px 0 70px; } }
