:root {
  --primary: #f36300;
  --primary-dark: #f36300;
  --primary-light: #fff4e6;
  --text: #191919;
  --muted: #666;
  --border: #f1dfcc;
  --bg: #fffaf5;
  --white: #fff;
  --shadow: 0 12px 35px rgba(255, 138, 0, 0.13);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
}

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

.btn-outline {
  background: #fff;
  color: var(--text);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.btn-white-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.large {
  padding: 14px 26px;
}

.full {
  width: 100%;
}

.top-bar {
  background: #031426;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-bar-contact a::first-letter {
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f8e5d1;
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  height: 100%;
}

.logo img {
  width: auto;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
}

.logo-mark {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--primary);
}

.logo strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo strong span {
  color: #f36300;
}

.logo small {
  display: block;
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 700;
  margin-top: -4px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  position: relative;
}

.nav a.active,
.nav a:hover {
  color: var(--primary-dark);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

/* Hero */

.hero {
  background:
    radial-gradient(circle at 78% 44%, rgba(255, 138, 0, 0.16), transparent 22%),
    linear-gradient(180deg, #fff9f1 0%, #fff 100%);
  padding: 50px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ffe0bb;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(255, 138, 0, 0.12);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.03;
  letter-spacing: -2.2px;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--primary-dark);
}

.hero p {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ffe4c3;
  border-radius: 12px;
  padding: 11px 8px;
  min-height: 106px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(255, 138, 0, 0.08);
}

.hero-stats strong {
  display: block;
  color: var(--primary-dark);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-stats span {
  display: block;
  color: #444;
  font-size: clamp(8px, 0.72vw, 10px);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 5px;
  white-space: nowrap;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.platform-note {
  color: #444;
  font-size: 14px;
  font-weight: 700;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.18));
}

/* Ratings */

.ratings {
  padding: 24px 0;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}

.google-box,
.rating-item {
  background: #fff;
  border: 1px solid #f6dfc2;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.google-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.g-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  color: #4285f4;
  background: #fff;
  box-shadow: inset 0 0 0 1px #eee;
}

.google-box span,
.google-box small,
.rating-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.google-box strong {
  display: block;
  color: var(--primary-dark);
  font-size: 22px;
}

.rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  text-align: center;
  font-size: 28px;
}

.rating-item strong {
  display: block;
  font-size: 22px;
  margin-top: 8px;
}

/* Common Section */

.section {
  padding: 34px 0;
}

.section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.section h2 span {
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.about-copy {
  max-width: 980px;
  margin: 0 auto 28px;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
}

.benefit-heading {
  margin-top: 18px;
}

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

/* Benefits */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.benefit-card {
  text-align: center;
  background: #fff;
  border: 1px solid #f7e4cf;
  border-radius: 18px;
  padding: 26px 14px;
  box-shadow: 0 12px 30px rgba(255, 138, 0, 0.09);
}

.icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.benefit-card h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 12px;
}

/* Process */

.process-section {
  background: #fff;
}

.process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.process-item {
  width: 150px;
  text-align: center;
}

.process-item b {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 14px;
}

.process-item h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.process-item p {
  font-size: 11px;
  color: var(--muted);
}

.line {
  flex: 1;
  height: 2px;
  border-top: 2px dashed #ffc582;
  margin: 0 4px;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  margin-top: 22px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  background: #fff;
  border: 1px solid #f1dfcc;
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 14px;
  box-shadow: 0 10px 30px rgba(255, 138, 0, 0.08);
}

.service-card.featured {
  border: 2px solid var(--primary);
}

.service-card img {
  display: block;
  width: 100%;
  height: 105px;
  object-fit: cover;
  object-position: center;
}

.service-card h3 {
  font-size: 13px;
  line-height: 1.35;
  padding: 12px 12px 4px;
}

.service-card p {
  flex: 1;
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted);
  padding: 0 12px 10px;
  text-align: left;
}

.service-card a {
  display: block;
  margin-top: auto;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 0 12px;
}

.new {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 5px 9px;
  border-radius: 0 14px 0 12px;
}

/* Switch */

.switch-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.orange-box {
  background: #f36300;
  color: #fff7f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.orange-box h2 {
  text-align: left;
  color: #fffaf5;
  margin-bottom: 14px;
}

.orange-box h3 {
  color: #fffaf5;
}

.orange-box li {
  color: rgba(255, 250, 245, 0.92);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.compare li {
  list-style: none;
  font-size: 13px;
  margin-bottom: 8px;
}

.compare li::before {
  content: "✓";
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.stat-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}

.stat-boxes div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #f6dfc2;
  border-radius: 16px;
  padding: 22px 14px;
  min-height: 144px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-boxes strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.stat-boxes span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 4px;
}

