/*
Theme Name: Plain Connect
Theme URI: https://plainconnect.co.za
Author: Plain Connect
Author URI: https://plainconnect.co.za
Description: Custom WordPress theme for Plain Connect - Connecting You. Solving Your Tech.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: plain-connect
Tags: business, responsive, custom-colors, custom-logo, one-column, two-columns
*/

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --orange:       #E8511A;
  --orange-dark:  #C94410;
  --navy:         #1A2B4A;
  --navy-dark:    #111E35;
  --blue:         #1D4ED8;
  --blue-light:   #2563EB;
  --white:        #FFFFFF;
  --gray-50:      #F8F9FA;
  --gray-100:     #F1F3F5;
  --gray-300:     #DEE2E6;
  --gray-500:     #6C757D;
  --gray-700:     #3D4451;
  --text-dark:    #1A2B4A;
  --text-body:    #4A5568;

  --font-main: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-btn:  0 4px 14px rgba(232,81,26,0.35);
  --transition:  0.25s ease;

  --container: 1200px;
  --gutter: 24px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* =========================================================
   CONTAINER
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   GOOGLE FONTS IMPORT (loaded via functions.php wp_enqueue)
   ========================================================= */

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;
  position: relative;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}

.logo-text .brand-name span {
  color: var(--orange);
}

.logo-text .brand-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  text-transform: uppercase;
  border-top: 1px solid var(--gray-300);
  padding-top: 2px;
  margin-top: 2px;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.current {
  color: var(--orange);
}

.main-nav a.current::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: var(--white) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(232,81,26,0.45);
  transform: translateY(-1px);
}

.btn-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--gray-100); color: var(--orange); }
.mobile-nav .btn-cta { margin-top: 8px; justify-content: center; }

/* =========================================================
   HERO SECTION
   ========================================================= */
#hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 36px 0 0;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding-bottom: 36px;
}

/* Hero Left */
.hero-content { position: relative; z-index: 2; }

.hero-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}

.hero-headline .accent { color: var(--orange); }

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 20px;
  max-width: 440px;
  line-height: 1.65;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon.orange { background: var(--orange); }
.badge-icon.blue   { background: var(--blue); }

.badge-icon svg { width: 12px; height: 12px; color: white; }

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,81,26,0.45);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary svg,
.btn-outline svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Hero Right */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

/* Decorative Arcs */
.arc-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
}

.arc {
  position: absolute;
  border-radius: 50%;
  border: 50px solid transparent;
}

.arc-orange {
  width: 340px;
  height: 340px;
  top: 40px;
  left: 40px;
  border-top-color: var(--orange);
  border-right-color: var(--orange);
  transform: rotate(-30deg);
}

.arc-blue {
  width: 260px;
  height: 260px;
  bottom: 50px;
  right: 50px;
  border-bottom-color: var(--blue);
  border-left-color: var(--blue);
  transform: rotate(-30deg);
}

/* Router Image */
.hero-img-wrap {
  position: relative;
  z-index: 2;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-100);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-300) 100%);
  flex-direction: column;
  gap: 12px;
  color: var(--gray-500);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

.hero-img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

/* Logo Card Overlay */
.logo-card {
  position: absolute;
  bottom: 20px;
  right: -20px;
  z-index: 5;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.logo-card-icon { width: 44px; height: 44px; }
.logo-card-icon svg { width: 100%; height: 100%; }

.logo-card-text .card-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-card-text .card-brand span { color: var(--orange); }

.logo-card-text .card-tag {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid var(--gray-300);
  padding-top: 2px;
  margin-top: 2px;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
#services {
  background: var(--gray-50);
  padding: 80px 0;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 auto 48px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: rgba(232,81,26,0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* =========================================================
   TRUST BAR / FOOTER
   ========================================================= */
#trust-bar {
  background: var(--navy);
  padding: 36px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}

.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.trust-icon.orange { background: rgba(232,81,26,0.2); }
.trust-icon.blue   { background: rgba(29,78,216,0.3); }
.trust-icon svg    { width: 22px; height: 22px; }

.trust-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.trust-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* =========================================================
   SITE FOOTER
   ========================================================= */
#site-footer {
  background: var(--navy-dark);
  padding: 18px 0;
  text-align: center;
}

#site-footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =========================================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-headline { font-size: 2.4rem; }

  .arc-wrapper { width: 420px; height: 420px; }
  .arc-orange  { width: 340px; height: 340px; }
  .arc-blue    { width: 260px; height: 260px; }
  .hero-img-wrap { width: 280px; height: 280px; }

  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-right: none; }
}

/* =========================================================
   RESPONSIVE — MOBILE (max 640px)
   ========================================================= */
