@charset "UTF-8";
/*!
Theme Name: TTSA
Theme URI: https://www.ttsa.gr
Author: Nick Sotiriadis
Author URI: https://www.nicksotiriadis.gr
Description: TTSA Theme 2.0
Version: 2.0.0
Text Domain: ttsa
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --bg:      #050a12;
  --surface: #0c1422;
  --surface2:#111d2e;
  --accent:  #00c6ff;
  --accent2: #0072ff;
  --white:   #f0f4fa;
  --muted:   #7a8fa8;
  --border:  rgba(0, 198, 255, .15);
  --nav-h:   72px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* =========================================================
   NAVIGATION
   ========================================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(5, 10, 18, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img {
  width: 120px; height: auto;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > li > a {
  font-size: 12.5px; font-weight: 500; letter-spacing: .7px;
  text-transform: uppercase; color: var(--muted);
  transition: color .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; user-select: none; }
.nav-dropdown > a .caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .25s;
  flex-shrink: 0;
}
.nav-dropdown.open > a .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%; transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 0 12px;
  min-width: 280px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
  z-index: 300;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.dd-group-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--accent);
  padding: 12px 20px 6px;
}
.dd-group-label:first-child { padding-top: 4px; }
.nav-dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--muted);
  transition: color .15s, background .15s;
}
.nav-dropdown-menu li a:hover { color: var(--white); background: rgba(0, 198, 255, .06); }
.nav-dropdown-menu li a.active { color: var(--accent); }
.dd-divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* Nav CTA */
.nav-cta {
  background: linear-gradient(90deg, var(--accent2), var(--accent)) !important;
  color: var(--bg) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.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 menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(5, 10, 18, .97);
  backdrop-filter: blur(16px);
  z-index: 190;
  padding: 20px 28px 40px;
  flex-direction: column;
  overflow-y: auto;
}
@media (max-width:1024px) {
  .mobile-menu.open { display: flex; }
}
.mob-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  padding: 18px 0 8px;
}
.mob-sub-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  padding: 14px 0 4px;
}
.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-size: 16px;
  font-family: 'Sora', sans-serif; font-weight: 300;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}
.mobile-menu a:last-child { border-bottom: none; }

/* WP admin bar offset */
#wpadminbar + nav { top: 32px; }
@media (max-width: 782px) {
  #wpadminbar + nav { top: 46px; }
}
/* Admin bar becomes absolute below 600px — no fixed offset needed */
@media (max-width: 600px) {
  #wpadminbar + nav { top: 0; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: var(--bg);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 6px;
  transition: opacity .2s, transform .2s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 6px;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.ps-2 {
  padding-left:28px;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg);
  color: var(--white);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 16px 36px; border-radius: 6px;
  white-space: nowrap;
  transition: opacity .2s;
  flex-shrink: 0;
}
.btn-dark:hover { opacity: .85; }

/* =========================================================
   SECTIONS / LAYOUT
   ========================================================= */
section { padding: 80px 80px; }
/* .page-hero-img + section, .press-single-img + section { padding: 40px 80px 80px; } */

.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--accent);
}
.section-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}
.section-heading strong { font-weight: 600; }
.section-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 36px;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 80px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .28;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(5, 10, 18, .92) 0%,
    rgba(0, 72, 150, .22) 60%,
    rgba(0, 198, 255, .06) 100%);
}
.hero-orb {
  position: absolute;
  top: 18%; right: 8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0, 114, 255, .2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%       { transform: scale(1.12); opacity: 1; }
}
.hero-content {
  position: relative;
  padding: 0 80px;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================================
   HOME ABOUT
   ========================================================= */
.home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--surface);
  padding: 80px 80px;
}
.home-about-stat-strip {
  display: flex; gap: 44px;
  margin-top: 48px; padding-top: 48px;
  border-top: 1px solid var(--border);
}
.home-stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 34px; font-weight: 600;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.home-stat span { font-size: 13px; color: var(--muted); }
.about-globe {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
}
.about-globe img {
  width: 100% !important; 
  height: 100% !important;
  /* object-fit: cover !important; */
}
@media (max-width:12799.98px) {
  .about-globe {
    aspect-ratio: 4/3;
  }
}

