/* ===================================================
   WIBRIDO CMS – Frontend Styles
   =================================================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul { list-style: none; }

/* ── CSS Custom Properties ── */
:root {
  --primary:   #1d4ed8;
  --primary-h: #1e40af;
  --accent:    #7c3aed;
  --gradient:  linear-gradient(135deg, #1d4ed8, #7c3aed);
  --dark:      #0f172a;
  --dark-card: #1e293b;
  --light:     #f8fafc;
  --alt:       #f1f5f9;
  --text:      #1e293b;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.15);
  --transition: .3s ease;
  --header-height: 80px;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section { padding: 96px 0; }
.section-light { background: #ffffff; }
.section-dark  { background: var(--dark); }
.section-alt   { background: var(--alt); }
.text-center   { text-align: center; }
.text-white    { color: #ffffff; }
.text-muted    { color: var(--muted); }
.text-accent   { color: #7dd3fc; }

.section-header { margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
}
.section-title.text-white { color: #fff; }
.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(29,78,216,.4); }
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--header-bg, #0f172a);
  transition: all .4s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.header-transparent { background: transparent !important; box-shadow: none; }
.header-transparent.scrolled { background: var(--header-bg, #0f172a) !important; box-shadow: 0 2px 20px rgba(0,0,0,.3) !important; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-text {
  font-size: 26px;
  font-weight: 800;
  color: var(--header-color, #fff);
  letter-spacing: -1px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--header-color, #fff);
  border-radius: 6px;
  transition: all .2s;
  opacity: .9;
}
.nav-link:hover, .nav-link.active { opacity: 1; background: rgba(255,255,255,.1); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--header-color, #fff);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg { overflow: hidden; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-image-bg { background-size: cover; background-position: center; }
.hero-color-bg { background: var(--gradient); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
  padding-bottom: 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.hero-intro {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 12px;
  color: #e0f2fe;
}
.hero-intro-sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-subheadline {
  font-size: clamp(17px, 2.5vw, 22px);
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 20px;
  z-index: 2;
  animation: bounce 2s infinite;
  transition: color .2s;
}
.hero-scroll:hover { color: #fff; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.about-photo-placeholder {
  width: 380px;
  height: 420px;
  background: var(--alt);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--border);
}
.about-text .section-label { color: var(--primary); }
.about-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 20px 0 32px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 40px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.benefit-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.06);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.benefit-icon {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #fff;
}
.benefit-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.benefit-card p  { font-size: 14px; color: #94a3b8; line-height: 1.6; }

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-thumb { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.06); }
.portfolio-placeholder {
  width: 100%; height: 100%;
  background: var(--alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--border);
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-link {
  padding: 10px 24px;
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.portfolio-info { padding: 20px; }
.portfolio-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.portfolio-info p  { font-size: 14px; color: var(--muted); }
.portfolio-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 12px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* ── SERVICES (4 per row) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: #fff;
}
.service-body { flex: 1; }
.service-card .service-tags { justify-content: center; }
.service-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.service-subtitle { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.service-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.service-tags span {
  padding: 3px 12px;
  background: var(--alt);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
}

/* ── PROCESS (timeline carousel) ── */
.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--dark-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform var(--transition);
  position: relative;
}
.process-step:hover { transform: translateY(-4px); }
/* horizontal timeline line behind the dots */
.timeline-track { padding-top: 28px; }
.timeline-track::before {
  content: '';
  position: absolute;
  top: 10px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(29,78,216,.6), rgba(124,58,237,.6));
  border-radius: 3px;
}
.timeline-dot {
  position: absolute;
  top: -28px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 3px rgba(124,58,237,.4);
  z-index: 1;
}
.process-num {
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.process-icon { font-size: 28px; color: #7dd3fc; margin-bottom: 12px; }
.process-step h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.process-step p  { font-size: 13px; color: #94a3b8; line-height: 1.5; }

/* ── CAROUSEL (portfolio + process) ── */
.carousel { position: relative; padding: 0 56px; }
.carousel-track {
  position: relative;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item {
  flex: 0 0 calc((100% - 56px) / 3); /* 3 visible */
  scroll-snap-align: start;
  min-width: 0;
}
.process-carousel .carousel-item { flex: 0 0 calc((100% - 84px) / 4); } /* 4 visible */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--gradient);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(29,78,216,.35);
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.08); }
.carousel-btn:disabled { opacity: .3; cursor: default; transform: translateY(-50%); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.section-dark .carousel-dots button { background: rgba(255,255,255,.2); }
.carousel-dots button.active { background: var(--primary); transform: scale(1.3); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #fff;
}
.contact-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-item a { color: var(--primary); }
.contact-item a:hover { color: var(--accent); }
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--alt);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: all .2s;
}
.social-btn:hover { background: var(--gradient); color: #fff; transform: translateY(-2px); }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  background: var(--light);
  resize: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.form-result {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.form-result.success { background: #f0fdf4; border: 1px solid #86efac; color: #15803d; }
.form-result.error   { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; }

/* ── FOOTER ── */
.site-footer {
  background: var(--footer-bg, #0f172a);
  color: var(--footer-color, #94a3b8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.footer-social a:hover { background: var(--gradient); border-color: transparent; color: #fff; transform: translateY(-2px); }
.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-links a i { font-size: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; }
.back-to-top {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all .2s;
}
.back-to-top:hover { background: var(--gradient); color: #fff; }

/* ── STATIC PAGE ── */
.static-page { padding-top: var(--header-height); }
.page-hero {
  background: var(--dark);
  padding: 64px 0 48px;
  color: #fff;
}
.page-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 12px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; opacity: .7; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { opacity: .8; }
.page-content { max-width: 800px; margin: 0 auto; padding: 56px 0; }
.rich-content h1,
.rich-content h2,
.rich-content h3 { font-weight: 700; margin: 32px 0 12px; color: var(--text); line-height: 1.3; }
.rich-content h1 { font-size: 36px; }
.rich-content h2 { font-size: 26px; }
.rich-content h3 { font-size: 20px; }
.rich-content p  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.rich-content ul, .rich-content ol { padding-left: 24px; margin-bottom: 16px; }
.rich-content li { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 8px; }
.rich-content a  { color: var(--primary); text-decoration: underline; }
.page-footer-links { max-width: 800px; margin: 0 auto; padding-bottom: 64px; display: flex; gap: 16px; }

/* ── 404 ── */
.error-page {
  min-height: calc(100vh - var(--header-height) - 200px);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0;
  padding-top: calc(var(--header-height) + 40px);
}
.error-code { font-size: 120px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; }
.error-page h1 { font-size: 32px; margin-bottom: 12px; }
.error-page p  { font-size: 17px; color: var(--muted); margin-bottom: 32px; }

/* ── AOS-like animations ── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="150"] { transition-delay: .15s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos][data-aos-delay="300"] { transition-delay: .3s; }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"]  { transform: translateX(24px); }
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }
[data-aos="fade-down"]  { transform: translateY(-24px); }
[data-aos="fade-down"].aos-animate  { transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-item { flex: 0 0 calc((100% - 28px) / 2); }
  .process-carousel .carousel-item { flex: 0 0 calc((100% - 28px) / 2); }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-list { display: none; flex-direction: column; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--dark); padding: 16px; gap: 4px; z-index: 999; }
  .nav-list.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .carousel { padding: 0 44px; }
  .carousel-item,
  .process-carousel .carousel-item { flex: 0 0 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .hero-headline { letter-spacing: -1px; }
  .carousel { padding: 0 40px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 13px; }
}
