/* ==============================================
   AMAZE CODERS — WordPress Theme Main CSS
   Version: 1.0.0
============================================== */

/* ---- Scroll Reveal Animation ---- */
.ac-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.ac-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.ac-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: acFadeUp .7s ease forwards;
}
.ac-fade-up--delay { animation-delay: .5s; }
@keyframes acFadeUp {
  to { opacity: 1; transform: none; }
}

/* ---- Buttons ---- */
.ac-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 48px;
  padding: 0 1.75rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.ac-btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30,144,255,.25);
}
.ac-btn--primary:hover { background: #1565c0; }
.ac-btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.ac-btn--ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
}
.ac-btn--sm   { height: 36px; padding: 0 1.25rem; font-size: .8125rem; }
.ac-btn--block { width: 100%; justify-content: center; }
.ac-btn__icon { flex-shrink: 0; }

/* ---- Typography helpers ---- */
.ac-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
.ac-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}
.ac-section-title--light { color: #fff; }
.ac-section-desc {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 600px;
}
.ac-section-desc--muted { color: rgba(255,255,255,.5); }
.ac-gradient-text {
  background: linear-gradient(90deg, var(--primary) 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ac-muted-text { color: rgba(255,255,255,.4); }
.ac-br-md { display: none; }
@media (min-width: 768px) { .ac-br-md { display: block; } }

.ac-section-header { margin-bottom: 3.5rem; }
.ac-section-header--center { text-align: center; }
.ac-section-header--center .ac-section-desc { margin: 0 auto; }
.ac-section-header--dark .ac-eyebrow {}

/* ---- Decorative helpers ---- */
.ac-deco { position: absolute; pointer-events: none; z-index: 0; }

/* Services section — white bg blobs */
.ac-deco--blob-tl {
  top: -4rem; right: -4rem;
  width: 26rem; height: 26rem;
  border-radius: 50%;
  background: rgba(147,197,253,.45);
  filter: blur(55px);
}
.ac-deco--blob-br {
  bottom: -4rem; left: -4rem;
  width: 22rem; height: 22rem;
  border-radius: 50%;
  background: rgba(125,211,252,.45);
  filter: blur(55px);
}
/* Arc rings — top-right corner */
.ac-deco--arcs-tr {
  top: 0; right: 0;
  opacity: .14;
  line-height: 0;
}
/* Dot grid */
.ac-deco--dots-tl { top: 2rem; left: 2rem; opacity: .35; }

/* Dark-section glow blobs */
.ac-deco--glow-left {
  top: 50%; left: 0;
  width: 37rem; height: 37rem;
  border-radius: 50%;
  background: rgba(59,130,246,.07);
  filter: blur(100px);
  transform: translate(-50%,-50%);
}
.ac-deco--glow-top {
  top: 0; left: 50%;
  width: 50rem; height: 25rem;
  border-radius: 50%;
  background: rgba(59,130,246,.06);
  filter: blur(120px);
  transform: translate(-50%,0);
}

/* Process section */
.ac-deco--wave-top { top: 0; left: 0; width: 100%; opacity: 1; }
.ac-deco--circles-right {
  right: 4rem; top: 50%;
  transform: translateY(-50%);
  opacity: .18;
}

/* Contact section — white bg blobs */
.ac-deco--blob-contact-tr {
  top: -6rem; right: -2rem;
  width: 28rem; height: 28rem;
  border-radius: 50%;
  background: rgba(147,197,253,.4);
  filter: blur(55px);
}
.ac-deco--blob-contact-bl {
  bottom: -6rem; left: -2rem;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: rgba(125,211,252,.4);
  filter: blur(55px);
}
.ac-deco--dots-contact-tl { top: 2.5rem; left: 2.5rem; opacity: .3; }
.ac-deco--glow-contact {
  top: -4rem; right: -4rem;
  width: 16rem; height: 16rem;
  border-radius: 50%;
  background: rgba(59,130,246,.12);
  filter: blur(64px);
}

/* ==============================================
   NAVBAR
============================================== */
.ac-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background .3s, border-color .3s, padding .3s, box-shadow .3s;
  padding: 1.25rem 0;
}
.ac-navbar.is-scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  padding: .75rem 0;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.ac-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ac-navbar__logo { height: 40px; width: auto; }
.ac-navbar__brand { display: flex; align-items: center; }

.ac-navbar__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .ac-navbar__nav { display: flex; } }

.ac-navbar__link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.ac-navbar__link:hover { color: var(--primary); }
.ac-navbar.is-scrolled .ac-navbar__link { color: var(--gray-600, #4b5563); }
.ac-navbar.is-scrolled .ac-navbar__link:hover { color: var(--primary); }

/* hamburger */
.ac-navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
@media (min-width: 768px) { .ac-navbar__hamburger { display: none; } }
.ac-navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background .3s;
}
.ac-navbar.is-scrolled .ac-navbar__hamburger span { background: var(--gray-700); }

/* mobile menu — hidden by default, toggled via .is-open class */
.ac-mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem;
  flex-direction: column;
  gap: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.ac-mobile-menu.is-open {
  display: flex;
}
.ac-mobile-menu__link {
  display: block;
  padding: .625rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: color .2s;
}
.ac-mobile-menu__link:last-of-type { border-bottom: none; }
.ac-mobile-menu__link:hover { color: var(--primary); }
.ac-mobile-menu__cta { margin-top: .75rem; width: 100%; justify-content: center; }

/* ==============================================
   HERO
============================================== */
.ac-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 7rem 0 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.ac-hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(128px);
}
.ac-hero__blob--1 {
  top: 25%; left: 25%;
  width: 24rem; height: 24rem;
  background: rgba(30,144,255,.2);
}
.ac-hero__blob--2 {
  bottom: 25%; right: 25%;
  width: 31rem; height: 31rem;
  background: rgba(37,99,235,.1);
}
.ac-hero__grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 4rem 4rem;
}
.ac-hero__inner { position: relative; z-index: 1; }
.ac-hero__content { text-align: center; max-width: 56rem; margin: 0 auto; }

