/* ================================================================
   ALLCONNECT LLC — main.css  v2.1
   Palette from logo:
     #08102A Navy Deep  |  #1B2B6B Navy  |  #5B8FD4 Blue
     #C9A84C Gold       |  #E8D5A3 Gold Light  |  #F5F0E8 Cream
   Fonts: Playfair Display (headlines) · Lato (body)
   ================================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy-deep:   #0E0C07;
  --cream-page:  #E8E3DA;
  --navy:        #1B2B6B;
  --blue:        #5B8FD4;
  --blue-light:  #8AAEE0;
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #A67C2E;
  --cream:       #F5F0E8;
  --cream-dark:  #EAE4D6;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --trans:       0.28s var(--ease);
  --shadow-sm:   0 2px 12px rgba(27,43,107,0.08);
  --shadow-md:   0 8px 32px rgba(27,43,107,0.14);
  --shadow-gold: 0 8px 28px rgba(201,168,76,0.3);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--cream); color: var(--navy); overflow-x: hidden; line-height: 1.6; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── LANGUAGE SYSTEM ────────────────────────────────────────
   !important is required to override competing display rules
   (other CSS rules can set display on the same elements)
───────────────────────────────────────────────────────────── */
.vi                               { display: none !important; }
body.lang-vi .en                  { display: none !important; }
body.lang-vi .vi                  { display: inline !important; }

/* Ticker rows are flex containers */
.ac-ticker-inner.vi               { display: none !important; }
body.lang-vi .ac-ticker-inner.en  { display: none !important; }
body.lang-vi .ac-ticker-inner.vi  { display: flex  !important; }

/* Block-level elements that must render as block in VI mode */
body.lang-vi .ac-hero-badge .vi,
body.lang-vi .ac-hero-title .vi,
body.lang-vi .ac-hero-services .vi,
body.lang-vi .ac-hero-desc .vi,
body.lang-vi .ac-section-title .vi,
body.lang-vi .ac-value-title .vi,
body.lang-vi .ac-modal-title .vi,
body.lang-vi p.vi,
body.lang-vi div.vi               { display: block !important; }

/* ─── LANGUAGE SWITCHER ──────────────────────────────────────── */
.lang-switch {
  position: fixed;
  top: 44px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: rgba(8, 16, 42, 0.90);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 50px;
  padding: 4px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.ls-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: transparent;
  border: none;
  color: rgba(232, 213, 163, 0.4);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.ls-btn:hover:not(.ls-active) {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
}
.ls-btn.ls-active {
  background: var(--gold);
  color: #08102A;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.35);
}

/* ─── TICKER ─────────────────────────────────────────────────── */
.ac-ticker {
  height: 34px;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.ac-ticker::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 40px; height: 100%;
  background: linear-gradient(to right, var(--navy-deep), transparent);
  z-index: 2; pointer-events: none;
}
.ac-ticker::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 40px; height: 100%;
  background: linear-gradient(to left, var(--navy-deep), transparent);
  z-index: 2; pointer-events: none;
}
.ac-ticker-track { position: relative; width: 100%; overflow: hidden; }
.ac-ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-run 40s linear infinite;
  width: max-content;
}
.ac-ticker-inner:hover { animation-play-state: paused; }
.ac-ticker-text {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.85;
}
@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.ac-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 90px 24px 70px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 42%, rgba(255,252,240,0.7) 0%, rgba(232,213,163,0.18) 45%, transparent 70%),
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(91,143,212,0.05) 0%, transparent 65%),
    #E8E3DA;
}

.ac-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ac-ring-1 { width: 420px; height: 420px; border: 1px solid rgba(201,168,76,0.14); }
.ac-ring-2 { width: 680px; height: 680px; border: 1px solid rgba(91,143,212,0.08); }
.ac-ring-3 { width: 950px; height: 950px; border: 1px solid rgba(201,168,76,0.05); }

.ac-corners { position: absolute; inset: 28px; pointer-events: none; }
.ac-corner  { position: absolute; width: 28px; height: 28px; }
.ac-corner--tl { top: 0;    left: 0;  border-top: 1px solid rgba(201,168,76,0.35); border-left:  1px solid rgba(201,168,76,0.35); }
.ac-corner--tr { top: 0;    right: 0; border-top: 1px solid rgba(201,168,76,0.35); border-right: 1px solid rgba(201,168,76,0.35); }
.ac-corner--bl { bottom: 0; left: 0;  border-bottom: 1px solid rgba(201,168,76,0.35); border-left:  1px solid rgba(201,168,76,0.35); }
.ac-corner--br { bottom: 0; right: 0; border-bottom: 1px solid rgba(201,168,76,0.35); border-right: 1px solid rgba(201,168,76,0.35); }

.ac-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  width: 100%;
  animation: fadeUp 0.9s var(--ease) both;
}