/* =========================================================
   THREE PILLARS
   ========================================================= */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px;
}
.pillar-card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.pillar-card:hover { background: var(--surface2); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pillar-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--accent); }
.pillar-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px; font-weight: 600;
  margin-bottom: 12px; line-height: 1.3;
}
.pillar-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.pillar-sub-items { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
.pillar-sub-items a {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.pillar-sub-items a::before { content: '›'; color: var(--accent); font-size: 15px; }
.pillar-sub-items a:hover { color: var(--white); }

/* =========================================================
   REGIONAL FOOTPRINT
   ========================================================= */
.footprint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.region-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  background: var(--surface2);
  position: relative; overflow: hidden;
}
.region-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
}
.region-card.europe::after  { background: linear-gradient(180deg, #00c6ff, #0072ff); }
.region-card.nafrica::after { background: linear-gradient(180deg, #f5a623, #e88a00); }
.region-card.mideast::after { background: linear-gradient(180deg, #4a9eff, #1e5fcc); }
.region-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 600;
  margin-bottom: 8px; color: var(--white);
}
.region-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.region-card.europe .region-label  { color: #00c6ff; }
.region-card.nafrica .region-label { color: #f5a623; }
.region-card.mideast .region-label { color: #4a9eff; }
.region-verticals { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.region-tag {
  font-size: 11px; color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 4px;
}

/* =========================================================
   STRATEGIC PARTNERSHIPS
   ========================================================= */
.partner-strip { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 40px; align-items: center; }
.partner-badge {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 22px;
  background: var(--surface2);
  font-size: 12px; font-weight: 600;
  color: var(--muted); letter-spacing: .3px;
  transition: border-color .2s, color .2s;
}
.partner-badge:hover { border-color: var(--accent); color: var(--white); }
.partner-cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  margin-top: 28px; margin-bottom: 12px;
  width: 100%;
}

/* =========================================================
   PRESS CARDS
   ========================================================= */
.home-press-grid,
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.press-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  background: var(--surface2);
  transition: border-color .25s, transform .25s;
}
.press-card:hover { border-color: rgba(0, 198, 255, .35); transform: translateY(-4px); }
.press-card-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  filter: brightness(.8) saturate(.7);
  transition: filter .25s;
}
.press-card:hover .press-card-img { filter: brightness(.95) saturate(1); }
.press-card-body { padding: 26px; }
.press-card-date {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 500; margin-bottom: 10px;
}
.press-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15.5px; font-weight: 500;
  line-height: 1.45; margin-bottom: 10px;
  color: var(--white);
}
.press-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 100%);
  padding: 80px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  color: var(--bg);
  max-width: 520px;
}
.cta-band h2 strong { font-weight: 700; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: var(--surface); padding: 80px 80px 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; margin-top: 14px;
  max-width: 270px;
}
.footer-brand .legal {
  font-size: 11.5px;
  color: rgba(122, 143, 168, .55);
  margin-top: 12px; line-height: 1.55;
}
.footer-col h4 {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { display:block; font-size: 13.5px; color: var(--muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-office { margin-bottom: 22px; }
.footer-office p { font-size: 13px; color: var(--muted); line-height: 1.75; }
.footer-office a { color: var(--muted); transition: color .2s; }
.footer-office a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p,
.footer-bottom a { font-size: 12px; color: rgba(122, 143, 168, .5); }
.footer-bottom a:hover { color: var(--accent); }

/* =========================================================
   CONTENT PAGES (single, about, etc.)
   ========================================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  padding-left: 80px; padding-right: 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px; flex-wrap:wrap;
}
.breadcrumb a { color: var(--muted); transition: color .2s; display:inline-block; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--muted); }
.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300; line-height: 1.1; letter-spacing: -.5px;
  margin-bottom: 16px;
}
.page-hero h1 strong { font-weight: 600; }
.page-hero .sub { font-size: 18px; color: var(--muted); max-width: 640px; line-height: 1.7; }
.page-hero-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--accent);
}
.page-hero-img {
  width: 100%; max-height: 380px;
  object-fit: cover; object-position: center;
  display: block;
  filter: brightness(.55) saturate(.7);
}
.press-release-date {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.press-release-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 40px) !important;
  font-weight: 300; line-height: 1.2; letter-spacing: -.5px;
  margin-bottom: 36px;
}
.press-single-img {
  width: 100%;
  max-width:1024px;
  height:600px;
  border-radius: 8px;
  margin: 0 auto 40px;
  object-fit: cover;
  filter: brightness(.8) saturate(.8);
}
.press-release-back { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }

@media (min-width:2400px) {
.container-wrapper { width:80%; margin:0 auto;}
}
.container { width: 100%; margin: 0 auto; }
.container-press-single { max-width: 960px; }
.container-service { max-width: 1200px; }

/* =========================================================
   MORE STRIP (service pages)
   ========================================================= */
.more-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 80px;
}
.more-strip-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.more-strip-links { display: flex; flex-wrap: wrap; gap: 12px; }
.more-strip-links a {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
  padding: 8px 18px; border-radius: 6px;
  transition: border-color .2s, color .2s;
}
.more-strip-links a:hover { border-color: var(--accent); color: var(--white); }

.content-wrap { max-width: 820px; }
.content-wrap h2:not(.section-heading) {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600; margin: 40px 0 12px; color: var(--white);
}
.content-wrap h2:first-child {
  margin-top:0;
}
.content-wrap h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px; font-weight: 600;
  margin: 32px 0 10px; color: var(--accent);
}
.content-wrap p { font-size: 15.5px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.content-wrap ul { margin: 12px 0 20px 0; display: flex; flex-direction: column; gap: 8px; }
.content-wrap ul li {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; padding-left: 20px; position: relative;
}
.content-wrap ul li::before { content: '›'; position: absolute; left: 0; color: var(--accent); font-size: 16px; }

/* =========================================================
   DATA TABLE
   ========================================================= */
.data-table {
  width: 100%; border-collapse: collapse;
  margin: 28px 0; font-size: 13px;
  overflow-x: auto; display: block;
}
.data-table th {
  background: var(--surface2); color: var(--accent);
  font-weight: 600; letter-spacing: .5px;
  padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 10px 14px; color: var(--muted);
  border-bottom: 1px solid rgba(0, 198, 255, .06);
  white-space: nowrap;
}
.data-table tr:hover td { background: rgba(0, 198, 255, .03); }

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 48px;
}
.pagination .page-item a,
.pagination .page-item span {
  color: var(--muted);
  display: inline-block;
  width: 32px; height: 32px;
  line-height: 32px; text-align: center;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.pagination .page-item a:hover { color: var(--white); }
.pagination .page-item.active span {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: var(--bg);
}

/* =========================================================
   CF7 FORMS
   ========================================================= */
.wpcf7 .wpcf7-form { margin-bottom: 0; }
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap { display: block; margin-bottom: 0.5rem; }
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  text-align: right; color: #f00;
  font-size: 0.85rem; padding: 0.25rem 0 0;
}
.wpcf7 .wpcf7-form textarea { height: 120px; }
.wpcf7 .wpcf7-form input:not([type="submit"]) { height: 50px; }
@media (max-width: 575.98px) {
  .wpcf7 .wpcf7-form input[type="submit"] { display: block; width: 100%; }
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  border-color: #46b450 !important;
  background: #46b450; color: #fff;
  border-radius: 5px; padding: 10px;
  margin: 2rem 0 0 !important; font-size: 0.9rem;
}
.wpcf7 form.invalid .wpcf7-response-output { display: none !important; }
.wpcf7 .wpcf7-not-valid { box-shadow: inset 5px 0 0 0 red; }
.wpcf7 .ajax-loader, .wpcf7 .wpcf7-spinner { display: none !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1280px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .home-about    { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 1080px) {
  .pillar-grid   { grid-template-columns: repeat(2, 1fr); }
  .pillar-card:last-child { grid-column: 1 / -1; }
  .pillars-label,
  .pillars-heading,
  .pillars-body { text-align: left !important; }
  .pillars-label { justify-content: flex-start !important; }
  .pillars-heading { margin: 0 0 12px !important; }
  .pillars-body { margin: 0 !important; }
  .footprint-grid{ grid-template-columns: 1fr; }
  .home-press-grid,  
}
@media (max-width: 1024px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 56px 20px; }
  .page-hero-img + section, .press-single-img + section { padding: 26px 20px 56px; }
  .home-about { padding: 56px 20px; }
  .page-hero  { padding: calc(var(--nav-h) + 40px) 20px 40px; }
  .hero-content { padding: 0 20px; }
  .hero h1 { font-size: 34px; }
  .divider { margin: 0 20px; }

  .pillar-grid  { grid-template-columns: 1fr; }
  .home-press-grid,
  .press-grid { grid-template-columns: 1fr; }
  .cta-band     { flex-direction: column; padding: 56px 20px; }
  .footer-top    { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 3; }
  footer        { padding: 56px 20px 32px; }
  .footer-bottom{ flex-direction: column; gap: 10px; text-align: center; }
  .home-about-stat-strip { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 767.98px) {
  .footer-top    { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: span 1; }
}

/* =========================================================
   AI SERVICES — page-20
   ========================================================= */
.ai-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ai-domain-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  background: var(--surface2);
  transition: border-color .25s;
}
.ai-domain-card:hover { border-color: rgba(0, 198, 255, .35); }
.ai-domain-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.ai-domain-card ul { display: flex; flex-direction: column; gap: 6px; }
.ai-domain-card ul li {
  font-size: 13px; color: var(--muted);
  padding-left: 16px; position: relative; line-height: 1.55;
}
.ai-domain-card ul li::before { content: '›'; position: absolute; left: 0; color: var(--accent); }

.ai-phase-row { display: flex; gap: 20px; margin-top: 40px; }
.ai-phase {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  background: var(--surface2);
}
.ai-phase-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.ai-phase h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--white); margin-bottom: 6px;
}
.ai-phase .period { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.ai-phase ul { display: flex; flex-direction: column; gap: 5px; }
.ai-phase ul li {
  font-size: 13px; color: var(--muted);
  padding-left: 14px; position: relative;
}
.ai-phase ul li::before { content: '›'; position: absolute; left: 0; color: var(--accent); }

.ai-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.ai-pillar {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  background: var(--surface2);
}
.ai-pillar-icon { font-size: 22px; margin-bottom: 8px; }
.ai-pillar span { font-size: 12px; color: var(--muted); line-height: 1.4; display: block; }

.ai-stat-strip {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.ai-stat-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
  background: var(--surface2);
  flex: 1;
  min-width: 180px;
}
.ai-stat-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 36px; font-weight: 600;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.ai-stat-card p { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .ai-domain-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-phase-row   { flex-direction: column; }
  .ai-pillars     { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .ai-domain-grid { grid-template-columns: 1fr; }
  .ai-pillars     { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   ABOUT PAGE — page-9
   ========================================================= */
.about-numbers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.about-num-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  background: var(--surface2);
}
.about-num-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 32px; font-weight: 600;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.about-num-card p { font-size: 13px; color: var(--muted); margin: 0; }

/* =========================================================
   CONTACT PAGE — page-11 / CF7
   ========================================================= */

/* Wrap CF7 output — styles all generated form fields */
.cf7-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Labels */
.cf7-wrapper .wpcf7-form p {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}
.cf7-wrapper .wpcf7-form label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent);
}

/* Inputs, selects, textareas */
.cf7-wrapper .wpcf7-form input:not([type="submit"]),
.cf7-wrapper .wpcf7-form select,
.cf7-wrapper .wpcf7-form textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.cf7-wrapper .wpcf7-form input:not([type="submit"]):focus,
.cf7-wrapper .wpcf7-form select:focus,
.cf7-wrapper .wpcf7-form textarea:focus {
  border-color: var(--accent);
}
.cf7-wrapper .wpcf7-form select option { background: var(--surface2); }
.cf7-wrapper .wpcf7-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Validation error state */
.cf7-wrapper .wpcf7-not-valid {
  border-color: #e05555 !important;
  box-shadow: inset 3px 0 0 #e05555;
}
.cf7-wrapper .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #e05555;
  margin-top: 4px;
  display: block;
}

/* Submit button — inherits .btn-primary look */
.cf7-wrapper .wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  width: auto;
}
.cf7-wrapper .wpcf7-form input[type="submit"]:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* Response output messages */
.cf7-wrapper .wpcf7-response-output {
  margin: 8px 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  border: none !important;
}
/* Success */
.cf7-wrapper .wpcf7-mail-sent-ok {
  background: rgba(0, 198, 100, .12) !important;
  color: #4ecb80 !important;
  border: 1px solid rgba(0, 198, 100, .25) !important;
}
/* Error / invalid */
.cf7-wrapper .wpcf7-mail-sent-ng,
.cf7-wrapper .wpcf7-aborted,
.cf7-wrapper .wpcf7-validation-errors,
.cf7-wrapper .wpcf7-acceptance-missing {
  background: rgba(224, 85, 85, .1) !important;
  color: #e05555 !important;
  border: 1px solid rgba(224, 85, 85, .25) !important;
}
/* Spam */
.cf7-wrapper .wpcf7-spam-blocked {
  background: rgba(245, 166, 35, .1) !important;
  color: #f5a623 !important;
  border: 1px solid rgba(245, 166, 35, .25) !important;
}

/* Hide spinner */
.cf7-wrapper .wpcf7-spinner { display: none !important; }

/* Office block transparent variant */
.office-block--transparent {
  background: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
}
.office-block--transparent h3 {
  font-size: 14px !important;
  color: var(--accent) !important;
}

/* =========================================================
   ABOUT PAGE LAYOUT
   ========================================================= */
.about-body { padding: 80px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.stat-strip {
  display: flex;
  gap: 44px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 34px; font-weight: 600;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.stat span { font-size: 13px; color: var(--muted); }

/* Timeline */
.timeline { margin-top: 40px; }
.timeline-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.timeline-year {
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--accent);
  min-width: 100px;
  padding-top: 3px;
  flex-shrink: 0;
}
.timeline-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.timeline-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* =========================================================
   CONTACT PAGE LAYOUT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-offices h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}
.office-block {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.office-block:last-child { margin-bottom: 0; }
.office-block p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.office-block a { color: var(--muted); transition: color .2s; }
.office-block a:hover { color: var(--accent); }

/* =========================================================
   RESPONSIVE — about + contact
   ========================================================= */
@media (max-width: 1080px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 1024px) {
  .about-body { padding: 56px 20px; }
  .stat-strip  { gap: 24px; flex-wrap: wrap; }
}

/* =========================================================
   REAL ESTATE & FINTECH — page-realestate
   ========================================================= */
.refi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
.refi-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface2);
}
.refi-card--full { grid-column: 1 / -1; }
.refi-card-body { padding: 32px; }
.refi-card-cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.refi-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}
.refi-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.75; margin-bottom: 14px;
}
.refi-card p:last-of-type { margin-bottom: 0; }

