/* Base theme variables */
:root {
  --bg: #ffffff;
  --text: #333333; /* brand black */
  --muted: #6b7280; /* gray-500 */
  --primary: #FF3F68; /* corporate red */
  --primary-strong: #FF0135; /* secondary red */
  --accent: #F69A4B; /* brand yellow */
  --card: #f8fafc; /* light card */
  --border: #e5e7eb; /* gray-200 */
  --gradient: linear-gradient(135deg, #FF3F68 0%, #F69A4B 100%);
  --background-light: #FFFFFF;
  --background-dark: #333333;
}

/* Dark theme override */
:root[data-theme="dark"] {
  --bg: #0b1220;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --primary: #60a5fa;
  --card: #111827;
  --border: #1f2937;
}

/* Reset-ish */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  /* Brand guideline: Arial fallback if Gilroy is unavailable */
  font-family: Arial, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Container sizing is handled by Bootstrap */

.site-header, .site-footer {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.site-footer { border-top: 1px solid var(--border); border-bottom: 0; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.site-footer {
  padding: 1rem 1.5rem;
  color: var(--muted);
}

h1, h2 { line-height: 1.25; margin: 0.5rem 0; }

section { margin: 1.5rem 0; padding: 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }

.button {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, transform 60ms ease;
}
.button:hover { border-color: var(--primary); }
.button:active { transform: translateY(1px); }

/* Links and nav */
a { color: var(--primary); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
.site-nav { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.site-nav a { padding: 0.25rem 0.25rem; border-radius: 6px; }
.site-nav a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* Form */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.9rem; }
label { font-weight: 600; }
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
}
input:focus, textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.actions { margin-top: 0.6rem; }

/* Notices */
.notice { margin-top: 0.8rem; min-height: 1.2rem; }
.notice--success { color: #047857; }
.notice--error { color: #b91c1c; }

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Responsive tweaks */
@media (max-width: 640px) {
  .site-header { flex-wrap: wrap; gap: 0.75rem; }
  .site-header h1 { flex: 1 1 100%; }
  .site-nav { order: 3; width: 100%; }
  .container { padding: 1rem; }
}

/* --- Brand overrides & additions --- */
/* Typography per brand guidance: Arial Bold for titles, Arial Regular for body */
body { font-family: Arial, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, "Apple Color Emoji", "Segoe UI Emoji"; }
h1, h2, h3, h4, h5, h6 { font-family: Arial, system-ui, -apple-system, Segoe UI, Roboto, Helvetica; font-weight: 700; }

/* Hero masthead */
.masthead {
  padding-top: 9rem; /* space for fixed navbar */
  padding-bottom: 6rem;
  background: var(--gradient);
}
.masthead .masthead-heading { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.masthead .masthead-subheading { color: rgba(255,255,255,0.9); }
@media (min-width: 992px) { .masthead { padding-top: 12rem; padding-bottom: 8rem; } }

/* Sections */
.section-pad { padding: 4rem 0; }
/* Section headings sizes with clamp */
.section-heading { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; }
@media (max-width: 767.98px) {
  .section-heading { font-size: 1.5625rem; }
}

/* Body text sizes: large body ≈ 22pt; smaller body ≈ 17pt */
.lead { font-size: 1.375rem; }
p, .card-text, .text-muted, label, input, textarea, small { font-size: 1.0625rem; }

/* Icon circle for services */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Navbar brand logo */
.navbar-brand {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #4b5563;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: #374151;
  text-decoration: none;
}

.navbar-brand .brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
@media (min-width: 576px) {
  .navbar-brand .brand-logo { height: 34px; }
}
@media (min-width: 992px) {
  .navbar-brand .brand-logo { height: 36px; }
}
/* Clear space around logo (using margin as proxy for safe area) */
.navbar-brand .brand-logo { margin: 2px 8px 2px 0; }

/* Primary color overrides for Bootstrap */
.btn-primary { background-color: var(--primary); border-color: var(--primary); }
.btn-primary:hover, .btn-primary:focus { background-color: var(--primary-strong); border-color: var(--primary-strong); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background-color: var(--primary); border-color: var(--primary); color: #fff; }
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }

/* Light cards and borders remain neutral; links use brand */
a { color: var(--primary); }
a:hover, a:focus { color: var(--primary-strong); }

/* Trust strip */
.trust-strip { background: #f5f5f5; padding: 1.5rem 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.trust-heading { font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; color: #666; }
.trust-logos { gap: .5rem 1rem; }
.trust-pill { border: 1px solid #ddd; border-radius: 999px; padding: .4rem .8rem; font-size: .95rem; color: #666; background: #fff; }

/* Projects */
.project .project-media { background: linear-gradient(135deg, rgba(255,63,104,.5), rgba(246,154,75,.5)); border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.project .placeholder-text { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.25); font-weight: 700; padding: 1rem; text-align: center; }

/* About Me */
.about-headshot { width: 220px; height: 220px; border-radius: 50%; background: #ddd; box-shadow: 0 10px 30px rgba(0,0,0,.08); }

/* Footer */
.site-footer-dark { background: var(--background-dark); color: rgba(255,255,255,.7); }
.site-footer-dark .footer-logo { height: 36px; width: auto; }
.site-footer-dark .footer-link { color: rgba(255,255,255,.8); }
.site-footer-dark .footer-link:hover { color: #fff; }

/* === AI AUTOMATION SECTION === */
.ai-top-services {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.ai-top-card {
  border: 1px solid rgba(255, 63, 104, 0.15) !important;
}

#ai-automation {
  --ai-black: var(--bg);
  --ai-white: #ffffff;
  --ai-accent: #FF3F68;
  --ai-accent2: #F69A4B;
  --ai-mid: #f8fafc;
  --ai-muted: #6b7280;
  --ai-border: rgba(255, 63, 104, 0.15);
  --ai-gradient: linear-gradient(to right, #FF3F68, #F69A4B);
  background: var(--ai-black);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
}

#ai-automation .lead,
#ai-automation p,
#ai-automation li,
#ai-automation .ai-stat-label,
#ai-automation .ai-plan-price-note,
#ai-automation .demo-note {
  font-family: "Montserrat", Arial, sans-serif;
}

#ai-automation h2,
#ai-automation h3,
#ai-automation h4,
#ai-automation .ai-stat-num,
#ai-automation .ai-step-num,
#ai-automation .ai-plan-price {
  font-family: "Roboto Slab", serif;
}

#ai-automation .ai-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ai-accent);
  margin-bottom: 0.9rem;
}

#ai-automation .ai-section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

#ai-automation .ai-stats-row {
  border-top: 1px solid var(--ai-border);
  border-bottom: 1px solid var(--ai-border);
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

#ai-automation .ai-stat {
  text-align: center;
  padding: 0 0.75rem;
}

#ai-automation .ai-stat-num {
  font-size: 2.2rem;
  color: var(--ai-accent);
  line-height: 1;
}

#ai-automation .ai-stat-label {
  margin-top: 0.4rem;
  color: var(--ai-muted);
  line-height: 1.5;
}

#ai-automation .ai-step {
  background: var(--ai-mid);
  border: 1px solid var(--ai-border);
  border-radius: 1rem;
  padding: 1.8rem 1.4rem;
}

#ai-automation .ai-step-num {
  font-size: 2.7rem;
  color: rgba(255, 63, 104, 0.22);
  line-height: 1;
  margin-bottom: 0.8rem;
}

#ai-automation .ai-step-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

#ai-automation .ai-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

#ai-automation .ai-step p {
  color: var(--ai-muted);
  margin-bottom: 0;
}

#ai-automation .ai-use-case {
  background: var(--ai-white);
  border: 1px solid var(--ai-border);
  border-radius: 1rem;
  padding: 1.8rem;
}

#ai-automation .ai-use-case-featured {
  background: linear-gradient(135deg, rgba(255, 63, 104, 0.08) 0%, rgba(246, 154, 75, 0.14) 100%);
  border-color: rgba(255, 63, 104, 0.3);
}

