/* ============================================================
   CodeVera Tech – Complete Style Guide (GeorgeTech Inspired)
   White · Blue · Red Theme
   ============================================================ */

/* ==========================
   IMPORT FONT
   ========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ==========================
   CSS VARIABLES (THEME)
   ========================== */
:root {
  /* Primary Brand Colors */
  --primary: #1E40AF;
  --primary-light: #3B82F6;
  --primary-dark: #1E3A8A;

  /* Red Accent (GeorgeTech inspired) */
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-light: #EF4444;

  /* Blue Accents */
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;

  /* Neutrals */
  --gtblack: #0F172A;
  --text: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border: #E2E8F0;
  --gt-surface: #F1F5F9;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 999px;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==========================
   RESET & BASE
   ========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ==========================
   UTILITY CLASSES
   ========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.bg-accent-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #1D4ED8;
}

.bg-accent-red {
  background: rgba(220, 38, 38, 0.1);
  color: #B91C1C;
}


/* ==========================
   GLASS COMPONENTS
   ========================== */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.glass-step {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.glass-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.15);
}

/* ==========================
   BUTTONS
   ========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  border-radius: var(--radius-full);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--blue-500));
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.35);
}

.btn-red {
  background: var(--red);
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.35);
}

.btn-outline-glass {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 600;
  border-radius: var(--radius-full);
}

.btn-outline-glass:hover {
  background: var(--red);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* ==========================
   HEADER / NAVBAR
   ========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gtblack);
  letter-spacing: -0.02em;
}

.logo-text .tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.03);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.desktop-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.7);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.desktop-nav a:hover {
  background: var(--red);
  color: var(--bg-white);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--bg-white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.btn-whatsapp:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Hamburger (GeorgeTech style) */
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hamburger:hover {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: var(--shadow-md);
}

.hamburger span {
  display: block;
  width: 16px;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.hamburger span + span {
  margin-top: 4px;
}

/* Animated X when open */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(2.5px, 2.5px);
  width: 18px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
  width: 18px;
}

/* ==========================
   MOBILE MENU
   ========================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  right: 16px;
  width: 220px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 8px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--red);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.mobile-menu a:hover {
  background: rgba(220, 38, 38, 0.06);
  color: var(--red);
}

/* ==========================
   HERO SECTION
   ========================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 30%, #EFF6FF 100%);
  padding-top: 80px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -15%;
  left: -5%;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.08);
  filter: blur(140px);
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 45%;
  height: 45%;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.06);
  filter: blur(120px);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 48px 48px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  width: 100%;
}

.hero-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 48px;
}

.hero-text {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--red);
  background: rgba(220, 38, 38, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(220, 38, 38, 0.12);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--gtblack);
}

.hero-title .highlight {
  background: linear-gradient(to right, var(--red), var(--red-light), #FCA5A5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 24px;
}

.hero-location-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border: none;
  color: var(--bg-white);
  font-size: 0.85rem;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .btn-primary {
  padding: 16px 32px;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
}

.hero-features {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(220, 38, 38, 0.15), transparent);
  border-radius: var(--radius-xl);
  filter: blur(60px);
}

.hero-image-wrapper img {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ==========================
   SECTION GENERIC
   ========================== */
.section-generic {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.section-generic:nth-child(even) {
  background: linear-gradient(to bottom, var(--gt-surface), var(--bg-white), var(--gt-surface));
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-title-lg {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gtblack);
  line-height: 1.15;
}

.section-desc {
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 520px;
  line-height: 1.7;
}

.view-all-link {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  color: var(--gtblack);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.view-all-link:hover {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .view-all-link {
    display: inline-flex;
  }
  .view-all-link-mobile {
    display: none;
  }
}

.view-all-link-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  color: var(--gtblack);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition-base);
}

@media (min-width: 640px) {
  .view-all-link-mobile {
    display: none;
  }
}

/* ==========================
   PRODUCT / SERVICE GRID
   ========================== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.15);
}

.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: #F9FAFB;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-badge.sale {
  background: var(--red);
  color: var(--bg-white);
}

.product-badge.new {
  background: var(--primary);
  color: var(--bg-white);
}

.product-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gtblack);
  margin-bottom: 6px;
}

.product-card .product-specs {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .product-tag {
  display: inline-block;
  font-size: 0.68rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 500;
  margin-bottom: 16px;
}

.product-card-actions {
  display: flex;
  gap: 10px;
}

.product-card-actions a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.btn-view {
  border: 2px solid rgba(0, 0, 0, 0.08);
  color: var(--gtblack);
}

.btn-view:hover {
  background: var(--gtblack);
  color: var(--bg-white);
  border-color: var(--gtblack);
}

.btn-inquire {
  background: var(--red);
  color: var(--bg-white);
}

.btn-inquire:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ==========================
   SERVICES SECTION
   ========================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item {
  padding: 32px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(59, 130, 246, 0.15);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--bg-white);
  background: linear-gradient(135deg, var(--primary), var(--blue-500));
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
}

.service-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================
   PROJECTS — Premium Rebrand
   ========================== */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 576px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Featured project — same 2-per-row as others, with premium badge */
