@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --bg: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-soft: #eff6ff;
  --navy: #01295c;
  --line: rgba(1, 41, 92, 0.12);
  --text: #01295c;
  --muted: #575757;
  --green: #a83739;
  --green-deep: #8f2d2f;
  --cyan: #025ed4;
  --blue-soft: #589bfa;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(1, 41, 92, 0.1);
  --container: 1140px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 45% at 85% 8%, rgba(88, 155, 250, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 35%, rgba(168, 55, 57, 0.16), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(1, 41, 92, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green), #c45c5e);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a3d55;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--green-deep);
  box-shadow: 0 10px 24px rgba(168, 55, 57, 0.3);
}

.nav-cta.active {
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(168, 55, 57, 0.28);
}

.btn-primary:hover {
  background: var(--green-deep);
  box-shadow: 0 14px 32px rgba(168, 55, 57, 0.36);
}

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(2, 94, 212, 0.35);
  background: var(--bg-soft);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Hero (centered, Sec2Pay-style) ---------- */
.hero {
  position: relative;
  padding: 2.75rem 0 1rem;
  overflow: hidden;
}

.hero-top {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 2.75rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.15rem;
  animation: fadeUp 0.7s ease both;
}

.hero-rotate {
  color: var(--green);
  display: inline-block;
  min-width: 4.2ch;
}

.hero-sub {
  color: #575757;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 1.75rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.18s both;
}

.hero-cta .btn-primary {
  padding: 1rem 1.8rem;
  font-size: 1rem;
}

/* Partner feature panel */
.partner-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  background: linear-gradient(180deg, #f6ecec 0%, #ffffff 70%);
  border: 1px solid rgba(168, 55, 57, 0.12);
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: 0 18px 40px rgba(1, 41, 92, 0.08);
  position: relative;
  overflow: hidden;
}

.partner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 0.5rem;
}

.partner-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #025ed4;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.partner-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.partner-copy > p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  max-width: 34rem;
}

.partner-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.partner-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #2a3d55;
  font-weight: 600;
  font-size: 0.98rem;
}

.partner-link {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  width: fit-content;
  transition: color 0.2s ease;
}

.partner-link:hover { color: var(--green-deep); }

.partner-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
  background: #eaf4ff;
}

.partner-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center top;
}

.float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-icons span {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(168, 55, 57, 0.35);
}

.float-icons span:nth-child(1) { top: 14%; left: 8%; }
.float-icons span:nth-child(2) { top: 18%; right: 10%; }
.float-icons span:nth-child(3) { bottom: 22%; left: 10%; }
.float-icons span:nth-child(4) { bottom: 16%; right: 12%; }

.side-tabs {
  position: absolute;
  right: 0;
  top: 58%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.65rem;
  z-index: 5;
}

.side-tab {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #eaf4ff;
  color: var(--navy);
  border: 1px solid var(--line);
  border-right: none;
  border-radius: 14px 0 0 14px;
  padding: 1.1rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: -6px 8px 20px rgba(1, 41, 92, 0.08);
}

.side-tab-alt {
  background: #f6ecec;
}

/* ---------- Sections ---------- */
section { padding: 4.75rem 0; }

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.7rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Trust ---------- */
.trust-band {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 22px;
  padding: 1.75rem 1rem;
  box-shadow: var(--shadow);
  margin-top: -0.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--green);
  margin-bottom: 0.2rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- Local SEO block ---------- */
.seo-local {
  background: linear-gradient(180deg, rgba(234, 244, 255, 0.55), rgba(255, 255, 255, 0.2));
}

.seo-local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.seo-local-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 10px 24px rgba(1, 41, 92, 0.04);
}