/* Features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  margin-top: 22px;
}

.features-grid div {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #f3dfc8;
  border-radius: 15px;
  padding: 18px;
  min-height: 150px;
  box-shadow: 0 10px 28px rgba(255, 138, 0, 0.08);
  color: var(--primary-dark);
}

.features-grid svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features-grid .whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

.features-grid strong {
  display: flex;
  align-items: center;
  min-height: 38px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  margin-top: 12px;
}

.features-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 5px;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.price-card,
.usg-card {
  position: relative;
  background: #fff;
  border: 1px solid #f3ddc2;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.advantage-panel {
  position: relative;
  overflow: hidden;
  padding: 44px 44px 30px;
  border: 1px solid #f3ddc2;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgba(255, 138, 0, 0.11), transparent 27%),
    radial-gradient(circle at 100% 100%, rgba(255, 138, 0, 0.09), transparent 30%),
    #fffaf5;
  box-shadow: var(--shadow);
}

.advantage-panel::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 25px;
  width: 72px;
  height: 72px;
  opacity: 0.32;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  pointer-events: none;
}

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

.advantage-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  padding: 6px 13px;
  border: 1px solid #ffd29c;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.advantage-badge span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-light);
  font-size: 12px;
}

.advantage-heading h2 {
  margin-bottom: 13px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
}

.advantage-heading h2 span {
  color: var(--primary-dark);
}

.advantage-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.advantage-card {
  min-width: 0;
  min-height: 280px;
  padding: 24px 24px 26px;
  border: 1px solid #f2ddc5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(255, 138, 0, 0.08);
  text-align: center;
}

.advantage-visual {
  position: relative;
  width: 112px;
  height: 88px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff8ee, #ffead1);
  color: var(--primary-dark);
}

.advantage-card h3 {
  position: relative;
  min-height: 36px;
  margin-bottom: 17px;
  font-size: 17px;
  line-height: 1.35;
}

.advantage-card h3::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 34px;
  height: 2px;
  border-radius: 10px;
  background: var(--primary);
  transform: translateX(-50%);
}

.advantage-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.network-visual {
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #fff0dc 0%, #fff8ee 62%, transparent 63%);
}

.network-visual img {
  width: 132px;
  height: 108px;
  max-width: none;
  object-fit: contain;
}

.device-visual {
  display: grid;
  place-items: center;
}

.device-visual > div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px;
  border: 4px solid #222;
  background: #fff;
  box-shadow: inset 13px 0 var(--primary-dark);
}

.device-visual span {
  display: block;
  width: 38px;
  height: 5px;
  margin-left: 12px;
  border-radius: 5px;
  background: #ffd199;
}

.laptop-visual > div {
  width: 83px;
  height: 53px;
  border-radius: 5px 5px 2px 2px;
}

.laptop-visual > div::after {
  content: "";
  position: absolute;
  right: -13px;
  bottom: -10px;
  left: -13px;
  height: 7px;
  border-radius: 0 0 9px 9px;
  background: #333;
}

.phone-visual > div {
  width: 49px;
  height: 76px;
  padding: 13px 6px 6px;
  border-radius: 9px;
  box-shadow: inset 0 14px var(--primary-dark);
}

.phone-visual span {
  width: 27px;
  margin-left: 0;
}

.speed-visual {
  display: grid;
  place-items: center;
}

.speed-visual > div {
  position: relative;
  width: 76px;
  height: 41px;
  overflow: hidden;
  border: 7px solid var(--primary-dark);
  border-bottom: 0;
  border-radius: 76px 76px 0 0;
}

.speed-visual span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 32px;
  height: 5px;
  border-radius: 6px;
  background: #222;
  transform: rotate(-46deg);
  transform-origin: left center;
}

.support-visual {
  display: grid;
  place-items: center;
}

.support-visual svg {
  width: 76px;
  height: 76px;
  fill: none;
  stroke: var(--primary-dark);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-visual svg rect {
  fill: var(--primary-dark);
  stroke: none;
}

.support-visual svg .support-mic {
  fill: #222;
}

.advantage-proof .proof-support-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
}

.advantage-proof .proof-support-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--primary-dark);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage-proof .proof-support-icon svg rect {
  fill: var(--primary-dark);
  stroke: none;
}

.security-visual {
  display: grid;
  place-items: center;
}

.security-visual > div {
  position: relative;
  width: 62px;
  height: 69px;
  border: 5px solid #222;
  border-radius: 28px 28px 38px 38px;
  background: var(--primary-dark);
  clip-path: polygon(50% 0, 100% 17%, 92% 72%, 50% 100%, 8% 72%, 0 17%);
}

.security-visual span {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 19px;
  height: 18px;
  border-radius: 3px;
  background: #fff;
  transform: translateX(-50%);
}

.security-visual span::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 3px;
  width: 13px;
  height: 15px;
  border: 3px solid #fff;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.advantage-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  padding: 18px 12px;
  border: 1px solid #f2ddc5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(255, 138, 0, 0.08);
}

.advantage-proof > div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-right: 1px solid #f2ddc5;
}

.advantage-proof > div:last-child {
  border-right: 0;
}

.advantage-proof span {
  color: var(--primary-dark);
  font-size: 34px;
  line-height: 1;
}

.advantage-proof p {
  color: #444;
  font-size: 11px;
  line-height: 1.35;
}

.advantage-proof strong {
  display: block;
  color: var(--primary-dark);
  font-size: 13px;
}

.pricing-section .usg-card {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 180px;
  grid-template-areas:
    "title list image"
    "copy list button";
  gap: 8px 30px;
  align-items: center;
  padding: 28px 32px;
}

.pricing-section .usg-card h3 {
  grid-area: title;
  margin: 0;
  text-align: left;
}

.pricing-section .usg-card p {
  grid-area: copy;
  margin: 0;
  text-align: left;
}

.pricing-section .usg-card ul {
  grid-area: list;
  margin: 0;
  columns: 1;
}

.pricing-section .usg-card img {
  grid-area: image;
  height: 100px;
  margin: 0;
}

.pricing-section .usg-card .btn {
  grid-area: button;
}

.usg-showcase {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid #e7ebf0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(8, 25, 45, 0.11);
}

.usg-ai-panel,
.usg-dashboard-panel {
  position: relative;
  min-width: 0;
}

.usg-ai-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(150px, 0.85fr);
  gap: 18px;
  padding: 30px 24px 26px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(12, 99, 172, 0.3), transparent 36%),
    linear-gradient(145deg, #061b30, #020f1e);
}

.usg-kicker {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.usg-ai-panel h3,
.usg-dashboard-panel h3 {
  margin: 0;
  text-align: left;
  line-height: 1.16;
  font-weight: 850;
}

.usg-ai-panel h3 {
  color: #f36300;
  font-size: clamp(20px, 2vw, 28px);
}

.usg-ai-panel p {
  max-width: 380px;
  margin: 13px 0 16px;
  color: #d7e1ec;
  font-size: 12px;
  line-height: 1.55;
}

.usg-ai-panel ul,
.usg-dashboard-panel ul {
  margin: 0;
  padding: 0;
}

.usg-ai-panel li,
.usg-dashboard-panel li {
  position: relative;
  list-style: none;
  padding-left: 23px;
  font-size: 12px;
  line-height: 1.45;
}

.usg-ai-panel li {
  margin-bottom: 5px;
  color: #f1f5f9;
}

.usg-ai-panel li::before,
.usg-dashboard-panel li::before {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 0;
  color: #f36300;
  font-size: 17px;
  font-weight: 900;
}

.usg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.usg-primary-action,
.usg-secondary-action {
  min-height: 38px;
  padding: 10px 17px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.usg-primary-action {
  color: #fff;
  border: 1px solid #f36300;
  background: linear-gradient(135deg, #f36300, #f36300);
  box-shadow: 0 6px 14px rgba(255, 83, 5, 0.2);
}

.usg-secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.12);
}

.usg-ai-visual {
  position: relative;
  min-height: 230px;
  align-self: center;
}

.usg-ai-visual > img {
  position: absolute;
  top: 42px;
  right: 0;
  width: 100%;
  height: 112px;
  margin: 0;
  border: 3px solid #1e2c3b;
  border-radius: 3px;
  object-fit: cover;
}

.usg-ai-badge {
  position: absolute;
  z-index: 2;
  top: -9px;
  left: 4px;
  width: 74px;
  height: 74px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  border: 4px solid #ffb783;
  border-radius: 50%;
  background: #f36300;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.usg-ai-badge strong {
  font-size: 30px;
  line-height: 0.8;
}

.usg-ai-badge small {
  margin-top: 7px;
  font-size: 7px;
  font-weight: 800;
}

.usg-report-sheet {
  position: absolute;
  right: 3px;
  bottom: 5px;
  width: 92%;
  height: 93px;
  padding: 15px 12px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.34);
}

.usg-report-sheet span {
  display: block;
  width: 72%;
  height: 4px;
  margin-bottom: 8px;
  border-radius: 5px;
  background: #d8dde3;
}

.usg-report-sheet span:nth-child(2),
.usg-report-sheet span:nth-child(4) {
  width: 88%;
}

.usg-dashboard-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(260px, 1.3fr) 132px;
  gap: 14px;
  align-items: center;
  padding: 28px 20px 25px 26px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 90, 10, 0.04), transparent 28%),
    #fbfcfe;
}

.usg-dashboard-panel h3 {
  color: #101b2a;
  font-size: clamp(19px, 1.7vw, 27px);
}

.usg-dashboard-panel h3 span {
  color: #f36300;
}

.usg-dashboard-panel ul {
  margin: 18px 0 22px;
}

.usg-dashboard-panel li {
  margin-bottom: 11px;
  color: #364150;
}

.usg-dashboard-visual img {
  width: 100%;
  height: auto;
  margin: 28px 0 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 12px rgba(10, 23, 38, 0.15));
}

.usg-dashboard-stats {
  display: grid;
  gap: 10px;
}

.usg-dashboard-stats > div {
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  box-shadow: 0 4px 13px rgba(24, 39, 58, 0.06);
}

.usg-dashboard-stats .tr-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.usg-dashboard-stats span,
.usg-dashboard-stats small,
.usg-dashboard-stats strong {
  display: block;
}

.usg-dashboard-stats small {
  color: #737d8a;
  font-size: 8px;
  line-height: 1.2;
}

.usg-dashboard-stats strong {
  margin-top: 2px;
  color: #172231;
  font-size: 14px;
  line-height: 1.1;
}

.price-card.popular {
  border: 2px solid var(--primary);
  transform: translateY(-8px);
}

.popular-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 24px;
  border-radius: 999px;
}

.price-card h3,
.usg-card h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.price {
  text-align: center;
  font-size: 27px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.price span {
  font-size: 13px;
  color: #333;
}

.price-card p,
.usg-card p {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.price-card ul,
.usg-card ul {
  margin-bottom: 22px;
}

.price-card li,
.usg-card li {
  list-style: none;
  font-size: 13px;
  margin-bottom: 10px;
  color: #333;
}

.price-card li::before,
.usg-card li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  margin-right: 8px;
}

.usg-card img {
  height: 92px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

/* Testimonials */

