/* ═══════════════════════════════════════════════════════════
   D-TECH ENTERPRISES — MASTER STYLESHEET
   Version 2.0 | June 2026
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Brand colours */
  --gold:      #C8972B;
  --gold-lt:   #E5B84A;
  --gold-dk:   #A67C22;
  --teal:      #1C4B51;
  --teal-lt:   #0D7377;
  --teal-2:    #14A9AD;
  --navy:      #0F2035;
  --navy-lt:   #1A3A5C;
  --cream:     #FBF8F3;
  --warm-grey: #F5F3EF;
  --mid-grey:  #6D6E71;
  --light-grey:#E8ECF0;
  --dark:      #0A0F1E;
  --white:     #FFFFFF;
  --black:     #1A1A1A;
  --green:     #1D6B45;
  --red:       #B22222;

  /* Gradients */
  --grad-hero:  linear-gradient(135deg, #0A0F1E 0%, #0F2035 40%, #1C4B51 100%);
  --grad-gold:  linear-gradient(135deg, #C8972B 0%, #E5B84A 100%);
  --grad-teal:  linear-gradient(135deg, #1C4B51 0%, #0D7377 100%);
  --grad-card:  linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(15,32,53,0.08);
  --shadow-md:  0 8px 32px rgba(15,32,53,0.12);
  --shadow-lg:  0 20px 60px rgba(15,32,53,0.16);
  --shadow-xl:  0 40px 100px rgba(15,32,53,0.20);
  --shadow-gold:0 8px 32px rgba(200,151,43,0.35);

  /* Typography */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container:   1200px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.2s;
  --dur-med:  0.4s;
  --dur-slow: 0.7s;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { line-height: 1.7; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-pad) 0; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all var(--dur-med) var(--ease);
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,151,43,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.3rem; color: var(--white);
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--grad-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(45deg);
  transition: transform var(--dur-med) var(--ease-bounce);
}
.logo-mark:hover { transform: rotate(0deg); }
.logo-mark img { transform: rotate(-45deg); width: 28px; }
.logo-text span { color: var(--gold); }
.nav-links {
  display: flex; gap: 8px; align-items: center;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  transition: all var(--dur-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--grad-gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  transition: all var(--dur-fast) !important;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,151,43,0.5) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--dur-med) var(--ease);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu .nav-link {
  font-size: 2rem; font-weight: 800;
  color: var(--white);
}
.mobile-menu .nav-link:hover { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.02em;
  transition: all var(--dur-med) var(--ease);
  cursor: pointer; border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--grad-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(200,151,43,0.5); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.btn-teal {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(28,75,81,0.4);
}
.btn-teal:hover { transform: translateY(-3px); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,0.5); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── SECTION LABELS ─────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px;
  background: var(--gold); border-radius: 1px;
}
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-title .highlight { color: var(--teal); }
.section-title .gold { color: var(--gold); }
.section-sub {
  font-size: 1.05rem; color: var(--mid-grey);
  line-height: 1.7; max-width: 580px;
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,32,53,0.07);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ── GRIDS ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(28,75,81,0.25);
  top: -200px; right: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(200,151,43,0.1);
  bottom: -100px; left: -50px;
  animation-delay: -4s;
}
.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,151,43,0.12);
  border: 1px solid rgba(200,151,43,0.3);
  color: var(--gold-lt); font-size: 0.83rem; font-weight: 600;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-lt);
  animation: pulse 2s infinite;
}
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title .line-gold { color: var(--gold); display: block; }
.hero-title .line-teal { color: var(--teal-2); display: block; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 560px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: absolute; bottom: 60px; right: 0;
  display: flex; gap: 0;
}
.hero-stat {
  text-align: center; padding: 24px 32px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2.8rem; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 6px;
}
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: bounce 2.5s infinite;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(200,151,43,0.7), transparent);
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker {
  background: var(--gold);
  padding: 14px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.87rem; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--navy); opacity: 0.4; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.service-card {
  background: var(--warm-grey);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(15,32,53,0.06);
  position: relative; overflow: hidden;
  transition: all var(--dur-med) var(--ease);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-teal);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
  z-index: 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 0.03; }
.service-card-content { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--grad-teal);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  transition: transform var(--dur-med) var(--ease-bounce);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-card p { font-size: 0.87rem; color: var(--mid-grey); line-height: 1.6; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag {
  font-size: 0.72rem; font-weight: 600;
  background: rgba(13,115,119,0.1); color: var(--teal-lt);
  padding: 4px 10px; border-radius: 100px;
}
.service-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.83rem; font-weight: 600; color: var(--gold);
  margin-top: 16px; transition: gap var(--dur-fast);
}
.service-card:hover .service-link { gap: 10px; }