.seo-local-grid h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.seo-local-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.seo-local-grid a {
  color: var(--green);
  font-weight: 700;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem 1.45rem;
  box-shadow: 0 10px 24px rgba(1, 41, 92, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 100%;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(168, 55, 57, 0.28);
}

.platform-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(168, 55, 57, 0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.platform-top h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.platform-url {
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.platform-card ul {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.platform-card li {
  color: #2a3d55;
  font-size: 0.92rem;
  font-weight: 600;
  padding-left: 0.95rem;
  position: relative;
}

.platform-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.platform-cta {
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.product-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  min-height: 270px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-tile:hover img { transform: scale(1.05); }

.product-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(1, 41, 92, 0.88) 100%);
  z-index: 1;
}

.product-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.25rem;
  z-index: 2;
  color: var(--white);
}

.product-meta h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.product-meta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.product-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4a0a1;
}

/* Service cards (light) */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(1, 41, 92, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

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

.service-card ul {
  display: grid;
  gap: 0.4rem;
}

.service-card li {
  color: #2a3d55;
  font-size: 0.88rem;
  font-weight: 600;
  padding-left: 0.9rem;
  position: relative;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.service-card .tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Offer / API ---------- */
.offer-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.offer-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
  color: var(--navy);
}

.offer-copy p {
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.offer-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #2a3d55;
  font-size: 0.95rem;
  font-weight: 600;
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(168, 55, 57, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

.api-panel {
  position: relative;
  border: 1px solid rgba(1, 41, 92, 0.12);
  border-radius: 18px;
  background: linear-gradient(160deg, #01295c, #0a3a78);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.api-panel::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(168, 55, 57, 0.25), transparent 70%);
  pointer-events: none;
}

.api-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.dots { display: flex; gap: 6px; }
.dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #334155;
}
.dots i:nth-child(1) { background: #ff5f57; }
.dots i:nth-child(2) { background: #febc2e; }
.dots i:nth-child(3) { background: #28c840; }

.code-block {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #dbe7f7;
  white-space: pre-wrap;
}

.code-block .kw { color: #9ec5ff; }
.code-block .str { color: #d4a0a1; }
.code-block .num { color: #ffd27a; }
.code-block .cm { color: #8aa0b8; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-item {
  padding: 1.6rem 1.4rem;
  border-top: 3px solid var(--green);
  background: var(--white);
  border-radius: 0 0 16px 16px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(168, 55, 57, 0.1);
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 800;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.service-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- CTA ---------- */
.cta-band { position: relative; overflow: hidden; }

.cta-inner {
  position: relative;
  border-radius: 24px;
  padding: 3.2rem 2.2rem;
  background: linear-gradient(120deg, #01295c 0%, #0a3f8a 55%, #1d4f92 100%);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  color: var(--white);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 1.4rem;
}

.cta-inner .btn-primary {
  background: var(--green);
  color: var(--white);
}

/* ---------- Page hero ---------- */
.page-hero {
  padding: 3.8rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
  color: var(--navy);
}

.page-hero p {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.05rem;
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.2rem;
  align-items: start;
}

.contact-info { display: grid; gap: 1.2rem; }

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.info-block p,
.info-block a {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-block a:hover { color: var(--green); }

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f8fafc;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(168, 55, 57, 0.55);
  background: var(--white);
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-success {
  display: none;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(2, 94, 212, 0.08);
  border: 1px solid rgba(2, 94, 212, 0.25);
  color: var(--cyan);
  font-size: 0.92rem;
}

.form-success.show { display: block; }

.form-errors {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(168, 55, 57, 0.08);
  border: 1px solid rgba(168, 55, 57, 0.28);
  color: #b9382d;
  font-size: 0.9rem;
}

.form-errors ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.pillars {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.pillar {
  padding-left: 1rem;
  border-left: 3px solid var(--green);
}

.pillar h4 {
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.pillar p {
  margin: 0;
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 2rem;
  margin-top: 2rem;
  background: #01295c;
  color: var(--white);
}

.site-footer .logo { color: var(--white); }
.site-footer .logo span { color: #d4a0a1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.85rem;
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: #d4a0a1; }

.footer-address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0.35rem 0 0.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .partner-panel,
  .offer-row,
  .about-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .side-tabs { display: none; }

  .products-grid,
  .services-grid,
  .service-cards,
  .platform-grid,
  .seo-local-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
    border-radius: 10px;
  }

  .nav-links a:hover { background: var(--bg-soft); }

  .nav-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 640px) {
  .products-grid,
  .services-grid,
  .service-cards,
  .platform-grid,
  .seo-local-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero { padding: 1.5rem 0 0.5rem; }
  .hero-top { margin-bottom: 1.75rem; }
  .partner-panel { padding: 1.2rem; border-radius: 20px; }
  .partner-visual,
  .partner-visual img { min-height: 240px; }
  .float-icons span { width: 44px; height: 44px; font-size: 0.65rem; }
  .cta-inner { padding: 2.3rem 1.2rem; }
  .product-tile { min-height: 230px; }
}