.ac-hero-logo {
  position: relative;
  width: 400px;
  margin: 0 auto 0px;
}



.ac-hero-logo::before {
  content: '';
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 420px;
  background: radial-gradient(ellipse at center,
    rgba(255,248,220,0.85) 0%,
    rgba(240,210,130,0.5) 35%,
    rgba(201,168,76,0.2) 60%,
    transparent 75%);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  animation: soft-glow 5s ease-in-out infinite;
}

.ac-hero-logo::after {
  content: '';
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 240px;
  background: radial-gradient(ellipse at center,
    rgba(255,252,235,0.9) 0%,
    rgba(255,235,160,0.65) 40%,
    rgba(220,185,100,0.25) 65%,
    transparent 80%);
  filter: blur(16px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  animation: soft-glow 5s ease-in-out infinite 1s;
}

.ac-logo-sparkle {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 180px;
  background: radial-gradient(ellipse at center,
    rgba(255,252,230,0.7) 0%,
    rgba(255,235,150,0.35) 45%,
    transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  animation: soft-glow 5s ease-in-out infinite 2s;
}

@keyframes soft-glow {
  0%   {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.94);
    filter: blur(32px) brightness(0.9);
  }
  50%  {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
    filter: blur(28px) brightness(1.15);
  }
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.94);
    filter: blur(32px) brightness(0.9);
  }
}







.ac-hero-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 4px 20px rgba(166,124,46,0.25));
  transition: transform 0.4s var(--ease);
}
.ac-hero-logo img:hover { transform: scale(1.03); }

.ac-hero-badge {
  display: inline-block;
  border: 1px solid rgba(166,124,46,0.4);
  background: rgba(201,168,76,0.12);
  color: #7A5C1E;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 30px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}



.ac-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 600;
  color: #1B2B6B;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeUp 0.9s var(--ease) 0.18s both;
}
.ac-hero-title em { font-style: italic; color: var(--gold); }

.ac-hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  animation: fadeUp 0.9s var(--ease) 0.26s both;
}
.ac-hero-rule span:not(.ac-diamond) {
  display: block;
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ac-hero-rule span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.ac-diamond { color: var(--gold); font-size: 8px; }

.ac-hero-services {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27,43,107,0.9);
  margin-bottom: 22px;
  animation: fadeUp 0.9s var(--ease) 0.32s both;
}

.ac-hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(27,43,107,0.6);
  max-width: 480px;
  margin: 0 auto 38px;
  animation: fadeUp 0.9s var(--ease) 0.38s both;
}

.ac-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease) 0.44s both;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--trans);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #1B2B6B;
  border: 1.5px solid rgba(27,43,107,0.35);
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--trans);
}
.btn-ghost:hover {
  border-color: #1B2B6B;
  background: rgba(27,43,107,0.06);
  transform: translateY(-2px);
}

/* ─── SHARED SECTION LAYOUT ──────────────────────────────────── */
.ac-section-inner { max-width: 900px; margin: 0 auto; }
.ac-section-head  { text-align: center; margin-bottom: 50px; }

.ac-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.ac-eyebrow--gold { color: var(--gold-light); }

.ac-rule-gold { width: 44px; height: 2px; background: var(--gold); margin: 8px auto 16px; }

.ac-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}
.ac-section-title em          { font-style: italic; color: var(--blue); }
.ac-section-title--light      { color: var(--white); }
.ac-section-title--light em   { color: var(--blue-light); }

.ac-section-sub               { font-family: var(--font-body); font-size: 14px; font-style: italic; color: rgba(27,43,107,0.55); }
.ac-section-sub--light        { color: rgba(255,255,255,0.5); }

/* ─── VALUES ─────────────────────────────────────────────────── */
.ac-values { background: var(--cream); padding: 80px 24px; }

.ac-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.ac-value-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.18);
  border-top: 3px solid var(--gold);
  padding: 38px 28px 32px;
  text-align: center;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.ac-value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--navy); }

.ac-value-icon { font-size: 2.4rem; display: block; margin-bottom: 16px; }

.ac-value-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.ac-value-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: block;
}

.ac-value-desc { font-size: 16px; line-height: 1.72; color: rgba(27,43,107,0.65); }

/* ─── SERVICES ───────────────────────────────────────────────── */
.ac-services { background: var(--white); padding: 80px 24px; }

.ac-services-list { border: 1px solid var(--cream-dark); max-width: 700px; margin: 0 auto; overflow: hidden; }

.ac-service-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 30px;
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--trans);
}
.ac-service-item:last-child { border-bottom: none; }
.ac-service-item:hover      { background: var(--cream); }

.ac-svc-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  opacity: 0.55;
  min-width: 38px;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity var(--trans);
}
.ac-service-item:hover .ac-svc-num { opacity: 0.9; }

.ac-svc-body { flex: 1; }

.ac-svc-primary {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2px;
}