.project-featured {
  /* No grid-column override — stays in flow */
}

/* Project Card */
.project-item {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.project-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: transparent;
  background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
              linear-gradient(135deg, var(--primary-light), var(--red-light)) border-box;
}

/* Image Wrapper */
.project-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #F1F5F9;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item:hover .project-image-wrap img {
  transform: scale(1.08);
}

/* Image Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item:hover .project-overlay-content {
  transform: translateY(0);
}

.project-overlay-cat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
}

.project-overlay-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bg-white);
}

.project-overlay-icon i {
  font-size: 0.75rem;
}

/* Featured Badge */
.project-badge-featured {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
  z-index: 2;
}

/* Project Body */
.project-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-body .project-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  background: rgba(220, 38, 38, 0.06);
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  align-self: flex-start;
}

.project-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gtblack);
  line-height: 1.3;
  margin-bottom: 6px;
}

.project-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

/* Tech Tags */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.project-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.06);
  color: var(--primary-light);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all var(--transition-fast);
}

.project-item:hover .project-tags span {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

/* Project Actions */
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.proj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.proj-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--blue-500));
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.proj-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.35);
}

.proj-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

.proj-btn-ghost:hover {
  background: var(--gtblack);
  color: var(--bg-white);
  border-color: var(--gtblack);
  transform: translateY(-2px);
}

/* ==========================
   CTA DARK SECTION
   ========================== */
.cta-dark {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 30%, #EFF6FF 100%);
}

.cta-glow-1 {
  position: absolute;
  top: 50%;
  left: 33%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.10);
  filter: blur(120px);
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.06);
  filter: blur(100px);
  pointer-events: none;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
}

.cta-dark-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-dark-card {
  padding: 48px 32px;
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
}

.cta-dark-card h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gtblack);
  margin-bottom: 16px;
}

.cta-dark-card p {
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ==========================
   STATS ROW
   ========================== */
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.stat-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================
   VISION CARD
   ========================== */
.vision-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}

.vision-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 20px;
}

/* ==========================
   FOOTER
   ========================== */
.site-footer {
  position: relative;
  background: var(--gtblack);
  color: var(--bg-white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.footer-border-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.10), transparent);
}

.footer-main {
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo-wrap {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.footer-brand-text h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-brand-text .motto {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  line-height: 1.3;
}

.footer-location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-location .loc-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* Contact column */
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.footer-socials a:hover {
  background: var(--red);
  color: var(--bg-white);
  transform: scale(1.1);
}

/* Links column */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--bg-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  padding: 12px 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ==========================
   WHATSAPP FLOATING
   ========================== */
.wa-fab {
  position: relative;
}

.wa-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dark);
  color: var(--bg-white);
  border: none;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-base);
}

.wa-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.wa-main-btn i {
  font-size: 1.2rem;
}

.wa-sheet {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 100%;
  min-width: 280px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: none;
  border: 1px solid var(--border);
  animation: slideUp 0.25s ease;
  z-index: 100;
}

@keyframes slideUp {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.wa-sheet a {
  display: block;
  padding: 16px 18px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-fast);
}

.wa-sheet a:last-child { border-bottom: none; }

.wa-sheet a:hover { background: rgba(37, 99, 235, 0.04); }

.wa-sheet strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.wa-sheet span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================
   SCROLL ANIMATIONS
   ========================== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   SERVICES — PREMIUM REDESIGN
   ========================== */

/* Section background and glows */
.section-services {
  position: relative;
  background: linear-gradient(180deg, var(--gt-surface) 0%, var(--bg-white) 50%, var(--gt-surface) 100%);
  overflow: hidden;
}

.section-services .container {
  position: relative;
  z-index: 2;
}

.services-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45%;
  height: 45%;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.07);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.services-glow-2 {
  position: absolute;
  bottom: 15%;
  left: -5%;
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.06);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* ===== Premium Services Grid ===== */
.services-grid-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .services-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid-premium {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Premium Service Card */
.service-card-premium {
  position: relative;
  padding: 36px 28px 32px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(220, 38, 38, 0.04));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.service-card-premium:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.06);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) padding-box,
              linear-gradient(135deg, var(--primary-light), var(--red-light)) border-box;
}

.service-card-premium:hover::before {
  opacity: 1;
}

.service-card-premium:hover::after {
  opacity: 1;
}