@media (max-width: 640px) {
  :root { --gutter: 16px; }

  /* Header */
  .main-nav,
  .btn-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #hero { padding: 24px 0 0; min-height: auto; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding-bottom: 24px;
  }

  .hero-content { order: 1; }
  .hero-visual  { order: 2; min-height: 300px; }

  .hero-headline { font-size: 2rem; }

  .trust-badges { justify-content: center; }

  .hero-buttons { justify-content: center; }

  .hero-sub { margin: 0 auto 28px; }

  /* Visual */
  .hero-img-wrap { width: 180px; height: 180px; }
  .arc-wrapper   { width: 320px; height: 320px; }
  .arc-orange    { width: 260px; height: 260px; }
  .arc-blue      { width: 180px; height: 180px; }
  .logo-card     { right: 0; bottom: 0; min-width: 160px; padding: 12px 14px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Trust bar */
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-item { border-right: none; padding-right: 0; }

  /* Section spacing */
  #services { padding: 60px 0; }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================================= */
@media (max-width: 480px) {
  .hero-headline { font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr; }

  .btn-primary,
  .btn-outline { width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; }
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */

@keyframes wa-pulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(37,211,102,0.55); }
  70%  { transform: scale(1.06); box-shadow: 0 0 0 16px rgba(37,211,102,0);   }
  100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(37,211,102,0);    }
}

@keyframes wa-label-in {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0);    }
}

.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 12px;

  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px 14px 18px;
  text-decoration: none;

  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;

  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.12);
  animation: wa-pulse 2.4s ease-out infinite;
  transition: background var(--transition), box-shadow var(--transition),
              transform var(--transition);

  /* Navy accent border ties it to the theme */
  border: 2px solid rgba(26,43,74,0.15);
}

.wa-float:hover {
  background: #20bc5a;
  box-shadow: 0 10px 32px rgba(37,211,102,0.6), 0 2px 8px rgba(0,0,0,0.14);
  transform: translateY(-3px);
  animation-play-state: paused;
  color: #fff;
}

.wa-float:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
}

.wa-float__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.wa-float__label {
  animation: wa-label-in 0.4s ease 0.2s both;
}

/* Mobile: collapse to circle icon, expands on hover via JS */
@media (max-width: 600px) {
  .wa-float {
    bottom: 24px;
    right: 20px;
    padding: 15px;
    border-radius: 50%;
  }
  .wa-float__label { display: none; }
  .wa-float__icon  { width: 28px; height: 28px; }
}

/* =========================================================
   ABOUT US SECTION
   ========================================================= */
#about {
  background: var(--white);
  padding: 80px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

/* ── Left visual column ───────────────────────────────── */
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.about-card {
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.about-card svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.about-card span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.about-card--orange { background: var(--orange); }
.about-card--navy   { background: var(--navy); }

.about-stat {
  grid-column: 1 / -1;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gray-300);
}

.about-stat strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
}

.about-stat strong:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

/* ── Right copy column ────────────────────────────────── */
.about-content .section-label,
.about-content .section-title { text-align: left; }

.about-title { margin-bottom: 8px; }
.about-title .accent { color: var(--orange); }

.about-divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 0 28px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.about-body p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
}

.about-goal {
  font-weight: 600;
  color: var(--navy) !important;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin-top: 4px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner { gap: 40px; }
}

@media (max-width: 768px) {
  #about { padding: 60px 0; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual { order: 2; }
  .about-content { order: 1; }

  .about-content .section-label,
  .about-content .section-title { text-align: center; }

  .about-divider { margin: 0 auto 28px; }

  .about-body p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .about-stat { flex-direction: column; gap: 12px; }
  .about-stat strong::after { display: none; }
  .about-cta { width: 100%; justify-content: center; }
}

/* =========================================================
   TRUST SIGNALS BAR
   ========================================================= */
#trust-signals {
  background: var(--navy);
  padding: 0;
  border-top: 3px solid var(--orange);
}

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

.ts-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.ts-item:last-child { border-right: none; }

.ts-item:hover { background: rgba(255,255,255,0.04); }

.ts-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232,81,26,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.ts-icon svg { width: 20px; height: 20px; }

.ts-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ts-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.ts-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .trust-signals-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-item:nth-child(2) { border-right: none; }
  .ts-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ts-item:nth-child(3),
  .ts-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 640px) {
  .trust-signals-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-item { padding: 14px 16px; gap: 10px; }
  .ts-icon { width: 32px; height: 32px; border-radius: 8px; }
  .ts-icon svg { width: 16px; height: 16px; }
  .ts-text strong { font-size: 0.75rem; }
  .ts-text span { display: none; }
}
