:root {
  --ink: #17201d;
  --muted: #61706b;
  --paper: #f8f7f1;
  --white: #ffffff;
  --line: #dbe2dc;
  --green: #0f6b53;
  --green-dark: #0a493d;
  --gold: #f2b84b;
  --coral: #e76f51;
  --blue: #277da1;
  --shadow: 0 22px 60px rgba(23, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

.pointer-fire {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(248, 247, 241, 0.92);
  border-bottom: 1px solid rgba(219, 226, 220, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(23, 32, 29, 0.18);
  animation: logo-pulse 3.5s ease-in-out infinite;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--green);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23, 32, 29, 0.14);
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.whatsapp {
  color: var(--white);
  background: #25d366;
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(120deg, rgba(15, 107, 83, 0.1), transparent 46%),
    radial-gradient(circle at 95% 12%, rgba(242, 184, 75, 0.28), transparent 30%),
    var(--paper);
}

.hero-copy,
.section-heading,
.service-grid,
.work-copy,
.steps,
.contact-panel,
.message-form {
  max-width: 1180px;
}

.hero-copy {
  width: min(100%, 980px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  line-height: 0.92;
}

.hero-name,
.hero-title {
  display: block;
}

.hero-name {
  font-size: clamp(58px, 9vw, 116px);
  font-weight: 800;
}

.hero-title {
  margin-top: 10px;
  color: var(--green);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.notice-board {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 107, 83, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 29, 0.08);
}

.notice-board strong {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--coral);
  font-size: 14px;
  white-space: nowrap;
}

.notice-track {
  overflow: hidden;
  padding: 13px 0;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.notice-track span {
  display: inline-block;
  min-width: 100%;
  padding-left: 100%;
  animation: notice-scroll 22s linear infinite;
}

@keyframes notice-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

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

  50% {
    transform: translateY(-10px);
  }
}

@keyframes service-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(15, 107, 83, 0.18);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-width: 0;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  line-height: 1.15;
  font-weight: 800;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf9;
}

.section,
.contact-section,
.work-band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.marketing-heading {
  max-width: 760px;
  margin: clamp(64px, 9vw, 104px) auto 34px;
  text-align: center;
}

.marketing-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.marketing-grid .service-card:nth-child(1) {
  --card-color: #0f6b53;
}

.marketing-grid .service-card:nth-child(2) {
  --card-color: #e76f51;
}

.marketing-grid .service-card:nth-child(3) {
  --card-color: #9b5de5;
}

.marketing-grid .service-card:nth-child(4) {
  --card-color: #277da1;
}

.marketing-grid .service-card:nth-child(5) {
  --card-color: #f2b84b;
}

.marketing-grid .service-card:nth-child(6) {
  --card-color: #ef476f;
}

.section-heading p,
.work-copy p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 18px;
  margin: 0 auto;
  perspective: 1200px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  background: var(--white);
  box-shadow:
    0 10px 0 color-mix(in srgb, var(--card-color, var(--green)) 22%, #cfd8d2),
    0 26px 42px rgba(23, 32, 29, 0.12);
  animation: service-rise 700ms ease both;
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--card-color, var(--green));
  content: "";
}

.service-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 35%,
      color-mix(in srgb, var(--card-color, var(--green)) 14%, transparent) 50%,
      transparent 65%,
      transparent 100%
    );
  content: "";
  transform: translateX(-120%);
  animation: card-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}

.service-card:nth-child(1) {
  --card-color: #277da1;
}

.service-card:nth-child(2) {
  --card-color: #e76f51;
  animation-delay: 90ms;
}

.service-card:nth-child(3) {
  --card-color: #9b5de5;
  animation-delay: 180ms;
}

.service-card:nth-child(4) {
  --card-color: #f2b84b;
  animation-delay: 270ms;
}

.service-card:nth-child(5) {
  --card-color: #0f6b53;
  animation-delay: 360ms;
}

.service-card:nth-child(6) {
  --card-color: #ef476f;
  animation-delay: 450ms;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--card-color, var(--green)) 45%, var(--line));
  transform: translateY(-12px) rotateX(7deg) rotateY(-5deg);
  box-shadow:
    0 15px 0 color-mix(in srgb, var(--card-color, var(--green)) 28%, #cfd8d2),
    0 34px 56px rgba(23, 32, 29, 0.2);
}

.service-card:hover::after {
  animation-duration: 1.4s;
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(5) .service-icon {
  background: var(--green);
}

.service-card:nth-child(3) .service-icon,
.service-card:nth-child(6) .service-icon {
  background: var(--coral);
}

.service-card .service-icon {
  position: relative;
  z-index: 1;
  background: var(--card-color, var(--blue));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--card-color, var(--blue)) 30%, transparent);
  animation: icon-pop 1.8s ease-in-out infinite;
  transform: translateZ(36px);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  transform: translateZ(24px);
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.6;
  transform: translateZ(18px);
}

.service-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  transform: translateZ(14px);
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.service-list li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--card-color, var(--gold));
  content: "";
}

@keyframes icon-pop {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-6px) rotate(-2deg) scale(1.08);
  }
}

@keyframes card-shine {
  0%,
  35% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

.work-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background: var(--green-dark);
}

.work-copy,
.steps {
  width: 100%;
}

.work-band .eyebrow {
  color: var(--gold);
}

.work-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.steps strong {
  color: var(--gold);
  font-size: 28px;
}

.steps span {
  font-size: 18px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  max-width: 1324px;
  margin: 0 auto;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--green);
  border-color: rgba(15, 107, 83, 0.3);
}

.message-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.message-form .button {
  width: 100%;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcf9;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px) 24px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.footer-brand span {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-links h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 15px;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .work-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    margin-bottom: 16px;
  }

  .hero-name {
    font-size: 48px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .notice-board {
    grid-template-columns: 1fr;
  }

  .notice-board strong {
    min-height: 38px;
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .steps div,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer,
  .footer-links {
    grid-template-columns: 1fr;
  }
}