/* Numbered index */
.scp-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04);
  line-height: 1;
  transition: all 0.4s ease;
  letter-spacing: -0.03em;
  user-select: none;
}

.service-card-premium:hover .scp-number {
  color: rgba(30, 64, 175, 0.08);
  transform: scale(1.1);
}

/* Icon wrapper */
.scp-icon-wrap {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.service-card-premium:hover .scp-icon-wrap {
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.35);
}

/* Card title */
.service-card-premium h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-card-premium:hover h3 {
  color: var(--primary);
}

/* Card description */
.service-card-premium p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Arrow indicator */
.scp-arrow {
  margin-top: 20px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.06);
  color: var(--primary-light);
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.service-card-premium:hover .scp-arrow {
  background: linear-gradient(135deg, var(--primary), var(--blue-500));
  color: var(--bg-white);
  transform: translateX(6px) scale(1.1);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
}

/* ===== Process / Workflow Section ===== */
.process-section {
  margin-top: 80px;
  text-align: center;
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}

.process-header .section-desc {
  max-width: 520px;
}

/* Steps layout */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Individual step */
.process-step {
  display: flex;
  align-items: stretch;
  gap: 24px;
  text-align: left;
  padding: 28px 0;
  position: relative;
}

.process-step + .process-step {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Step number with vertical connector */
.process-step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.process-step-number span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--blue-500));
  color: var(--bg-white);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.process-step:hover .process-step-number span {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.35);
}

.psn-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.2), rgba(220, 38, 38, 0.1));
  min-height: 20px;
  margin-top: 4px;
}

.process-step:last-child .psn-line {
  display: none;
}

/* Step content */
.process-step-content {
  flex: 1;
  padding-top: 4px;
}

.process-step-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.06);
  color: var(--primary-light);
  font-size: 1rem;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.process-step:hover .process-step-icon {
  background: linear-gradient(135deg, var(--primary), var(--blue-500));
  color: var(--bg-white);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.process-step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gtblack);
  margin-bottom: 6px;
}

.process-step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ===== Services CTA ===== */
.services-cta {
  position: relative;
  margin-top: 80px;
  text-align: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.services-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12), transparent 70%);
  pointer-events: none;
}

.services-cta-content {
  position: relative;
  z-index: 1;
  padding: 56px 32px;
}

.services-cta-content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 12px;
}

.services-cta-content p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.services-cta-actions .btn-outline-glass {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
}

.services-cta-actions .btn-outline-glass:hover {
  border-color: var(--red);
}

/* ==========================
   RESPONSIVE FOR SERVICES
   ========================== */
@media (max-width: 576px) {
  .service-card-premium {
    padding: 28px 20px 24px;
  }

  .scp-number {
    font-size: 1.8rem;
    top: 12px;
    right: 16px;
  }

  .process-step {
    gap: 16px;
    padding: 20px 0;
  }

  .process-step-number {
    width: 40px;
  }

  .process-step-number span {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .services-cta-content {
    padding: 40px 24px;
  }
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .hamburger { display: none; }
  
  .hero-inner {
    flex-direction: row;
  }

  .hero-actions {
    flex-direction: row;
  }

  .section-generic { padding: 96px 0; }
  .cta-dark { padding: 96px 0; }
  .cta-dark-card { padding: 56px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-generic { padding: 60px 0; }
  .cta-dark { padding: 60px 0; }
  .cta-dark-card { padding: 32px 20px; }
  .hero-section { min-height: auto; }
}

@media (max-width: 576px) {
  .btn-whatsapp span { display: none; }
}

/* ==========================
   SCROLLBAR
   ========================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--text-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ==========================
   BRAND COLOR CLASSES
   ========================== */
.code-blue { color: var(--primary); }
.vera-red { color: var(--red); }
.tech-red { color: var(--red); }

/* ==========================
   BADGE COLORS (reuse)
   ========================== */
.section-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* ==========================
   WHO WE ARE (legacy)
   ========================== */
.who-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.brand-em {
  font-weight: 700;
  color: var(--primary);
}

.identity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.identity-tags span {
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.06);
  color: var(--primary-light);
  font-weight: 600;
}

/* ==========================
   ABOUT SECTION — PREMIUM REDESIGN
   ========================== */

/* Section background and glows */
.section-about {
  position: relative;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--gt-surface) 50%, var(--bg-white) 100%);
  overflow: hidden;
}

.section-about .container {
  position: relative;
  z-index: 2;
}

.about-glow-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.07);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.about-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.06);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* ===== Who We Are Grid ===== */
.about-grid-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.about-text-col {
  flex: 1;
  min-width: 300px;
}

.about-subheading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.about-glass-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: left;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.about-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(220, 38, 38, 0.04));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.about-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) padding-box,
              linear-gradient(135deg, var(--primary-light), var(--red-light)) border-box;
}

