@charset "UTF-8";
/* ============================================
   Get My Tech Help — Shared Stylesheet
   Brand: navy/cobalt blue + cream + gold/coral accents
   ============================================ */

:root {
  --cream: #FBF6EC;
  --cream-deep: #F1E6D2;
  --brand-blue: #1051AB;
  --brand-blue-deep: #0C3C80;
  --gold: #F2C14E;
  --coral: #EE8C6E;
  --text: #2E3440;
  --muted: #6B7280;
  --radius: 22px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

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

a { color: var(--brand-blue); }

h1, h2, h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.2;
}

h1 { font-size: 2.6rem; margin: 0 0 16px; }
h2 { font-size: 1.9rem; margin: 0 0 18px; }
h3 { font-size: 1.25rem; margin: 0 0 8px; }

p { margin: 0 0 16px; }

.eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--coral);
  margin: 0 0 8px;
}

/* ---------- LAYOUT HELPERS ---------- */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 56px 0;
}

.section-narrow {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- HEADER / NAV ---------- */
header.site-header {
  background: #fff;
  border-bottom: 1px solid #EFE6D4;
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.brand-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand-blue);
  line-height: 1.2;
}

nav.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav.main-nav a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--brand-blue);
  border-bottom-color: var(--gold);
}

.lang-switch {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  border-radius: 999px;
  padding: 4px 14px;
  margin-left: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch:hover {
  background: var(--brand-blue);
  color: #fff;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 32px;
  border: 2px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--brand-blue-deep);
}

.btn-primary:hover {
  box-shadow: 0 6px 16px rgba(242,193,78,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-secondary:hover {
  background: var(--brand-blue);
  color: #fff;
}

.btn-on-dark {
  background: var(--gold);
  color: var(--brand-blue-deep);
}

.btn-on-dark.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-on-dark.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 56px;
}

.hero img.portrait {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(16,81,171,0.20);
}

.hero img.landscape {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(16,81,171,0.20);
  object-fit: cover;
}

.hero.reverse {
  grid-template-columns: 1fr 220px;
}

.hero.reverse img.landscape {
  grid-column: 2;
  grid-row: 1;
}

.hero.wide-media {
  grid-template-columns: 320px 1fr;
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 520px;
}

/* ---------- CARDS ---------- */
.card {
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  border: 1px solid #E6DCC8;
  box-shadow: 0 6px 20px rgba(16,81,171,0.06);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ---------- WHY CHOOSE LIST ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item .check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-item h3 { margin-bottom: 4px; font-size: 1.08rem; }
.why-item p { color: var(--muted); margin-bottom: 0; font-size: 0.97rem; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(160deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  border-radius: var(--radius);
  padding: 48px;
  color: #fff;
  text-align: center;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.88); }
.cta-band .button-row { justify-content: center; }

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: var(--brand-blue-deep);
  color: rgba(255,255,255,0.85);
  padding: 40px 0;
  margin-top: 40px;
  font-size: 0.92rem;
}

footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer.site-footer .brand-name { color: #fff; }
footer.site-footer a { color: var(--gold); }

footer .footer-meta {
  text-align: right;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .card-grid, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  header.site-header .wrap { justify-content: center; text-align: center; }
  nav.main-nav { justify-content: center; }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero img.portrait { width: 180px; margin: 0 auto; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .button-row { justify-content: center; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  footer.site-footer .wrap { flex-direction: column; text-align: center; }
  footer .footer-meta { text-align: center; }
}

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

/* ============================================
   CONTACT PAGE
   ============================================ */

.reply-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-deep);
  border: 2px solid var(--brand-blue);
  border-radius: 999px;
  padding: 12px 24px;
  margin-top: 18px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--brand-blue);
  font-size: 0.98rem;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: start;
}

.info-card {
  background: linear-gradient(160deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  color: #fff;
}

.info-card h2 {
  font-size: 1.4rem;
  margin: 0 0 18px;
  color: var(--gold);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.info-row svg { flex-shrink: 0; margin-top: 2px; }
.info-row a { color: #fff; text-decoration: none; }
.info-row a:hover { text-decoration: underline; }

.tagline {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
}

.form-card h2 {
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: var(--brand-blue);
}

.form-card .sub {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 0.98rem;
}

.form-card label {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-blue);
  margin-bottom: 6px;
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid #E0D7C5;
  border-radius: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.15s ease;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: #fff;
}

.form-card textarea { resize: vertical; min-height: 120px; }

.newsletter-block {
  background: var(--cream-deep);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 26px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--brand-blue);
  flex-shrink: 0;
}

.checkbox-row label {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.topic-list {
  margin: 10px 0 0 32px;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
  list-style: none;
}

.topic-list li {
  margin-bottom: 4px;
  padding-left: 18px;
  position: relative;
}

.topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.topic-list .practical {
  font-style: italic;
  color: var(--brand-blue);
}

.privacy-note {
  margin: 14px 0 0 32px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-card button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-blue-deep);
  background: var(--gold);
  border: none;
  border-radius: 999px;
  padding: 15px 38px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.form-card button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(242,193,78,0.45);
}

.form-card button:focus-visible,
.form-card input:focus-visible,
.form-card textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .reply-badge { margin-left: auto; margin-right: auto; }
  .columns { grid-template-columns: 1fr; }
  .topic-list, .privacy-note { margin-left: 28px; }
}