/* ── NUMBERS ─────────────────────────────────────────────── */
.numbers-section {
  background: var(--grad-hero);
  padding: 80px 0; position: relative; overflow: hidden;
}
.numbers-grid { display: grid; grid-template-columns: repeat(5,1fr); }
.number-item {
  text-align: center; padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.number-item:last-child { border-right: none; }
.number-big {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--white); line-height: 1;
}
.number-big span { color: var(--gold); }
.number-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 10px; line-height: 1.4;
}

/* ── PORTFOLIO ────────────────────────────────────────────── */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px; border-radius: 100px;
  border: 1.5px solid var(--light-grey);
  font-size: 0.84rem; font-weight: 600;
  color: var(--mid-grey); background: var(--white);
  cursor: pointer; transition: all var(--dur-fast);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.filter-btn.active { border-color: var(--gold); background: var(--gold); color: var(--navy); }
.portfolio-search {
  position: relative; margin-bottom: 32px;
}
.portfolio-search input {
  width: 100%; padding: 14px 48px 14px 20px;
  border: 1.5px solid var(--light-grey); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color var(--dur-fast);
  background: var(--white);
}
.portfolio-search input:focus { border-color: var(--gold); }
.portfolio-search-icon {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%); color: var(--mid-grey);
}

/* Featured portfolio cards */
.featured-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 40px; }
.featured-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-md);
  transition: all var(--dur-med) var(--ease);
}
.featured-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.featured-thumb {
  height: 220px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.featured-thumb-label {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  color: rgba(255,255,255,0.12); letter-spacing: -0.03em;
}
.featured-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.featured-country {
  position: absolute; top: 16px; left: 16px;
  background: rgba(10,15,30,0.7); color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.featured-body { padding: 24px; }
.featured-body h4 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy); margin-bottom: 6px;
}
.featured-body p { font-size: 0.85rem; color: var(--mid-grey); margin-bottom: 14px; }
.featured-result {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--green); font-weight: 600;
  padding: 8px 12px; background: rgba(29,107,69,0.07);
  border-radius: var(--radius-sm); margin-bottom: 14px;
}
.featured-actions { display: flex; gap: 10px; }

/* Portfolio list grid */
.portfolio-list-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 10px;
}
.portfolio-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--light-grey); background: var(--white);
  font-size: 0.83rem; color: var(--teal-lt); font-weight: 500;
  transition: all var(--dur-fast); cursor: pointer;
  text-decoration: none;
}
.portfolio-item:hover {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
  transform: translateX(3px);
}
.portfolio-item::before { content: '→'; color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.portfolio-item.hidden { display: none; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-card {
  background: var(--grad-hero);
  border-radius: var(--radius-lg); padding: 48px;
  color: var(--white); position: relative; overflow: hidden;
}
.about-card::before {
  content: '"';
  position: absolute; top: -40px; right: 20px;
  font-size: 16rem; font-family: Georgia, serif;
  color: rgba(255,255,255,0.04); line-height: 1;
}
.about-card h3 {
  font-size: 1.5rem; margin-bottom: 14px; color: var(--white);
}
.about-card p { color: rgba(255,255,255,0.7); line-height: 1.7; }
.about-float {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--gold); border-radius: var(--radius-md);
  padding: 24px 28px; box-shadow: var(--shadow-gold);
}
.about-float .num {
  font-family: var(--font-head); font-size: 2.8rem;
  font-weight: 800; color: var(--navy); line-height: 1;
}
.about-float .lbl { font-size: 0.82rem; color: var(--navy); opacity: 0.7; text-transform: uppercase; }
.founder-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; background: var(--warm-grey);
  border-radius: var(--radius-sm); margin-top: 32px;
  border-left: 3px solid var(--gold);
}
.founder-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--white); font-size: 1.2rem; flex-shrink: 0;
}
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.pillar {
  padding: 20px; background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15,32,53,0.07);
  transition: all var(--dur-med) var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.pillar-icon { font-size: 1.6rem; margin-bottom: 8px; }
.pillar h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.pillar p { font-size: 0.82rem; color: var(--mid-grey); line-height: 1.5; }