.testimonial-grid {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-carousel {
  margin-top: 22px;
  overflow: hidden;
}

.testimonial {
  flex: 0 0 calc((100% - 36px) / 3);
  background: #fff;
  border: 1px solid #f4dec5;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial p {
  color: #444;
  font-size: 14px;
  margin-bottom: 18px;
  flex: 1;
}

.person {
  display: flex;
  gap: 12px;
  align-items: center;
}

.person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong {
  display: block;
  font-size: 14px;
}

.person span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.testimonial-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--primary-dark);
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(243, 108, 0, 0.28);
  transition: 0.2s ease;
}

.testimonial-arrow:hover:not(:disabled) {
  background: #f36300;
  transform: translateY(-1px);
}

.testimonial-arrow:disabled {
  cursor: not-allowed;
  background: #d9823f;
  border-color: #d9823f;
  opacity: 0.72;
}

.testimonial-dots {
  display: flex;
  gap: 7px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #ffd3a0;
  cursor: pointer;
  transition: 0.25s ease;
}

.testimonial-dot.active {
  width: 24px;
  background: var(--primary);
}

/* Samples */

.sample-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.sample-grid div {
  text-align: center;
}

.sample-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #f3dcc3;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
}

.sample-grid strong {
  display: block;
  font-size: 13px;
}

.sample-grid a {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

details {
  background: #fff;
  border: 1px solid #f3ddc4;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(255, 138, 0, 0.07);
}

summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

summary::after {
  content: "+";
  color: var(--primary-dark);
  font-size: 20px;
}

details[open] summary::after {
  content: "−";
}

details p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.support-card {
  background: #fff7ec;
  border: 1px solid #ffd8a6;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  min-height: 270px;
  overflow: hidden;
}

.support-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.support-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.support-card li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

.support-card > .support-illustration {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 105px;
  height: auto;
}

/* Contact */

.contact-section {
  background: #fffaf5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: stretch;
}

.contact-details,
.query-form {
  background: #fff;
  border: 1px solid #f3ddc4;
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-map {
  display: block;
  width: 100%;
  height: 220px;
  margin-bottom: 22px;
  border-radius: 13px;
  object-fit: cover;
  object-position: center;
}

/* Service detail pages */

.service-detail-hero {
  position: relative;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 64% 45%, rgba(0, 86, 174, 0.24), transparent 32%),
    #021325;
  overflow: hidden;
}

.service-detail-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  min-height: 460px;
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #021325 0%, #021325 31%, rgba(2, 19, 37, 0.88) 43%, rgba(2, 19, 37, 0.05) 72%);
  pointer-events: none;
}

.service-detail-intro {
  position: relative;
  z-index: 2;
  padding: 38px 0 45px;
}

