/* ============================================
   PT. CAHAYA TEKNIK ELEKTRIK TANGERANG
   Style System — Mobile First
   ============================================ */

/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --hwp-primary: #0a1628;
  --hwp-secondary: #19468d;
  --hwp-accent: #f5a623;
  --hwp-accent-light: #fce4a8;
  --hwp-white: #ffffff;
  --hwp-light: #f8f9fa;
  --hwp-gray: #6b7a8f;
  --hwp-dark: #1a1a2e;
  --hwp-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
  --hwp-radius: 12px;
  --hwp-radius-sm: 8px;
  --hwp-font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --hwp-font-heading: "Playfair Display", "Inter", serif;
  --hwp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--hwp-font);
  color: var(--hwp-dark);
  background-color: var(--hwp-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--hwp-secondary);
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ----- CONTAINER ----- */
.hwp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- SECTION HEADER ----- */
.hwp-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hwp-accent);
  background: rgba(245, 166, 35, 0.12);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.hwp-section-title {
  font-family: var(--hwp-font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hwp-primary);
  margin-bottom: 12px;
}

.hwp-section-highlight {
  color: var(--hwp-accent);
  font-style: italic;
}

.hwp-section-desc {
  font-size: 1rem;
  color: var(--hwp-gray);
  max-width: 640px;
  line-height: 1.7;
}

.hwp-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.hwp-section-header .hwp-section-desc {
  margin: 0 auto;
}

/* ----- BUTTONS ----- */
.hwp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--hwp-font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--hwp-transition);
  text-align: center;
}

.hwp-btn--primary {
  background: var(--hwp-accent);
  color: var(--hwp-primary);
}

.hwp-btn--primary:hover {
  background: #e09900;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.hwp-btn--outline {
  background: transparent;
  color: var(--hwp-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.hwp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--hwp-white);
}

.hwp-btn--large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.hwp-btn--full {
  width: 100%;
}

/* ----- TOPBAR ----- */
.hwp-topbar {
  background: var(--hwp-primary);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  padding: 6px 0;
  border-bottom: 2px solid var(--hwp-accent);
  display: none;
}

.hwp-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hwp-topbar__contact,
.hwp-topbar__hours {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hwp-topbar__contact svg,
.hwp-topbar__hours svg {
  flex-shrink: 0;
}

.hwp-topbar__cta {
  color: var(--hwp-accent);
  font-weight: 600;
  transition: var(--hwp-transition);
}

.hwp-topbar__cta:hover {
  color: var(--hwp-white);
}

/* ----- HEADER ----- */
.hwp-header {
  background: var(--hwp-primary);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hwp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hwp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hwp-logo__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.hwp-logo__name {
  font-family: var(--hwp-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--hwp-white);
  line-height: 1.1;
  display: block;
}

.hwp-logo__tag {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--hwp-accent);
  letter-spacing: 0.5px;
  display: block;
}

.hwp-logo--footer .hwp-logo__name {
  color: var(--hwp-white);
}

/* ----- NAV ----- */
.hwp-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hwp-nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--hwp-transition);
}

.hwp-nav__link:hover {
  color: var(--hwp-white);
  background: rgba(255, 255, 255, 0.06);
}

.hwp-nav__link--cta {
  background: var(--hwp-accent);
  color: var(--hwp-primary);
  font-weight: 700;
}

.hwp-nav__link--cta:hover {
  background: #e09900;
  color: var(--hwp-primary);
}

/* Mobile Menu Toggle */
.hwp-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hwp-menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--hwp-white);
  border-radius: 2px;
  transition: var(--hwp-transition);
}

/* ----- HERO ----- */
.hwp-hero {
  background: var(--hwp-primary);
  color: var(--hwp-white);
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}