/* ── TIMELINE ─────────────────────────────────────────────── */
.timeline {
  position: relative; padding: 32px 0;
}
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--teal));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; gap: 40px; margin-bottom: 48px;
  align-items: flex-start;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  flex: 1; background: var(--white);
  border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
}
.timeline-item:nth-child(even) .timeline-content { border-left: none; border-right: 3px solid var(--teal); }
.timeline-year {
  flex: 0 0 auto; width: 80px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.4rem; color: var(--gold);
  text-align: center; padding-top: 20px;
}
.timeline-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
  margin-top: 28px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; transition: transform var(--dur-slow) var(--ease);
}
.testimonial-card {
  min-width: 100%; padding: 0 8px;
}
.testimonial-inner {
  background: var(--warm-grey); border-radius: var(--radius-md);
  padding: 48px; position: relative; overflow: hidden;
  border: 1px solid rgba(15,32,53,0.06);
}
.testimonial-inner::before {
  content: '\201C';
  position: absolute; top: -20px; left: 24px;
  font-size: 12rem; color: var(--gold);
  opacity: 0.12; font-family: Georgia, serif; line-height: 1;
}
.testimonial-text {
  font-size: 1.1rem; color: var(--black);
  line-height: 1.8; font-style: italic;
  position: relative; z-index: 1; margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--white); font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 1rem; color: var(--navy); }
.author-co { font-size: 0.85rem; color: var(--mid-grey); }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px; }
.slider-controls {
  display: flex; justify-content: center; gap: 12px; margin-top: 32px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--light-grey); cursor: pointer;
  transition: all var(--dur-fast);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
.slider-arrows {
  display: flex; gap: 12px; justify-content: center; margin-top: 16px;
}
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--dur-fast);
  font-size: 1.1rem; color: var(--mid-grey);
}
.slider-arrow:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── INTERNATIONAL ────────────────────────────────────────── */
.international-section {
  background: var(--grad-hero);
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}
.international-section::before {
  content: 'GLOBAL';
  position: absolute; right: -2%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head); font-size: 14rem;
  font-weight: 800; color: rgba(255,255,255,0.03);
  pointer-events: none; white-space: nowrap;
}
.countries-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.country-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--white); font-size: 0.9rem; font-weight: 500;
  transition: all var(--dur-fast); cursor: default;
}
.country-chip:hover { background: rgba(200,151,43,0.2); border-color: var(--gold); }
.flag { font-size: 1.3rem; }

/* ── PROCESS ─────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; position: relative; margin-top: 60px; }
.process-line {
  position: absolute; top: 36px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--teal));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(28,75,81,0.15);
  transition: all var(--dur-med) var(--ease-bounce);
  position: relative;
}
.step-circle:hover { background: var(--teal); transform: scale(1.12); }
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-size: 0.68rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 0.78rem; color: var(--mid-grey); line-height: 1.5; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 40px 32px; border: 1px solid rgba(15,32,53,0.08);
  position: relative; overflow: hidden;
  transition: all var(--dur-med) var(--ease);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--grad-hero);
  border-color: transparent;
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
  position: absolute; top: 20px; right: -34px;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 800;
  padding: 6px 44px; transform: rotate(45deg);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pricing-tier {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--teal-lt); margin-bottom: 8px;
}
.pricing-card.featured .pricing-tier { color: var(--gold-lt); }
.pricing-name {
  font-size: 1.6rem; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-price {
  font-size: 2.2rem; font-weight: 800;
  color: var(--navy); margin: 16px 0 4px;
}
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-price sub { font-size: 1rem; font-weight: 400; }
.pricing-period { font-size: 0.8rem; color: var(--mid-grey); margin-bottom: 24px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-divider {
  height: 1px; background: rgba(15,32,53,0.07); margin-bottom: 24px;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--mid-grey);
  padding: 7px 0; border-bottom: 1px solid var(--warm-grey);
}
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.08);
}
.pricing-features li::before {
  content: '✓'; color: var(--teal-lt); font-weight: 700; flex-shrink: 0;
}
.pricing-card.featured .pricing-features li::before { color: var(--gold-lt); }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { border-radius: var(--radius-md); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: all var(--dur-med) var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 200px; background: var(--grad-hero);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--mid-grey); margin-bottom: 10px; }
.blog-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.blog-body p { font-size: 0.85rem; color: var(--mid-grey); line-height: 1.6; margin-bottom: 16px; }
.read-more {
  font-size: 0.83rem; font-weight: 700; color: var(--teal-lt);
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--dur-fast);
}
.blog-card:hover .read-more { gap: 10px; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--white);
  border-radius: var(--radius-sm); border: 1px solid var(--light-grey);
  transition: all var(--dur-fast);
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--grad-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-card h4 { font-size: 0.78rem; font-weight: 600; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.contact-card a { transition: color var(--dur-fast); }
.contact-card a:hover { color: var(--teal-lt); }

/* Contact form */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-md);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--mid-grey); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--black); background: var(--warm-grey);
  outline: none; transition: all var(--dur-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal-lt); background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,115,119,0.1);
}
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: var(--red); }
.form-group.success input { border-color: var(--green); }
.form-error { font-size: 0.78rem; color: var(--red); margin-top: 4px; display: none; }
.form-group.error .form-error { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--grad-teal);
  color: var(--white); font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 700;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: all var(--dur-med) var(--ease);
  position: relative; overflow: hidden;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(28,75,81,0.4); }
