/* ---------------------------------------------------------
   Chris Your Tech Mate — stylesheet
   Signature: "sticker sheet" system — every card/button borrows
   the logo's die-cut badge language (thick navy outline, flat
   offset shadow, slight rotation) so the whole page reads as
   one sheet of stickers designed by the same hand as the logo.
--------------------------------------------------------- */

:root {
  --navy: #0b1f3a;
  --blue: #1b5fd8;
  --sky: #4fa3f7;
  --paper: #f7faff;
  --paper-dim: #eef3fc;
  --amber: #ffb020;
  --ink: #10213e;
  --ink-soft: #48577a;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-sticker: 6px 6px 0 rgba(11, 31, 58, 0.16);
  --shadow-sticker-hover: 9px 9px 0 rgba(11, 31, 58, 0.2);

  --font-display: "Fredoka", "Baloo 2", ui-rounded, "Segoe UI", sans-serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 0.6rem;
}

.section {
  padding: 4.5rem 1.5rem;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0.9rem 0 0;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -------------------- Buttons -------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 3px solid var(--navy);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sticker);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sticker-hover);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 rgba(11, 31, 58, 0.16);
}

.btn svg {
  width: 1.3em;
  height: 1.3em;
  flex: none;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--navy);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* -------------------- Top nav -------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--navy);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--navy);
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}

.brand-word span {
  color: var(--blue);
}

.nav .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.92rem;
  box-shadow: 4px 4px 0 rgba(11, 31, 58, 0.16);
}

/* -------------------- Hero -------------------- */

.hero {
  padding: 3.5rem 1.5rem 1.5rem;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero {
    padding: 3.5rem 1.5rem 4rem;
  }
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.2rem);
  font-weight: 600;
}

.hero-copy p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 1.2rem 0 1.8rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-copy .hero-area {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.3rem 0 1.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-area svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--blue);
}

.hero-art {
  position: relative;
  display: none;
  justify-content: center;
}

.hero-art-logo {
  width: min(340px, 78vw);
  transform: rotate(-4deg);
  border-radius: 50%;
  filter: drop-shadow(10px 12px 0 rgba(11, 31, 58, 0.14));
}

.hero-badge {
  position: absolute;
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: 999px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sticker);
  color: var(--blue);
}

.hero-badge svg {
  width: 28px;
  height: 28px;
}

.hero-badge-1 {
  top: -6%;
  left: 2%;
  animation: float-a 6s ease-in-out infinite;
}

.hero-badge-2 {
  top: 6%;
  right: -2%;
  color: var(--amber);
  animation: float-b 7s ease-in-out infinite;
}

.hero-badge-3 {
  bottom: -2%;
  left: 12%;
  color: var(--whatsapp-dark);
  animation: float-a 6.5s ease-in-out infinite reverse;
}

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

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

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-art {
    display: flex;
  }
}

/* -------------------- Services (sticker cards) -------------------- */

.cards {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sticker);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow-sticker-hover);
}

.cards .card:nth-child(1) { transform: rotate(-1.4deg); }
.cards .card:nth-child(2) { transform: rotate(1.2deg); }
.cards .card:nth-child(3) { transform: rotate(1deg); }
.cards .card:nth-child(4) { transform: rotate(-1deg); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--paper-dim);
  border: 2.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
}

/* -------------------- How it works -------------------- */

.steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}

@media (min-width: 780px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
}

.step-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.96rem;
}

/* -------------------- Trust strip -------------------- */

.trust {
  background: var(--navy);
}

.trust .section-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
  flex: none;
}

/* -------------------- Contact -------------------- */

.contact-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.contact-card {
  background: var(--blue);
  color: #fff;
  border: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sticker);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-card h3 {
  color: #fff;
  font-size: 1.35rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.form-card {
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sticker);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 520px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 2px solid #c7d4ea;
  background: var(--paper);
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* -------------------- Footer -------------------- */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.footer-brand span {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 600;
}

.footer p {
  margin: 0.25rem 0;
  font-size: 0.92rem;
}

.footer a {
  color: var(--sky);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