.hwp-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 20%,
    rgba(245, 166, 35, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.hwp-hero__inner {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hwp-hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--hwp-accent);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.hwp-hero__title {
  font-family: var(--hwp-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hwp-hero__highlight {
  color: var(--hwp-accent);
  font-style: italic;
}

.hwp-hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hwp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hwp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.hwp-hero__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hwp-hero__visual {
  display: none;
}

/* ----- STATS ----- */
.hwp-stats {
  background: var(--hwp-light);
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hwp-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.hwp-stats__number {
  font-family: var(--hwp-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hwp-secondary);
  display: block;
  line-height: 1.1;
}

.hwp-stats__number::after {
  content: "+";
}

.hwp-stats__item:last-child .hwp-stats__number::after {
  content: " Jam";
  font-size: 1.4rem;
}

.hwp-stats__label {
  font-size: 0.8rem;
  color: var(--hwp-gray);
  font-weight: 500;
}

/* ----- SERVICES ----- */
.hwp-services {
  padding: 60px 0;
  background: var(--hwp-white);
}

.hwp-services__grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.hwp-service-card {
  background: var(--hwp-light);
  padding: 24px 20px;
  border-radius: var(--hwp-radius);
  border-left: 4px solid var(--hwp-accent);
  transition: var(--hwp-transition);
}

.hwp-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hwp-shadow);
  background: var(--hwp-white);
}

.hwp-service-card__icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.hwp-service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hwp-primary);
  margin-bottom: 6px;
}

.hwp-service-card__desc {
  font-size: 0.88rem;
  color: var(--hwp-gray);
  line-height: 1.6;
}

.hwp-services__cta-wrap {
  text-align: center;
}

/* ----- ABOUT ----- */
.hwp-about {
  padding: 60px 0;
  background: var(--hwp-light);
}

.hwp-about__inner {
  display: grid;
  gap: 32px;
}

.hwp-about__image {
  position: relative;
  border-radius: var(--hwp-radius);
  overflow: hidden;
}

.hwp-about__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.hwp-about__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--hwp-accent);
  color: var(--hwp-primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 50px;
}

.hwp-about__desc {
  color: var(--hwp-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hwp-about__credentials {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.hwp-about__cred {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hwp-about__cred-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hwp-about__cred strong {
  font-size: 0.9rem;
  color: var(--hwp-primary);
}

.hwp-about__cred p {
  font-size: 0.82rem;
  color: var(--hwp-gray);
}

/* ----- PROJECTS ----- */
.hwp-projects {
  padding: 60px 0;
  background: var(--hwp-white);
}

.hwp-projects__grid {
  display: grid;
  gap: 16px;
}

.hwp-project-item {
  border-radius: var(--hwp-radius);
  overflow: hidden;
  position: relative;
  background: var(--hwp-primary);
}

.hwp-project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--hwp-transition);
}

.hwp-project-item:hover img {
  transform: scale(1.04);
}

.hwp-project-item figcaption {
  padding: 14px 16px;
  background: var(--hwp-white);
}

.hwp-project-item figcaption h4 {
  font-size: 0.95rem;
  color: var(--hwp-primary);
}

.hwp-project-item figcaption p {
  font-size: 0.8rem;
  color: var(--hwp-gray);
}

/* ----- WHY US ----- */
.hwp-why {
  padding: 60px 0;
  background: var(--hwp-light);
}

.hwp-why__grid {
  display: grid;
  gap: 20px;
}

.hwp-why__item {
  background: var(--hwp-white);
  padding: 24px 20px;
  border-radius: var(--hwp-radius);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--hwp-transition);
}

.hwp-why__item:hover {
  box-shadow: var(--hwp-shadow);
  transform: translateY(-4px);
}

.hwp-why__icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.hwp-why__item h3 {
  font-size: 1rem;
  color: var(--hwp-primary);
  margin-bottom: 4px;
}

.hwp-why__item p {
  font-size: 0.85rem;
  color: var(--hwp-gray);
}

/* ----- TESTIMONIALS ----- */
.hwp-testimonials {
  padding: 60px 0;
  background: var(--hwp-white);
}

.hwp-testimonials__grid {
  display: grid;
  gap: 20px;
}

.hwp-testimonial {
  background: var(--hwp-light);
  padding: 24px;
  border-radius: var(--hwp-radius);
  border-left: 4px solid var(--hwp-secondary);
}

.hwp-testimonial p {
  font-style: italic;
  color: var(--hwp-dark);
  line-height: 1.7;
  margin-bottom: 12px;
}

.hwp-testimonial footer {
  font-size: 0.82rem;
}

.hwp-testimonial footer strong {
  color: var(--hwp-primary);
  display: block;
}

.hwp-testimonial footer span {
  color: var(--hwp-gray);
}

/* ----- CONTACT ----- */
.hwp-contact {
  padding: 60px 0;
  background: var(--hwp-light);
}

.hwp-contact__inner {
  display: grid;
  gap: 32px;
}

.hwp-contact__desc {
  color: var(--hwp-gray);
  margin-bottom: 20px;
}

.hwp-contact__details {
  display: grid;
  gap: 14px;
}

.hwp-contact__details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hwp-contact__details li > span {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hwp-contact__details li strong {
  font-size: 0.85rem;
  color: var(--hwp-primary);
  display: block;
}

.hwp-contact__details li a,
.hwp-contact__details li p {
  font-size: 0.85rem;
  color: var(--hwp-gray);
}

.hwp-contact__details li a:hover {
  color: var(--hwp-secondary);
}

.hwp-contact__form {
  background: var(--hwp-white);
  padding: 28px 20px;
  border-radius: var(--hwp-radius);
  box-shadow: var(--hwp-shadow);
}

.hwp-form-group {
  margin-bottom: 16px;
}

.hwp-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hwp-primary);
  display: block;
  margin-bottom: 4px;
}