.form-submit.loading { opacity: 0.7; cursor: wait; }
.form-success {
  display: none; text-align: center; padding: 40px;
  background: var(--warm-grey); border-radius: var(--radius-md);
}
.form-success.show { display: block; }
.form-success h3 { color: var(--green); margin-bottom: 12px; }

/* ── INDUSTRIES ──────────────────────────────────────────── */
.industries-flex { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 100px;
  border: 1.5px solid var(--light-grey);
  background: var(--white);
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
  transition: all var(--dur-fast); cursor: default;
}
.industry-chip:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy); transform: translateY(-3px);
}

/* ── FLOATING ELEMENTS ────────────────────────────────────── */
/* WhatsApp floating button */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 998;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  text-decoration: none; font-size: 1.6rem;
  transition: all var(--dur-med) var(--ease-bounce);
  animation: waPulse 3s infinite;
}
.wa-float:hover { transform: scale(1.15); }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark); color: var(--white);
  font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 6px;
  white-space: nowrap; opacity: 0;
  transition: opacity var(--dur-fast);
  pointer-events: none;
}
.wa-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* Mobile WA bar */
.wa-mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: #25D366; padding: 14px;
  text-align: center; font-weight: 700; color: var(--white);
  font-size: 0.95rem; text-decoration: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* ── POPUPS ──────────────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,15,30,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
  backdrop-filter: blur(4px);
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; max-width: 480px; width: 90%;
  position: relative; transform: translateY(24px);
  transition: transform var(--dur-med) var(--ease);
  box-shadow: var(--shadow-xl);
}
.popup-overlay.show .popup { transform: translateY(0); }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--warm-grey); color: var(--mid-grey);
  font-size: 1.1rem; cursor: pointer; transition: all var(--dur-fast);
}
.popup-close:hover { background: var(--navy); color: var(--white); }
.popup-icon { font-size: 3rem; margin-bottom: 16px; }
.popup h3 { color: var(--navy); margin-bottom: 10px; }
.popup p { color: var(--mid-grey); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; }
.popup-form { display: flex; flex-direction: column; gap: 12px; }
.popup-input {
  padding: 13px 16px; border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color var(--dur-fast);
}
.popup-input:focus { border-color: var(--teal-lt); }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1999;
  background: var(--dark); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform var(--dur-med) var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.88rem; color: rgba(255,255,255,0.75); flex: 1; }
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 9px 20px; border-radius: 6px; font-weight: 600; font-size: 0.85rem; cursor: pointer; border: none; font-family: var(--font-body); }
.cookie-accept { background: var(--gold); color: var(--navy); }
.cookie-decline { background: rgba(255,255,255,0.1); color: var(--white); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-top: 16px; max-width: 280px;
}
.footer-stats {
  display: flex; gap: 20px; margin-top: 24px;
}
.footer-stat-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.4rem; color: var(--gold);
}
.footer-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.87rem; color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
  display: flex; align-items: center; gap: 6px;
}
.footer-col li a:hover { color: var(--white); }
.footer-col li a::before { content: '→'; color: var(--gold); font-size: 0.75rem; opacity: 0; transition: opacity var(--dur-fast); }
.footer-col li a:hover::before { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.3); transition: color var(--dur-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 100px; right: 32px; z-index: 997;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  opacity: 0; transform: translateY(16px);
  transition: all var(--dur-med) var(--ease);
  box-shadow: var(--shadow-md); border: 1.5px solid rgba(200,151,43,0.3);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold); color: var(--navy); }

/* ── PAGE LOADER ─────────────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--gold); }
.loader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,0.1);
  border-radius: 1px; margin-top: 24px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: var(--grad-gold);
  animation: load 1.2s ease forwards;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 48px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}
@keyframes load {
  to { width: 100%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── UTILITY ─────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal-lt); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm-grey); }
.bg-navy { background: var(--navy); }
.bg-dark { background: var(--dark); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .featured-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: repeat(3,1fr); }
  .portfolio-list-grid { grid-template-columns: repeat(3,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .process-line { display: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .grid-2, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .featured-grid, .blog-grid, .pricing-grid { grid-template-columns: 1fr; }
  .grid-4, .portfolio-list-grid { grid-template-columns: repeat(2,1fr); }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { display: none; }
  .wa-mobile-bar { display: block; }
  .wa-float { bottom: 80px; }
  .back-top { bottom: 144px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .about-float { display: none; }
  .testimonial-inner { padding: 28px; }
}
@media (max-width: 480px) {
  .grid-4, .portfolio-list-grid { grid-template-columns: 1fr; }
  .countries-grid { gap: 8px; }
  .pricing-card.featured { transform: scale(1); }
}
</style>