.ac-svc-mirror {
  display: block;
  font-size: 15px;
  color: rgba(27,43,107,0.65);
  font-style: italic;
	font-weight: 400;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.ac-contact {
  background: #E8E3DA;
  padding: 80px 24px;
}

.ac-contact .ac-eyebrow          { color: var(--gold-dark); }
.ac-contact .ac-section-title    { color: var(--navy); }
.ac-contact .ac-section-title em { color: var(--blue); }
.ac-contact .ac-section-sub      { color: rgba(27,43,107,0.55); }

.ac-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }

.ac-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 3px solid var(--gold);
  padding: 22px 20px;
  transition: var(--trans);
  border-radius: 2px;
  text-decoration: none;
}
.ac-info-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--navy); }

.ac-info-card--link { cursor: pointer; }
.ac-info-card--link:hover .ac-info-value { color: var(--gold-dark); }
.ac-info-card--link:hover .ac-info-directions { opacity: 1; }

.ac-info-directions {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.4;
  transition: opacity var(--trans);
}

.ac-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }

.ac-info-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }

.ac-info-value { display: block; font-size: 14px; color: var(--navy); line-height: 1.5; transition: var(--trans); }
a.ac-info-value:hover { color: var(--gold-dark); }

.ac-bilingual-bar {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 14px 22px;
  text-align: center;
  font-size: 13px;
  color: #5A4010;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  line-height: 1.6;
  border-radius: 2px;
}
.ac-bilingual-bar strong { color: var(--navy); }

.ac-contact-cta { text-align: center; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.ac-footer { background: var(--navy-deep); border-top: 1px solid rgba(201,168,76,0.15); padding: 28px 24px; text-align: center; }

.ac-footer-logo { width: 52px; margin: 0 auto 12px; opacity: 0.65; }

.ac-footer-copy { font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; margin-bottom: 6px; font-weight: 700; }

.ac-footer-links { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 700; }
.ac-footer-links a { color: rgba(201,168,76,0.4); transition: var(--trans); }
.ac-footer-links a:hover { color: var(--gold); }

/* ─── MODAL ──────────────────────────────────────────────────── */
.ac-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,16,42,0.88);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ac-modal.open { display: flex; }

.ac-modal-box {
  background: var(--cream);
  border-top: 4px solid var(--gold);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 46px 42px 40px;
  position: relative;
  animation: fadeUp 0.35s var(--ease) both;
  box-shadow: 0 24px 60px rgba(8,16,42,0.5);
}

.ac-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  opacity: 0.4;
  line-height: 1;
  transition: var(--trans);
  padding: 4px;
}
.ac-modal-close:hover { opacity: 1; }

.ac-modal-header { margin-bottom: 28px; }

.ac-modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.ac-modal-title em { font-style: italic; color: var(--blue); }

.ac-modal-sub { font-size: 13px; color: rgba(27,43,107,0.55); font-style: italic; }
.ac-modal-sub a { color: var(--navy); border-bottom: 1px solid rgba(27,43,107,0.25); }

.ac-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.ac-form-group { margin-bottom: 14px; }

.ac-form-group label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 7px;
}
.req { color: var(--gold-dark); }

.ac-form-group input,
.ac-form-group select,
.ac-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(27,43,107,0.14);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  outline: none;
  border-radius: 2px;
  transition: border-color var(--trans);
  appearance: none;
  -webkit-appearance: none;
}
.ac-form-group input:focus,
.ac-form-group select:focus,
.ac-form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }

.ac-form-group textarea { resize: vertical; min-height: 110px; }

.ac-submit-btn {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  background: var(--navy);
  color: var(--gold-light);
  border: none;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--trans);
}
.ac-submit-btn:hover   { background: var(--gold); color: var(--navy-deep); }
.ac-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.form-status { display: none; margin-top: 14px; padding: 12px 16px; border-radius: 2px; font-size: 13px; text-align: center; line-height: 1.5; }
.form-status.success { display: block; background: rgba(34,139,64,0.1);  border: 1px solid rgba(34,139,64,0.28);  color: #1a5e30; }
.form-status.error   { display: block; background: rgba(180,30,30,0.08); border: 1px solid rgba(180,30,30,0.25); color: #7a1515; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ac-values-grid        { grid-template-columns: 1fr; }
  .ac-contact-grid       { grid-template-columns: 1fr; }
  .ac-ring-2, .ac-ring-3 { display: none; }
  .ac-corners            { inset: 14px; }
  .ac-modal-box          { padding: 36px 24px 30px; }
  .ac-form-row           { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .lang-switch           { top: 42px; right: 12px; }
  .ls-btn                { font-size: 10px; padding: 7px 12px; }
  .ac-hero-logo          { width: 140px; }
  .btn-primary, .btn-ghost { font-size: 11.5px; padding: 12px 22px; }
}