#ai-automation .ai-use-case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  color: var(--ai-accent);
  background: rgba(255, 63, 104, 0.1);
}

#ai-automation .ai-use-case-icon {
  font-size: 2.1rem;
  margin-bottom: 0.9rem;
}

#ai-automation .ai-use-case h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

#ai-automation .ai-use-case p {
  color: var(--ai-muted);
}

#ai-automation .ai-use-case ul {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#ai-automation .ai-use-case li {
  color: var(--ai-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

#ai-automation .ai-use-case li::before {
  content: "→";
  color: var(--ai-accent);
}

#ai-automation .ai-plan {
  background: var(--ai-mid);
  border: 1px solid var(--ai-border);
  border-radius: 1rem;
  padding: 1.8rem;
}

#ai-automation .ai-featured-plan {
  background: var(--ai-gradient);
  color: #ffffff;
  border-color: rgba(255, 63, 104, 0.35);
}

#ai-automation .ai-plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ai-muted);
  margin-bottom: 0.7rem;
}

#ai-automation .ai-featured-plan .ai-plan-name {
  color: rgba(255, 255, 255, 0.8);
}

#ai-automation .ai-plan-price {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text);
}

#ai-automation .ai-featured-plan .ai-plan-price {
  color: #ffffff;
}

#ai-automation .ai-plan-suffix {
  font-size: 1.1rem;
  font-weight: 400;
}

#ai-automation .ai-plan-price-custom {
  font-size: 2rem;
}

#ai-automation .ai-plan-price-note {
  margin-top: 0.3rem;
  color: var(--ai-muted);
}

#ai-automation .ai-featured-plan .ai-plan-price-note {
  color: rgba(255, 255, 255, 0.88);
}

#ai-automation .ai-plan-divider {
  height: 1px;
  background: var(--ai-border);
  margin: 1.1rem 0;
}

#ai-automation .ai-featured-plan .ai-plan-divider {
  background: rgba(255, 255, 255, 0.3);
}

#ai-automation .ai-plan-features {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