.ac-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .875rem;
  color: var(--primary);
  margin-bottom: 2rem;
}
.ac-badge__dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%  { opacity: .4; }
}

.ac-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.ac-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.ac-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 480px) { .ac-hero__actions { flex-direction: row; justify-content: center; } }

.ac-hero__cards {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) { .ac-hero__cards { grid-template-columns: repeat(4, 1fr); } }

.ac-hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.ac-hero__card:hover { background: rgba(255,255,255,.08); }
.ac-hero__card-icon {
  color: var(--primary);
  margin-bottom: .75rem;
}
.ac-hero__card span {
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-align: center;
  line-height: 1.3;
}

/* ==============================================
   TECH CAROUSEL
============================================== */
.ac-carousel {
  background: #0a1a3a;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
}
.ac-carousel__label {
  text-align: center;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.75rem;
}
.ac-carousel__track-wrap { position: relative; overflow: hidden; }
.ac-carousel__fade {
  position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 2;
  pointer-events: none;
}
.ac-carousel__fade--left  { left:  0; background: linear-gradient(to right, #0a1a3a, transparent); }
.ac-carousel__fade--right { right: 0; background: linear-gradient(to left,  #0a1a3a, transparent); }
.ac-carousel__track {
  display: flex;
  animation: acMarquee 28s linear infinite;
  width: max-content;
}
@keyframes acMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.ac-carousel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  margin: 0 2.5rem;
  flex-shrink: 0;
}
.ac-carousel__item span {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  transition: color .3s;
}
.ac-carousel__item:hover span { color: rgba(255,255,255,.6); }
.ac-carousel__icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}
.ac-carousel__item:hover .ac-carousel__icon-wrap {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.ac-carousel__icon-wrap img { width: 28px; height: 28px; object-fit: contain; }

/* ==============================================
   SERVICES
============================================== */
.ac-services {
  position: relative;
  background: #fff;
  padding: 5rem 0;
  overflow: hidden;
}
.ac-services > .container,
.ac-contact > .container,
.ac-process > .container {
  position: relative;
  z-index: 1;
}
.ac-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .ac-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .ac-services__grid { grid-template-columns: repeat(4, 1fr); } }

.ac-service-card {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: border-color .3s, box-shadow .3s, transform .2s;
  position: relative;
  overflow: hidden;
}
.ac-service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(219,234,254,.8), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.ac-service-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 8px 32px rgba(59,130,246,.08);
  transform: translateY(-4px);
}
.ac-service-card:hover::before { opacity: 1; }

.ac-service-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  position: relative; z-index: 1;
  transition: background .3s;
}
.ac-service-card:hover .ac-service-card__icon { background: #DBEAFE; }
.ac-service-card__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
  position: relative; z-index: 1;
  transition: color .2s;
}
.ac-service-card:hover .ac-service-card__title { color: var(--primary); }
.ac-service-card__desc {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
  position: relative; z-index: 1;
}