.location-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.location-tag {
  font-size: 11px; color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 4px; letter-spacing: .3px;
}

.refi-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 60px 0;
}

.highlight-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 32px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.highlight-item { flex: 1; min-width: 140px; }
.highlight-item .num {
  font-family: 'Sora', sans-serif;
  font-size: 26px; font-weight: 600;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.highlight-item .lbl { font-size: 12px; color: var(--muted); }

.refi-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  filter: brightness(.65) saturate(.75);
  display: block;
}
.refi-card-img--tall { height: 260px; }
  width: 100%; height: 280px;
  object-fit: cover; border-radius: 12px;
  filter: brightness(.65) saturate(.7);
}
.refi-fintech-placeholder {
  width: 100%; height: 280px;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
}

/* =========================================================
   FRONT PAGE UTILITIES
   ========================================================= */
.section-surface { background: var(--surface); }

.pillars-label { justify-content: center; margin-bottom: 8px; }
.pillars-heading { text-align: center; margin: 0 auto 12px; max-width: 600px; }
.pillars-body { text-align: center; margin: 0 auto; }

.region-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

.press-heading-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }

@media (max-width: 900px) {
  .refi-grid { grid-template-columns: 1fr; }
  .refi-card--full { grid-column: 1; }
}
@media (max-width: 600px) {
  .highlight-strip { flex-direction: column; gap: 20px; }
}