.service-detail-eyebrow {
  display: inline-block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.service-detail-intro h1 {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-detail-intro p {
  max-width: 535px;
  color: #e2ebf3;
  font-size: 15px;
  line-height: 1.65;
}

.service-hero-benefits {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.service-hero-benefits > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-hero-benefits .tr-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 8px;
  border: 1px solid var(--primary);
  border-radius: 50%;
}

.service-hero-benefits span,
.service-hero-benefits strong,
.service-hero-benefits small {
  display: block;
}

.service-hero-benefits strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-hero-benefits small {
  margin-top: 3px;
  color: #dce7f1;
  font-size: 9px;
  line-height: 1.3;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-detail-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 72%;
  height: 100%;
}

.service-detail-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.service-ai-badge {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 2%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 5px solid #ffad70;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.service-ai-badge strong {
  font-size: 31px;
  line-height: 1;
}

.service-ai-badge small {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 800;
}

.service-report-preview {
  position: absolute;
  z-index: 2;
  right: -2px;
  bottom: 0;
  width: 75%;
  padding: 25px 28px;
  border-radius: 3px;
  background: #1d2b39;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.service-report-preview span {
  display: block;
  width: 78%;
  height: 5px;
  margin-bottom: 11px;
  border-radius: 5px;
  background: #dbe3eb;
}

.service-report-preview span:nth-child(2) { width: 94%; }
.service-report-preview span:nth-child(3) { width: 80%; }
.service-report-preview span:last-child { width: 62%; margin-bottom: 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.service-overview-card,
.service-benefits-card {
  padding: 32px;
  border: 1px solid #f3ddc4;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-overview-card h2,
.service-benefits-card h2,
.service-detail-steps h2 {
  margin-bottom: 16px;
  font-size: 26px;
  text-align: left;
}

.service-overview-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.service-turnaround {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  background: var(--primary-light);
}

.service-turnaround span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.service-benefits-card ul {
  display: grid;
  gap: 14px;
}

.service-benefits-card li {
  display: flex;
  gap: 10px;
  color: #444;
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}

.service-benefits-card li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.service-detail-steps {
  padding: 50px 0 64px;
  background: #fffaf5;
}

.service-detail-steps h2 {
  text-align: center;
}

.service-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.service-steps-grid > div {
  padding: 28px;
  text-align: center;
  border: 1px solid #f3ddc4;
  border-radius: 18px;
  background: #fff;
}

.service-steps-grid strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
}

.service-steps-grid h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.service-steps-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-detail-cta {
  padding: 54px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #f36300, #f36300);
}

.service-detail-cta h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.service-detail-cta p {
  margin-bottom: 22px;
  opacity: 0.92;
}

.contact-details h3,
.query-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #f5e5d2;
}

.contact-detail > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  background: var(--primary-light);
  border-radius: 12px;
}

.contact-detail strong {
  display: block;
  font-size: 13px;
}

.contact-detail p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.contact-whatsapp {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding: 15px;
  color: #f36300;
  background: transparent;
  border: 1px solid #f36300;
  border-radius: 14px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-whatsapp:hover {
  background: rgba(243, 99, 0, 0.07);
  box-shadow: 0 8px 20px rgba(243, 99, 0, 0.12);
  transform: translateY(-1px);
}

.contact-whatsapp > span {
  font-size: 26px;
}

.contact-whatsapp strong,
.contact-whatsapp small {
  display: block;
}

.contact-whatsapp small {
  margin-top: 2px;
  color: var(--text);
  opacity: 0.78;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label,
.captcha-row label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.captcha-row input {
  width: 100%;
  border: 1px solid #ead8c4;
  border-radius: 10px;
  background: #fff;
  padding: 12px 13px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
}

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

.form-field input:focus,
.form-field textarea:focus,
.captcha-row input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.12);
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.captcha-code {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid #f36300;
  border-radius: 10px;
  background: linear-gradient(135deg, #f36300, #f36300);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 4px;
  user-select: none;
}

.form-status {
  display: none;
  margin-top: 10px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 9px;
  color: #fff;
  background: #20242b;
  border: 1px solid #343a44;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  color: #fff;
  background: #198754;
  border-color: #146c43;
}

.form-status.error {
  color: #fff;
  background: #dc3545;
  border-color: #b02a37;
}

.query-form .btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 120;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(22, 120, 58, 0.35);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: linear-gradient(135deg, #f36300, #ff7b20);
  box-shadow: 0 10px 28px rgba(243, 99, 0, 0.34);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 14px 34px rgba(243, 99, 0, 0.46);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(243, 99, 0, 0.3);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CTA */

.cta {
  background: linear-gradient(90deg, #f36300, #f36300);
  color: #fff;
  margin-top: 30px;
  overflow: hidden;
}

.cta-inner {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 6px;
}

.cta p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
}

.cta img {
  max-height: 210px;
}

/* Footer */

.footer {
  background: #fffaf4;
  padding-top: 38px;
  border-top: 1px solid #f7dfc3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 30px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  height: auto;
}

.footer .footer-logo img {
  width: auto;
  height: 52px;
  max-width: 100%;
}

.footer .footer-about {
  max-width: 330px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

.footer h4 {
  font-size: 15px;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: #444;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer .footer-contact-line {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footer .footer-contact-line a {
  display: inline;
  margin-bottom: 0;
}

.footer .email-icon {
  color: #000;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #f1d5b6;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.qr-box {
  background: #fff;
  border: 1px solid #f3ddc4;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

.qr-box img {
  width: 100px;
  margin: auto auto 10px;
}

.qr-box button {
  background: #111;
  color: #fff;
  border: 0;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.copyright {
  border-top: 1px solid #f0dcc4;
  color: var(--muted);
  font-size: 13px;
  margin-top: 30px;
}

.copyright-inner {
  min-height: 80px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.copyright p {
  margin: 0;
  font-size: 13px;
}

.copyright-copy {
  flex: 0 1 auto;
  text-align: left;
}

.copyright-meta,
.powered-by,
.visitor-counter {
  display: flex;
  align-items: center;
}

.copyright-meta {
  justify-content: flex-end;
  gap: 22px;
}

.powered-by {
  gap: 7px;
  white-space: nowrap;
}

.powered-by .powered-logo {
  width: 120px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  border-radius: 6px;
  color: #242424;
  font-size: 17px;
  letter-spacing: -0.4px;
}

.powered-logo strong {
  color: var(--primary-dark);
  font-size: 19px;
}

.powered-logo span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.visitor-counter {
  gap: 7px;
  white-space: nowrap;
}

.visitor-count {
  display: inline-flex;
  align-items: center;
}

/* Legal pages */

.legal-hero {
  padding: 72px 0 68px;
  text-align: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 138, 0, 0.18), transparent 25%),
    linear-gradient(135deg, #fff4e6 0%, #fffaf5 55%, #fff 100%);
  border-bottom: 1px solid var(--border);
}

.legal-hero .eyebrow {
  display: inline-flex;
  padding: 7px 14px;
  margin-bottom: 16px;
  border: 1px solid #ffd29d;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.legal-hero p {
  color: var(--muted);
  font-size: 15px;
}

.legal-section {
  padding: 60px 0 80px;
  background: #fff;
}

.legal-content {
  width: min(860px, 100%);
  margin: auto;
  padding: 42px clamp(22px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 36px 0 12px;
  color: #262626;
  font-size: 24px;
  line-height: 1.25;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 24px 0 9px;
  font-size: 18px;
}

.legal-content h4 {
  margin: 18px 0 7px;
  font-size: 15px;
}

.legal-content p,
.legal-content li {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content ul,
.legal-content ol {
  margin: 12px 0 18px 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--primary-dark);
  font-weight: 700;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 1100px) {
  .usg-showcase {
    grid-template-columns: 1fr;
  }

  .usg-ai-panel {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.65fr);
  }

  .usg-dashboard-panel {
    grid-template-columns: minmax(190px, 0.8fr) minmax(300px, 1.25fr) 140px;
  }

  .copyright-inner {
    align-items: flex-start;
  }

  .copyright-meta {
    align-items: flex-end;
    flex-direction: column;
    gap: 8px;
  }


  .hero-grid,
  .switch-grid,
  .faq-grid,
  .contact-grid,
  .service-detail-hero-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .rating-grid,
  .benefit-grid,
  .service-grid,
  .features-grid,
  .pricing-grid,
  .testimonial-grid,
  .sample-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .advantage-panel {
    grid-column: auto;
  }

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

  .pricing-section .usg-card {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title image"
      "copy image"
      "list button";
  }

  .process {
    flex-wrap: wrap;
    gap: 18px;
  }

  .line {
    display: none;
  }

  .process-item {
    width: calc(50% - 12px);
  }

  .testimonial {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .top-bar {
    display: none;
  }

  .usg-showcase {
    border-radius: 12px;
  }

  .usg-ai-panel,
  .usg-dashboard-panel {
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
  }

  .usg-ai-visual {
    width: min(290px, 100%);
    min-height: 220px;
    align-self: center;
  }

  .usg-dashboard-copy,
  .usg-dashboard-visual {
    width: 100%;
  }

  .usg-dashboard-visual img {
    margin-top: 12px;
  }

  .usg-dashboard-stats {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usg-actions {
    flex-direction: column;
  }

  .usg-primary-action,
  .usg-secondary-action {
    width: 100%;
  }

  .copyright-inner,
  .copyright-meta {
    align-items: center;
    flex-direction: column;
  }

  .copyright-inner {
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .copyright-copy {
    text-align: center;
  }

  .powered-by {
    flex-wrap: wrap;
    justify-content: center;
  }

  .legal-hero {
    padding: 48px 0 44px;
  }

  .legal-section {
    padding: 32px 0 48px;
  }

  .legal-content {
    padding: 26px 20px;
  }

  .legal-content h2 {
    font-size: 21px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-buttons,
  .cta-buttons,
  .service-detail-actions {
    flex-direction: column;
  }

  .service-detail-hero {
    padding: 0;
  }

  .service-detail-hero-grid {
    display: block;
    min-height: auto;
  }

  .service-detail-visual {
    position: relative;
    width: calc(100% + 32px);
    height: 220px;
    margin-left: -16px;
  }

  .service-detail-hero::after {
    background: linear-gradient(180deg, #021325 0%, #021325 56%, rgba(2, 19, 37, 0.2) 82%);
  }

  .service-detail-intro {
    padding: 34px 0 28px;
  }

  .service-detail-intro h1 {
    font-size: 36px;
  }

  .service-hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .service-hero-benefits > div {
    display: block;
  }

  .service-hero-benefits .tr-icon {
    margin-bottom: 7px;
  }

  .service-overview-card,
  .service-benefits-card {
    padding: 24px 20px;
  }

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

  .hero-stats,
  .rating-grid,
  .benefit-grid,
  .service-grid,
  .features-grid,
  .pricing-grid,
  .testimonial-grid,
  .sample-grid,
  .footer-grid,
  .stat-boxes,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .price-card.popular {
    transform: none;
  }

  .advantage-panel {
    padding: 24px 16px 16px;
  }

  .advantage-panel::after {
    display: none;
  }

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

  .advantage-card h3 {
    min-height: auto;
  }

  .advantage-proof {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 4px 10px;
  }

  .advantage-proof > div {
    padding: 12px 8px;
    border-right: 0;
    border-bottom: 1px solid #f2ddc5;
  }

  .advantage-proof > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .pricing-section .usg-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .pricing-section .usg-card h3,
  .pricing-section .usg-card p {
    text-align: center;
  }

  .pricing-section .usg-card ul {
    margin: 4px 0 12px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding-top: 30px;
  }

  .cta h2 {
    font-size: 30px;
  }

  .support-card > .support-illustration {
    width: 90px;
    opacity: 0.55;
  }

  .testimonial {
    flex-basis: 100%;
  }
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 38px;
  height: 34px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #191919;
  border-radius: 20px;
  transition: 0.3s ease;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1100px) {
  .header-inner {
    height: 72px;
  }

  .logo img {
    height: 50px;
  }

  .hamburger {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-top: 1px solid #f3dfc8;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

  .nav a {
    padding: 14px 12px;
    border-bottom: 1px solid #f7e5d1;
    font-size: 15px;
  }

  .nav a.active::after {
    display: none;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .mobile-actions a {
    border-bottom: 0;
    padding: 12px;
  }

  .menu-toggle:checked ~ .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

@media (max-width: 640px) {
  .logo img {
    height: 42px;
    max-width: calc(100vw - 105px);
  }

  .footer .footer-logo img {
    height: 46px;
    max-width: min(100%, 250px);
  }

  .footer .footer-about {
    max-width: none;
  }

  .mobile-actions {
    grid-template-columns: 1fr;
  }

  .form-row,
  .captcha-row {
    grid-template-columns: 1fr;
  }

  .contact-details,
  .query-form {
    padding: 20px;
  }

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}


/* =========================================================
   Reference-matched homepage masthead (top through statistics)
   ========================================================= */
.home-reference {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.home-reference-desktop {
  position: relative;
  width: 100%;
  padding-bottom: 42px;
  background: #fff;
}

.reference-desktop-hero {
  position: relative;
  min-height: 442px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 66% 52%, rgba(0, 86, 174, 0.26), transparent 34%),
    #021325;
}

.reference-desktop-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 72%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  user-select: none;
}

.reference-desktop-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #021325 0%, #021325 28%, rgba(2, 19, 37, 0.84) 38%, rgba(2, 19, 37, 0.08) 61%);
  pointer-events: none;
}

.reference-desktop-inner {
  position: relative;
  z-index: 2;
  min-height: 442px;
  display: flex;
  align-items: center;
}

.reference-desktop-copy {
  width: 43%;
  padding: 32px 0 70px;
}

.reference-desktop-copy h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(34px, 3vw, 49px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 800;
}

.reference-desktop-copy h1 span,
.reference-desktop-copy > p strong {
  color: #f36300;
}

.reference-desktop-copy > p {
  margin: 0 0 22px;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
}

.reference-desktop-benefits {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.reference-desktop-benefits > div {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.reference-desktop-benefits b {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  color: #f36300;
  border: 1.5px solid #f36300;
  border-radius: 50%;
  font-size: 20px;
}

.reference-desktop-benefits span,
.reference-desktop-stats span {
  display: block;
}

.reference-desktop-benefits strong {
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}

.reference-desktop-benefits small {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 9px;
  line-height: 1.3;
}

.reference-desktop-buttons {
  display: flex;
  gap: 16px;
}

.reference-desktop-buttons a {
  min-width: 140px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reference-desktop-buttons a:first-child {
  border-color: #f36300;
  background: linear-gradient(135deg, #f36300, #f36300);
}

.reference-desktop-buttons a:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
}

.reference-desktop-stats {
  position: relative;
  z-index: 3;
  min-height: 86px;
  margin-top: -43px;
  padding: 12px 10px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  color: #fff;
  background: linear-gradient(90deg, #f36300, #f36300);
  box-shadow: 0 12px 28px rgba(255, 80, 0, 0.2);
}

.reference-desktop-stats > div {
  min-width: 0;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.reference-desktop-stats > div:last-child {
  border-right: 0;
}

.reference-desktop-stats > div > b {
  flex: 0 0 auto;
  color: #fff;
  font-size: 35px;
  line-height: 1;
}

.reference-desktop-stats strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.reference-desktop-stats small {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 9px;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .reference-desktop-copy {
    width: 48%;
  }

  .reference-desktop-benefits {
    gap: 10px;
  }

  .reference-desktop-stats > div {
    padding-inline: 8px;
    gap: 7px;
  }

  .reference-desktop-stats > div > b {
    font-size: 26px;
  }

  .reference-desktop-stats strong {
    font-size: 14px;
  }
}

.home-reference-mobile {
  display: none;
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  .home-reference-desktop {
    display: none;
  }

  .home-reference-mobile {
    display: block;
    background: #fff;
  }

  .reference-mobile-topbar {
    min-height: 34px;
    padding: 7px 18px;
    background: #031426;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 10px;
    font-weight: 600;
  }

  .reference-mobile-topbar a {
    color: #fff;
    white-space: nowrap;
  }

  .reference-mobile-header {
    min-height: 72px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #fff;
    border-bottom: 1px solid #e9edf3;
  }

  .reference-mobile-logo img {
    width: auto;
    height: 48px;
  }

  .reference-mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .reference-mobile-actions a {
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
  }

  .reference-mobile-login {
    color: #081224;
    border: 1px solid #cfd5de;
    background: #fff;
  }

  .reference-mobile-demo {
    color: #fff;
    border: 1px solid #f36300;
    background: linear-gradient(135deg, #f36300, #f36300);
  }

  .reference-mobile-hero {
    position: relative;
    background: radial-gradient(circle at 72% 65%, rgba(0, 91, 181, 0.36), transparent 34%), #031426;
    color: #fff;
    overflow: hidden;
  }

  .reference-mobile-copy {
    position: relative;
    z-index: 2;
    padding: 34px 20px 14px;
  }

  .reference-mobile-copy h1 {
    max-width: 650px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(32px, 8vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    font-weight: 800;
  }

  .reference-mobile-copy h1 span,
  .reference-mobile-copy p strong {
    color: #f36300;
  }

  .reference-mobile-copy > p {
    max-width: 580px;
    margin: 0 0 20px;
    color: #fff;
    font-size: 15px;
    line-height: 1.55;
  }

  .reference-mobile-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 22px;
  }

  .reference-mobile-benefits span {
    min-width: 0;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(2, 18, 35, 0.58);
    font-size: 9px;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 800;
  }

  .reference-mobile-benefits b {
    display: block;
    color: #f36300;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 6px;
  }

  .reference-mobile-benefits small {
    display: block;
    margin-top: 4px;
    color: #d8e4f3;
    font-size: 8px;
    text-transform: none;
    font-weight: 500;
  }

  .reference-mobile-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .reference-mobile-buttons a {
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 7px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.48);
    font-size: 12px;
    font-weight: 750;
  }

  .reference-mobile-buttons a:first-child {
    border-color: #f36300;
    background: linear-gradient(135deg, #f36300, #f36300);
  }

  .reference-mobile-buttons b {
    margin-left: 12px;
    font-size: 17px;
  }

  .reference-mobile-hero > img {
    width: 100%;
    margin-top: 8px;
    display: block;
    filter: saturate(1.06) contrast(1.02);
  }

  .reference-mobile-stats {
    margin: -1px 14px 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 9px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(90deg, #f36300, #f36300);
    box-shadow: 0 12px 25px rgba(255, 80, 0, 0.22);
  }

  .reference-mobile-stats div {
    min-width: 0;
    min-height: 98px;
    padding: 13px 8px 12px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  }

  .reference-mobile-stats div:nth-child(3n) {
    border-right: 0;
  }

  .reference-mobile-stats div:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .reference-mobile-stats b {
    display: block;
    min-height: 25px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
  }

  .reference-mobile-stats strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .reference-mobile-stats span {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 8px;
    line-height: 1.25;
  }
}

@media (max-width: 520px) {
  .reference-mobile-topbar span {
    max-width: 210px;
  }

  .reference-mobile-logo img {
    height: 42px;
    max-width: 185px;
    object-fit: contain;
  }

  .reference-mobile-login {
    display: none !important;
  }

  .reference-mobile-copy {
    padding-top: 28px;
  }

  .reference-mobile-copy h1 {
    font-size: clamp(31px, 9.5vw, 42px);
  }

  .reference-mobile-benefits {
    grid-template-columns: 1fr;
  }

  .reference-mobile-benefits span {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    column-gap: 8px;
  }

  .reference-mobile-benefits b {
    grid-row: 1 / 3;
    margin: 0;
  }

  .reference-mobile-benefits small {
    margin: 0;
  }

  .reference-mobile-buttons a {
    flex: 1 1 100%;
  }

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

  .reference-mobile-stats div,
  .reference-mobile-stats div:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  }

  .reference-mobile-stats div:nth-child(2n) {
    border-right: 0;
  }

  .reference-mobile-stats div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* =========================================================
   TeleRadio infographic icon system
   Uses the supplied orange, 2px rounded-line icon artwork.
   ========================================================= */
.tr-icon {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.tr-icon--white {
  filter: brightness(0) invert(1);
}

.top-bar-contact a .tr-icon {
  width: 16px;
  height: 16px;
}

.reference-desktop-benefits .tr-icon {
  width: 40px;
  height: 40px;
  padding: 4px;
  border: 1.5px solid #f36300;
  border-radius: 50%;
}

.reference-desktop-stats .tr-icon {
  width: 38px;
  height: 38px;
}

.reference-mobile-benefits .tr-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 5px;
}

.reference-mobile-benefits strong {
  display: block;
  color: #fff;
  font-size: 9px;
  line-height: 1.25;
  text-transform: uppercase;
}

.reference-mobile-stats .tr-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 5px;
}

.icon .tr-icon {
  width: 38px;
  height: 38px;
}

/* How TeleRadio works — matched to supplied reference */
.process-section {
  overflow: hidden;
  background: #fff;
}

.process-section .container {
  width: min(1240px, calc(100% - 28px));
}

.process-section h2 {
  margin-bottom: 22px;
}

.process {
  display: grid;
  grid-template-columns: 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr;
  align-items: start;
  gap: 0;
  width: 100%;
  margin-top: 0;
  padding: 2px 0 8px;
}

.process-item {
  position: relative;
  width: auto;
  min-width: 0;
  text-align: center;
}

.process-item::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 43px;
  left: -13px;
  right: -13px;
  height: 1px;
  background: #edf0f4;
}

.process-item:first-child::before {
  left: 50%;
}

.process-item:last-child::before {
  right: 50%;
}

.process-icon {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  margin: 0 auto 9px;
  object-fit: contain;
  background: #fff;
}

.process-title {
  display: flex;
  min-height: 34px;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}

.process-title b {
  display: grid;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  place-items: center;
  border-radius: 50%;
  background: #071426;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.process-title h3,
.process-item h3 {
  margin: 0;
  color: #171717;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.process-item p {
  margin-top: 4px;
  color: #777;
  font-size: 9.5px;
  line-height: 1.35;
}

.process-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  height: 88px;
  place-items: center;
  color: #f36300;
  font-family: Arial, sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
}

/* Reporting services */
.service-card-icon {
  position: absolute;
  z-index: 2;
  top: 76px;
  left: 12px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #ffd5b7;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 7px 18px rgba(255, 90, 0, 0.16);
}

.service-card .service-card-icon .tr-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-card h3 {
  padding-top: 30px;
}

/* Stats, features and advantage icons */
.stat-boxes .tr-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.features-grid .tr-icon {
  width: 42px;
  height: 42px;
}

.advantage-badge .tr-icon {
  width: 22px;
  height: 22px;
}

.advantage-visual {
  display: grid;
  place-items: center;
}

.advantage-visual .tr-icon {
  width: 76px;
  height: 76px;
}

.advantage-proof .tr-icon {
  width: 36px;
  height: 36px;
}

/* FAQ, contact and footer */
.support-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  z-index: 2;
}

.support-card li .tr-icon {
  position: static;
  width: 24px;
  height: 24px;
}

.contact-detail > span .tr-icon {
  width: 25px;
  height: 25px;
}

.contact-whatsapp > span {
  display: block;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  background: transparent;
}

.contact-whatsapp > span .tr-icon {
  width: 25px;
  height: 25px;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-line .tr-icon {
  width: 19px;
  height: 19px;
  margin-top: 2px;
}

/* Service detail pages */
.service-steps-grid .tr-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 10px;
}

.service-steps-grid strong {
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .process {
    width: 1060px;
    grid-template-columns: 125px 25px 125px 25px 125px 25px 125px 25px 125px 25px 125px 25px 125px;
  }

  .process-section .container {
    width: 100%;
    padding: 0 16px 8px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .process-section h2 {
    position: sticky;
    left: 0;
    width: calc(100vw - 32px);
  }
}

@media (max-width: 640px) {
  .reference-mobile-benefits span {
    grid-template-columns: 38px 1fr;
  }

  .reference-mobile-benefits .tr-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .reference-mobile-stats .tr-icon {
    width: 28px;
    height: 28px;
  }

  .process-section {
    padding-top: 30px;
  }

  .process-icon {
    width: 82px;
    height: 82px;
  }

  .process-arrow {
    height: 82px;
  }

  .service-card-icon {
    top: 76px;
  }
}

/* =========================================================
   Custom light / dark theme
   ========================================================= */
:root {
  --surface: #ffffff;
  --surface-soft: #fffaf5;
  --surface-raised: #ffffff;
  --header-background: rgba(255, 255, 255, 0.94);
  --top-banner: #f36300;
  --theme-control-bg: #ffffff;
  --theme-control-border: #f0cfaa;
  color-scheme: light;
}

html[data-theme="dark"] {
  --text: #f2f5f8;
  --muted: #aab4c0;
  --border: #2a3542;
  --bg: #0b1118;
  --white: #ffffff;
  --primary-light: #2b2117;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
  --surface: #121a23;
  --surface-soft: #0f161f;
  --surface-raised: #17212c;
  --header-background: rgba(11, 17, 24, 0.94);
  --top-banner: linear-gradient(90deg, #030507, #121923);
  --theme-control-bg: #18222d;
  --theme-control-border: #354251;
  color-scheme: dark;
}

body,
.site-header,
.top-bar,
.footer,
.nav,
.btn,
.theme-toggle,
.google-box,
.rating-item,
.benefit-card,
.service-card,
.features-grid > div,
.stat-boxes > div,
.price-card,
.usg-card,
.testimonial,
details,
.contact-details,
.query-form,
.legal-content,
.service-overview-card,
.service-benefits-card,
.service-steps-grid > div {
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

body {
  background: var(--surface);
}

.top-bar {
  background: var(--top-banner);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header {
  background: var(--header-background);
  border-bottom-color: var(--border);
}

.header-inner {
  justify-content: flex-start;
  gap: 18px;
}

.nav {
  margin-left: auto;
}

.header-actions {
  margin-left: 2px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dark {
  display: none;
}

html[data-theme="dark"] .logo-light {
  display: none;
}

html[data-theme="dark"] .logo-dark {
  display: block;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  padding: 0;
  border: 1px solid var(--theme-control-border);
  border-radius: 50%;
  color: var(--text);
  background: var(--theme-control-bg);
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(30, 40, 50, 0.08);
}

.theme-toggle:hover {
  color: var(--primary-dark);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.28);
  outline-offset: 3px;
}

.theme-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun {
  display: block;
}

html[data-theme="dark"] .theme-icon-moon {
  display: none;
}

.whatsapp-button-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  object-fit: contain;
}

.reference-desktop-buttons a,
.reference-mobile-buttons a {
  gap: 8px;
}

/* Dark theme surfaces and readable content */
html[data-theme="dark"] body,
html[data-theme="dark"] .home-reference,
html[data-theme="dark"] .home-reference-desktop,
html[data-theme="dark"] .process-section,
html[data-theme="dark"] .legal-section {
  background: var(--bg);
  color: var(--text);
}

html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 78% 44%, rgba(255, 138, 0, 0.15), transparent 24%),
    linear-gradient(180deg, #111923 0%, var(--bg) 100%);
}

html[data-theme="dark"] :is(
  .trust-badge,
  .hero-stats > div,
  .google-box,
  .rating-item,
  .g-logo,
  .benefit-card,
  .service-card,
  .stat-boxes > div,
  .features-grid > div,
  .price-card,
  .usg-card,
  .advantage-badge,
  .advantage-card,
  .device-visual > div,
  .security-visual span,
  .advantage-proof,
  .usg-showcase,
  .usg-report-sheet,
  .usg-dashboard-stats > div,
  .testimonial,
  details,
  .contact-details,
  .query-form,
  .service-overview-card,
  .service-benefits-card,
  .service-steps-grid > div,
  .legal-content,
  .socials a,
  .process-icon,
  .service-card-icon
) {
  background: var(--surface-raised);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .advantage-panel {
  background:
    radial-gradient(circle at 0 0, rgba(255, 138, 0, 0.12), transparent 29%),
    radial-gradient(circle at 100% 100%, rgba(255, 138, 0, 0.08), transparent 30%),
    var(--surface-soft);
  border-color: var(--border);
}

html[data-theme="dark"] .advantage-visual {
  background: linear-gradient(145deg, #2a2119, #171f28);
}

html[data-theme="dark"] .network-visual {
  background: radial-gradient(circle, #2a2119 0%, #171f28 62%, transparent 63%);
}

html[data-theme="dark"] .support-card {
  background: #172018;
  border-color: #2d4932;
}

html[data-theme="dark"] .support-card a {
  color: #fffaf5;
}

html[data-theme="dark"] .support-card a:hover {
  color: #f36300;
}

html[data-theme="dark"] .contact-section,
html[data-theme="dark"] .service-detail-steps {
  background: var(--surface-soft);
}

html[data-theme="dark"] .service-detail-hero,
html[data-theme="dark"] .legal-hero {
  background:
    radial-gradient(circle at 82% 25%, rgba(255, 138, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #111923, #0b1118);
  border-color: var(--border);
}

html[data-theme="dark"] .footer {
  background: #0d141c;
  border-top-color: var(--border);
}

html[data-theme="dark"] .copyright {
  border-top-color: var(--border);
}

html[data-theme="dark"] :is(
  .nav a,
  .trust-badge,
  .hero p,
  .hero-stats span,
  .platform-note,
  .advantage-proof p,
  .usg-dashboard-panel h3,
  .usg-dashboard-stats strong,
  .price span,
  .price-card li,
  .usg-card li,
  .testimonial p,
  .service-benefits-card li,
  .form-field label,
  .captcha-row label,
  .footer a,
  .powered-by .powered-logo,
  .legal-content h2,
  .legal-content p,
  .legal-content li,
  .process-title h3,
  .process-item h3
) {
  color: var(--text);
}

html[data-theme="dark"] :is(
  .section-subtitle,
  .about-copy,
  .benefit-card p,
  .process-item p,
  .service-card p,
  .stat-boxes span,
  .features-grid span,
  .advantage-heading p,
  .advantage-card p,
  .contact-detail p,
  .footer p,
  .service-detail-copy p,
  .legal-content .updated
) {
  color: var(--muted);
}

html[data-theme="dark"] .contact-detail {
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

html[data-theme="dark"] .btn-outline,
html[data-theme="dark"] .reference-mobile-login {
  background: var(--surface-raised);
  color: var(--text);
}

html[data-theme="dark"] .form-field input,
html[data-theme="dark"] .form-field textarea,
html[data-theme="dark"] .captcha-row input {
  background: #0d141c;
  color: var(--text);
  border-color: var(--border);
}

html[data-theme="dark"] .form-field input::placeholder,
html[data-theme="dark"] .form-field textarea::placeholder,
html[data-theme="dark"] .captcha-row input::placeholder {
  color: #7f8b98;
}

html[data-theme="dark"] .process-item::before {
  background: #303b47;
}

html[data-theme="dark"] .hamburger span {
  background: var(--text);
}

html[data-theme="dark"] .powered-by .powered-logo {
  background: #ffffff;
  border-radius: 7px;
  padding: 3px 7px;
}

html[data-theme="dark"] .contact-whatsapp > span {
  background: transparent;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 12px;
  }

  .nav {
    margin-left: 0;
  }

  .header-controls {
    margin-left: auto;
  }

  html[data-theme="dark"] .nav {
    background: #111923;
    border-top-color: var(--border);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
  }

  html[data-theme="dark"] .nav a {
    border-bottom-color: var(--border);
  }
}

@media (max-width: 520px) {
  .theme-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .logo img {
    height: 45px;
    max-width: 205px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .site-header,
  .top-bar,
  .footer,
  .nav,
  .btn,
  .theme-toggle,
  .back-to-top {
    transition: none;
  }
}

@media (max-width: 700px) {
  .top-bar-inner {
    min-height: 0;
    padding: 7px 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

  .top-bar-inner > span {
    width: 100%;
    font-size: 10px;
    line-height: 1.3;
  }

  .top-bar-contact {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 14px;
  }

  .top-bar-contact a {
    font-size: 10px;
    white-space: nowrap;
  }
}