#ai-automation .ai-plan-features li {
  color: var(--ai-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

#ai-automation .ai-plan-features li::before {
  content: "✓";
  color: var(--ai-accent);
  font-weight: 700;
}

#ai-automation .ai-featured-plan .ai-plan-features li,
#ai-automation .ai-featured-plan .ai-plan-features li::before {
  color: #ffffff;
}

#ai-automation .ai-plan-btn {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 63, 104, 0.35);
  color: var(--ai-accent);
  background: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

#ai-automation .ai-plan-btn:hover {
  text-decoration: none;
  filter: brightness(0.98);
}

#ai-automation .ai-featured-plan .ai-plan-btn {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
}

#ai-automation .ai-demo-box {
  background: var(--ai-white);
  border: 1px solid var(--ai-border);
  border-radius: 1rem;
  padding: 2rem;
}

/* WhatsApp phone colors intentionally unchanged */
#ai-automation .phone-wrap {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

#ai-automation .phone {
  width: 280px;
  background: #111;
  border-radius: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 6px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#ai-automation .phone-bar {
  background: #128C7E;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#ai-automation .phone-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

#ai-automation .phone-bar-info {
  flex: 1;
}

#ai-automation .phone-bar-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

#ai-automation .phone-bar-status {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

#ai-automation .phone-body {
  background: #0b141a;
  padding: 16px 14px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#ai-automation .msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.45;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeMsg 0.4s forwards;
  font-family: "Montserrat", Arial, sans-serif;
}

#ai-automation .msg-time {
  font-size: 0.6rem;
  opacity: 0.5;
  margin-top: 3px;
  text-align: right;
}

#ai-automation .msg.incoming {
  background: #202c33;
  color: #e9edef;
  border-radius: 12px 12px 12px 0;
  align-self: flex-start;
}

#ai-automation .msg.outgoing {
  background: #005c4b;
  color: #e9edef;
  border-radius: 12px 12px 0 12px;
  align-self: flex-end;
}

#ai-automation .msg.typing {
  background: #202c33;
  align-self: flex-start;
  padding: 12px 16px;
}

#ai-automation .typing-dots {
  display: flex;
  gap: 4px;
}

#ai-automation .typing-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: dot 1.2s infinite;
}

#ai-automation .typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

#ai-automation .typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

#ai-automation .msg:nth-child(1) {
  animation-delay: 0.5s;
}

#ai-automation .msg:nth-child(2) {
  animation-delay: 1.2s;
}

#ai-automation .msg:nth-child(3) {
  animation-delay: 2.2s;
}

#ai-automation .msg:nth-child(4) {
  animation-delay: 3.5s;
}

#ai-automation .msg:nth-child(5) {
  animation-delay: 4.5s;
}

#ai-automation .phone-input-bar {
  background: #1f2c34;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#ai-automation .phone-input {
  flex: 1;
  background: #2a3942;
  border: none;
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Montserrat", Arial, sans-serif;
}

#ai-automation .phone-send {
  width: 30px;
  height: 30px;
  background: #00a884;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ai-automation .phone-send svg {
  width: 14px;
  height: 14px;
  fill: white;
}

#ai-automation .phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}

#ai-automation .modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

#ai-automation .modal-overlay.open {
  display: flex;
}

#ai-automation .modal {
  background: var(--ai-mid);
  border-radius: 24px;
  padding: 48px;
  max-width: 520px;
  width: 90%;
  border: 1px solid var(--ai-border);
  position: relative;
  animation: modalIn 0.3s ease;
}

#ai-automation .modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(51, 51, 51, 0.4);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.15s;
}

#ai-automation .modal-close:hover {
  color: #333333;
}

#ai-automation .modal h2 {
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

#ai-automation .modal p {
  font-size: 0.92rem;
  color: var(--ai-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

#ai-automation .demo-chat {
  background: #0b141a;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

#ai-automation .demo-chat-bar {
  background: #128C7E;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#ai-automation .demo-chat-bar-avatar {
  width: 28px;
  height: 28px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

#ai-automation .demo-chat-bar-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: white;
}

#ai-automation .demo-chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}

#ai-automation .demo-input-row {
  display: flex;
  gap: 10px;
}

#ai-automation .demo-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(255, 63, 104, 0.25);
  border-radius: 100px;
  padding: 12px 20px;
  color: #333333;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s;
}

#ai-automation .demo-input:focus {
  border-color: var(--ai-accent);
}

#ai-automation .demo-send-btn {
  background: var(--ai-accent);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 12px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.15s;
  white-space: nowrap;
}

#ai-automation .demo-send-btn:hover {
  transform: scale(1.04);
}

#ai-automation .demo-note {
  font-size: 0.78rem;
  color: rgba(51, 51, 51, 0.6);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes fadeMsg {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 991.98px) {
  #ai-automation .ai-demo-box {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  #ai-automation .ai-stats-row {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  #ai-automation .ai-stat {
    padding: 0.5rem 0;
  }

  #ai-automation .modal {
    padding: 28px 20px;
  }
}