/* ==============================================
   ABOUT
============================================== */
.ac-about {
  position: relative;
  background: var(--navy);
  padding: 5rem 0;
  overflow: hidden;
}
.ac-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .ac-about__grid { grid-template-columns: 1fr 1fr; } }

.ac-about .ac-section-title { color: #fff; }
.ac-about .ac-eyebrow {}
.ac-about__body {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ac-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 480px) { .ac-benefits { grid-template-columns: 1fr; } }

.ac-benefit {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.ac-benefit__icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.ac-benefit span {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}

.ac-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) { .ac-stats { grid-template-columns: repeat(4, 1fr); } }

.ac-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}
.ac-stat__value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: .25rem;
}
.ac-stat__label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  line-height: 1.3;
}

/* Code window */
.ac-code-window {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  padding: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.ac-code-window__inner {
  background: var(--navy-code);
  border-radius: calc(var(--radius-2xl) - 4px);
  padding: 2rem;
  min-height: 26rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ac-code-window__dots {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.ac-dot {
  width: .75rem; height: .75rem;
  border-radius: 50%;
}
.ac-dot--red    { background: rgba(248,113,113,.7); }
.ac-dot--yellow { background: rgba(251,191,36,.7); }
.ac-dot--green  { background: rgba(74,222,128,.7); }
.ac-code-window__url {
  margin-left: .5rem;
  font-size: .75rem;
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,.3);
}
.ac-code-window__comment {
  font-family: 'Courier New', monospace;
  font-size: .8125rem;
  color: rgba(96,165,250,.6);
  margin-bottom: .5rem;
}
.ac-code-line {
  font-family: 'Courier New', monospace;
  font-size: .875rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  line-height: 2;
}
.ac-code-line--indent { padding-left: 1.5rem; }
.ac-t--purple { color: #C084FC; }
.ac-t--blue   { color: #93C5FD; }
.ac-t--green  { color: #4ADE80; }
.ac-t--yellow { color: #FDE047; }
.ac-t--white  { color: rgba(255,255,255,.85); }
.ac-t--muted  { color: rgba(255,255,255,.4); }
.ac-code-window__success {
  margin-top: 1rem;
  font-family: 'Courier New', monospace;
  font-size: .75rem;
  color: rgba(74,222,128,.8);
}
.ac-floating-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(30,144,255,.3);
  animation: acFloat 3.5s ease-in-out infinite;
}
@keyframes acFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.ac-floating-badge__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .125rem;
}
.ac-floating-badge__label {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
}

/* ==============================================
   PROCESS
============================================== */
.ac-process {
  position: relative;
  background: var(--gray-50);
  padding: 5rem 0;
  overflow: hidden;
}
.ac-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px)  { .ac-process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ac-process__steps { grid-template-columns: repeat(5, 1fr); } }

.ac-process__line {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, #BFDBFE, rgba(30,144,255,.4), #BFDBFE);
  animation: acLineGrow 1s .3s ease both;
  transform-origin: left;
}
@media (min-width: 1024px) { .ac-process__line { display: block; } }
@keyframes acLineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.ac-process__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1024px) { .ac-process__step { align-items: center; text-align: center; } }

.ac-process__num {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #BFDBFE;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: border-color .3s, box-shadow .3s;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.ac-process__step:hover .ac-process__num {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(30,144,255,.15);
}
.ac-process__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
  transition: color .2s;
}
.ac-process__step:hover .ac-process__title { color: var(--primary); }
.ac-process__desc {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ==============================================
   TESTIMONIALS
============================================== */
.ac-testimonials {
  position: relative;
  background: var(--navy);
  padding: 5rem 0;
  overflow: hidden;
}
.ac-testimonials .ac-eyebrow {}
.ac-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px)  { .ac-testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ac-testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.ac-tcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background .3s, border-color .3s;
}
.ac-tcard:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
.ac-tcard__top { display: flex; align-items: flex-start; justify-content: space-between; }
.ac-tcard__quote { color: rgba(30,144,255,.6); }
.ac-tcard__stars { color: var(--primary); font-size: .875rem; letter-spacing: .05em; }
.ac-tcard__body {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  flex: 1;
}
.ac-tcard__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ac-tcard__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ac-tcard__name { font-size: .875rem; font-weight: 600; color: #fff; }
.ac-tcard__role { font-size: .75rem; color: rgba(255,255,255,.4); }

.ac-trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 3rem;
}
@media (min-width: 480px) {
  .ac-trust-bar { flex-direction: row; justify-content: center; gap: 4rem; }
}
.ac-trust-bar__item { text-align: center; }
.ac-trust-bar__value {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: .25rem;
}
.ac-trust-bar__label { font-size: .875rem; color: rgba(255,255,255,.4); }

/* ==============================================
   CONTACT
============================================== */
.ac-contact {
  position: relative;
  background: #fff;
  padding: 5rem 0;
  overflow: hidden;
}
.ac-contact__card {
  max-width: 72rem;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(59,130,246,.08);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .ac-contact__card { flex-direction: row; } }

.ac-contact__info {
  position: relative;
  background: var(--navy);
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (min-width: 1024px) { .ac-contact__info { width: 40%; } }

.ac-contact__info-content { position: relative; z-index: 1; }
.ac-contact__info-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: .75rem; }
.ac-contact__info-desc { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 2.5rem; }
.ac-contact__details { display: flex; flex-direction: column; gap: 1.75rem; }
.ac-contact__detail { display: flex; align-items: flex-start; gap: 1rem; }
.ac-contact__detail-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.ac-contact__detail-label { font-size: .875rem; font-weight: 600; color: #fff; margin-bottom: .125rem; }
.ac-contact__detail-value { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.5; }
a.ac-contact__detail-value:hover { color: var(--primary); }
.ac-contact__note {
  position: relative; z-index: 1;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.ac-contact__form-wrap {
  background: #fff;
  padding: 2.5rem 3rem;
  flex: 1;
}

/* Form */
.ac-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ac-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .ac-form__row { grid-template-columns: 1fr 1fr; } }
.ac-form__group { display: flex; flex-direction: column; gap: .375rem; }
.ac-form__label { font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.ac-form__input, .ac-form__textarea {
  width: 100%;
  padding: .625rem .875rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  color: var(--gray-900);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.ac-form__input:focus, .ac-form__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,144,255,.1);
}
.ac-form__input::placeholder, .ac-form__textarea::placeholder { color: var(--gray-400); }
.ac-form__input { height: 44px; }
.ac-form__textarea { min-height: 110px; resize: none; }
.ac-form__note { font-size: .75rem; color: var(--gray-400); text-align: center; margin-top: .75rem; }
.ac-form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}

/* ==============================================
   FOOTER
============================================== */
.ac-footer {
  background: var(--navy-dark);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.ac-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
@media (min-width: 768px) { .ac-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

.ac-footer__logo { height: 36px; width: auto; margin-bottom: 1.25rem; }
.ac-footer__tagline { font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 22rem; }
.ac-footer__heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.ac-footer__col ul { display: flex; flex-direction: column; gap: .75rem; }
.ac-footer__col a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.ac-footer__col a:hover { color: var(--primary); }

.ac-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
@media (min-width: 640px) { .ac-footer__bottom { flex-direction: row; justify-content: space-between; } }
.ac-footer__legal { display: flex; gap: 1.5rem; }
.ac-footer__legal a { transition: color .2s; }
.ac-footer__legal a:hover { color: #fff; }

/* ==============================================
   RESPONSIVE UTILITIES
============================================== */
@media (max-width: 767px) {
  .ac-contact__form-wrap, .ac-contact__info { padding: 2rem 1.5rem; }
  .ac-hero { padding: 6rem 0 4rem; min-height: auto; }
  .ac-about__grid { gap: 2.5rem; }
  .ac-process__steps { gap: 2rem; }
}