.hwp-required {
  color: #d32f2f;
}

.hwp-form-group input,
.hwp-form-group select,
.hwp-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--hwp-font);
  font-size: 0.95rem;
  border: 2px solid #e4e7ec;
  border-radius: var(--hwp-radius-sm);
  background: var(--hwp-white);
  transition: var(--hwp-transition);
}

.hwp-form-group input:focus,
.hwp-form-group select:focus,
.hwp-form-group textarea:focus {
  outline: none;
  border-color: var(--hwp-accent);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.15);
}

.hwp-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.hwp-form-note {
  font-size: 0.75rem;
  color: var(--hwp-gray);
  margin-top: 8px;
  text-align: center;
}

/* ----- FAQ ----- */
.hwp-faq {
  padding: 60px 0;
  background: var(--hwp-white);
}

.hwp-faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.hwp-faq__item {
  border-bottom: 1px solid #e4e7ec;
  padding: 12px 0;
}

.hwp-faq__item:last-child {
  border-bottom: none;
}

.hwp-faq__question {
  font-weight: 600;
  color: var(--hwp-primary);
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.hwp-faq__question::-webkit-details-marker {
  display: none;
}

.hwp-faq__question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--hwp-accent);
  transition: var(--hwp-transition);
}

.hwp-faq__item[open] .hwp-faq__question::after {
  content: "−";
}

.hwp-faq__answer {
  font-size: 0.92rem;
  color: var(--hwp-gray);
  padding: 8px 0 12px;
  line-height: 1.7;
}

/* ----- CTA FINAL ----- */
.hwp-cta-final {
  padding: 50px 0;
  background: var(--hwp-primary);
  color: var(--hwp-white);
  text-align: center;
}

.hwp-cta-final__inner h2 {
  font-family: var(--hwp-font-heading);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.hwp-cta-final__inner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

/* ----- FOOTER ----- */
.hwp-footer {
  background: var(--hwp-primary);
  color: rgba(255, 255, 255, 0.7);
  border-top: 2px solid rgba(245, 166, 35, 0.2);
}

.hwp-footer__inner {
  display: grid;
  gap: 28px;
  padding: 40px 20px;
}

.hwp-footer__brand .hwp-logo {
  margin-bottom: 8px;
}

.hwp-footer__desc {
  font-size: 0.85rem;
  max-width: 300px;
}

.hwp-footer__links h4,
.hwp-footer__contact h4 {
  color: var(--hwp-white);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.hwp-footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hwp-footer__links a,
.hwp-footer__contact a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--hwp-transition);
}