.about-glass-card:hover::before {
  opacity: 1;
}

/* ===== About Image Column ===== */
.about-image-col {
  flex: 1;
  min-width: 280px;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.12), transparent);
  border-radius: var(--radius-xl);
  filter: blur(60px);
}

.about-image-wrapper img {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* Decorative elements */
.about-image-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.about-deco-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.about-deco-dot-1 {
  top: -8px;
  right: 20px;
  background: var(--red);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
  animation: floatDot 3s ease-in-out infinite;
}

.about-deco-dot-2 {
  bottom: 20px;
  left: -8px;
  background: var(--primary-light);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  animation: floatDot 3s ease-in-out infinite 1.5s;
}

@keyframes floatDot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-deco-line {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-light), transparent);
  transform: translateY(-50%);
  border-radius: var(--radius-full);
}

@media (max-width: 640px) {
  .about-deco-line { display: none; }
  .about-deco-dot-1 { right: 10px; }
  .about-deco-dot-2 { left: -4px; }
}

/* ===== Mission Strip ===== */
.mission-strip {
  position: relative;
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gtblack) 0%, #1E293B 50%, var(--gtblack) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-strip-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
  pointer-events: none;
}

.mission-strip-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
}

.mission-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--blue-500));
  color: var(--bg-white);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
}

.mission-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 4px;
}

.mission-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .mission-strip-content {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

/* ===== Premium Values Grid ===== */
.values-grid-premium-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}

@media (min-width: 640px) {
  .values-grid-premium-about {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Premium Value Card */
.value-card-premium {
  position: relative;
  padding: 36px 28px 32px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.value-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(220, 38, 38, 0.04));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.value-card-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.value-card-premium:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.06);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) padding-box,
              linear-gradient(135deg, var(--primary-light), var(--red-light)) border-box;
}

.value-card-premium:hover::before { opacity: 1; }
.value-card-premium:hover::after { opacity: 1; }

/* Numbered index */
.value-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04);
  line-height: 1;
  transition: all 0.4s ease;
  letter-spacing: -0.03em;
  user-select: none;
}

.value-card-premium:hover .value-number {
  color: rgba(30, 64, 175, 0.08);
  transform: scale(1.1);
}

/* Icon wrapper */
.value-icon-wrap {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.value-card-premium:hover .value-icon-wrap {
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.35);
}

/* Card title */
.value-card-premium h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.value-card-premium:hover h3 {
  color: var(--primary);
}

/* Card description */
.value-card-premium p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Arrow indicator */
.value-arrow {
  margin-top: 20px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.06);
  color: var(--primary-light);
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.value-card-premium:hover .value-arrow {
  background: linear-gradient(135deg, var(--primary), var(--blue-500));
  color: var(--bg-white);
  transform: translateX(6px) scale(1.1);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
}

/* ===== Premium Stats ===== */
.stats-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .stats-premium {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-premium-card {
  position: relative;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) padding-box,
              linear-gradient(135deg, var(--primary-light), var(--red-light)) border-box;
}

.stat-premium-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.stat-premium-card:hover .stat-premium-glow {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
}

.stat-premium-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-light);
  font-size: 1.1rem;
  margin: 0 auto 16px;
  transition: all 0.4s ease;
}

.stat-premium-card:hover .stat-premium-icon {
  background: linear-gradient(135deg, var(--primary), var(--blue-500));
  color: var(--bg-white);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.stat-premium-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.stat-premium-card:hover h3 {
  color: var(--primary-dark);
}

.stat-premium-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Premium Vision ===== */
.vision-premium-wrap {
  margin-top: 60px;
}

.vision-premium-card {
  position: relative;
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) padding-box,
              linear-gradient(135deg, var(--primary-light), var(--red-light)) border-box;
}

.vision-premium-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05), transparent 70%);
  pointer-events: none;
}

.vision-premium-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.1);
  color: #1D4ED8;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.vision-premium-card h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--gtblack);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.vision-premium-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.vision-premium-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.vision-premium-actions .btn-outline-glass {
  border-color: var(--border);
  color: var(--text-muted);
}

.vision-premium-actions .btn-outline-glass:hover {
  border-color: var(--red);
  color: var(--bg-white);
  background: var(--red);
}

/* Responsive for About */
@media (max-width: 640px) {
  .about-glass-card { padding: 24px; }
  .vision-premium-card { padding: 32px 20px; }
  .stat-premium-card { padding: 24px 16px; }
  .value-card-premium { padding: 28px 20px 24px; }
  .value-number { font-size: 1.8rem; top: 12px; right: 16px; }
  .about-grid-premium { gap: 32px; }
}

@media (max-width: 768px) {
  .about-image-wrapper img { max-width: 100%; }
}