.hwp-footer__links a:hover,
.hwp-footer__contact a:hover {
  color: var(--hwp-accent);
}

.hwp-footer__contact p {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.hwp-footer__social {
  padding: 0 20px 28px;
}

.hwp-footer__social h4 {
  color: var(--hwp-white);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.hwp-footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hwp-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--hwp-radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  transition: background-color var(--hwp-transition), border-color var(--hwp-transition), color var(--hwp-transition), transform 0.15s ease;
}

.hwp-footer__social-link:hover,
.hwp-footer__social-link:focus-visible {
  background: var(--hwp-accent);
  border-color: var(--hwp-accent);
  color: var(--hwp-primary);
  transform: translateY(-2px);
}

.hwp-footer__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hwp-footer__social-link {
    transition: none;
  }

  .hwp-footer__social-link:hover,
  .hwp-footer__social-link:focus-visible {
    transform: none;
  }
}

.hwp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  font-size: 0.75rem;
  text-align: center;
}

.hwp-footer__credit {
  margin-top: 4px;
  font-size: 0.7rem;
}

.hwp-footer__credit a {
  color: var(--hwp-accent);
}

.hwp-footer__credit a:hover {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE: TABLET (min-width: 640px)
   ============================================ */
@media (min-width: 640px) {
  .hwp-topbar {
    display: block;
  }

  .hwp-hero__title {
    font-size: 2.8rem;
  }

  .hwp-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hwp-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hwp-projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hwp-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hwp-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hwp-contact__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hwp-footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* ============================================
   RESPONSIVE: DESKTOP (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
  .hwp-hero {
    padding: 60px 0 80px;
  }

  .hwp-hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .hwp-hero__visual {
    display: block;
  }

  .hwp-hero__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--hwp-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .hwp-hero__title {
    font-size: 3.4rem;
  }

  .hwp-section-title {
    font-size: 2.5rem;
  }

  .hwp-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hwp-projects__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hwp-why__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hwp-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hwp-about__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .hwp-about__image img {
    height: 380px;
  }

  .hwp-contact__form {
    padding: 40px 36px;
  }

  .hwp-cta-final__inner h2 {
    font-size: 2.4rem;
  }
}

/* ============================================
   RESPONSIVE: MOBILE MENU
   ============================================ */
@media (max-width: 767px) {
  .hwp-menu-toggle {
    display: flex;
  }

  .hwp-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hwp-primary);
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .hwp-nav.is-open {
    display: block;
  }

  .hwp-nav__list {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .hwp-nav__link {
    padding: 10px 16px;
    font-size: 0.95rem;
    text-align: center;
  }

  .hwp-menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hwp-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hwp-menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hwp-contact__inner {
    grid-template-columns: 1fr;
  }

  .hwp-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hwp-footer__brand .hwp-logo {
    justify-content: center;
  }

  .hwp-footer__desc {
    margin: 0 auto;
  }

  .hwp-footer__links ul {
    align-items: center;
  }
}

/* ============================================
   RESPONSIVE: EXTRA SMALL (320px)
   ============================================ */
@media (max-width: 374px) {
  .hwp-container {
    padding: 0 12px;
  }

  .hwp-hero__title {
    font-size: 1.6rem;
  }

  .hwp-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hwp-hero__actions .hwp-btn {
    justify-content: center;
  }

  .hwp-section-title {
    font-size: 1.5rem;
  }

  .hwp-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hwp-stats__number {
    font-size: 1.6rem;
  }

  .hwp-services__grid {
    grid-template-columns: 1fr;
  }

  .hwp-projects__grid {
    grid-template-columns: 1fr;
  }

  .hwp-why__grid {
    grid-template-columns: 1fr;
  }

  .hwp-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .hwp-about__credentials {
    grid-template-columns: 1fr;
  }

  .hwp-contact__form {
    padding: 20px 14px;
  }

  .hwp-cta-final__inner h2 {
    font-size: 1.4rem;
  }

  .hwp-footer__inner {
    padding: 30px 12px;
  }
}
