/* ============================================
   FRIDAY Consultancies — Master Stylesheet
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) #0a0a0a;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ============================================
   1. Announcement Bar
   ============================================ */
.announcement-bar {
  width: 100%;
  background: #4d65ff;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.announcement-bar.scrolled {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.announcement-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.announcement-content {
  display: flex;
  align-items: center;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.announcement-item {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 3rem;
  flex-shrink: 0;
}

.announcement-link {
  text-decoration: underline;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.3s;
}

.announcement-link:hover {
  opacity: 0.85;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   2. Navbar
   ============================================ */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  top: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.logo-friday {
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-consultancies {
  font-weight: 400;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .ham-line-1 {
  transform: rotate(45deg) translate(4px, 6px);
}

.hamburger.active .ham-line-2 {
  opacity: 0;
}

.hamburger.active .ham-line-3 {
  transform: rotate(-45deg) translate(4px, -6px);
}

/* ============================================
   3. Hero Section
   ============================================ */
.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(120px + 40px) 2rem 6rem 2rem;
  background: #0a0a0a;
}

.hero-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77, 101, 255, 0.08);
  border: 1px solid rgba(77, 101, 255, 0.15);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.badge-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-heading em {
  font-style: italic;
  color: #4d65ff;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   4. Buttons (Global)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  gap: 0.5rem;
  overflow: hidden;
  position: relative;
  font-family: inherit;
}

.btn-primary {
  background: #4d65ff;
  color: #fff;
}

.btn-primary:hover {
  background: #3a4fcc;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* Button Text Flip Effect */
.btn-text-wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 1.25em;
  line-height: 1.25em;
}

.btn-text-one {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.btn-text-two {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.btn:hover .btn-text-one {
  transform: translateY(-100%);
}

.btn:hover .btn-text-two {
  transform: translateY(-100%);
}

/* ============================================
   5. Stats Section
   ============================================ */
.section-stats {
  padding: 5rem 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #4d65ff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.stat-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   6. Services Section
   ============================================ */
.section-services {
  padding: 6rem 0;
  background: #0f0f0f;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77, 101, 255, 0.08);
  border: 1px solid rgba(77, 101, 255, 0.15);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.badge-icon-sm {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-heading em {
  font-style: italic;
  color: #4d65ff;
}

.section-subheading {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: rgba(77, 101, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card-featured {
  grid-column: span 3;
  background: linear-gradient(
    135deg,
    rgba(77, 101, 255, 0.12) 0%,
    rgba(77, 101, 255, 0.03) 100%
  );
  border-color: rgba(77, 101, 255, 0.2);
}

.service-card-badge {
  display: inline-block;
  background: rgba(77, 101, 255, 0.15);
  color: #4d65ff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.service-card-offer {
  display: inline-block;
  background: rgba(255, 170, 0, 0.12);
  color: #ffaa00;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  border: 1px solid rgba(255, 170, 0, 0.2);
}

.service-card-free {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(77, 101, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d65ff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
}

.service-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.service-features h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.feature-list li i {
  color: #10b981;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.service-highlight {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.service-highlight span {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-highlight p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.service-highlight strong {
  color: #fff;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4d65ff;
  margin-top: auto;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-cta-link:hover {
  gap: 0.75rem;
}

/* ============================================
   7. Countries Section
   ============================================ */
.section-countries {
  padding: 6rem 0;
  background: #0a0a0a;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.country-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
  padding: 1.75rem 1rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  cursor: default;
  overflow: hidden;
  position: relative;
}

.country-card:hover {
  border-color: rgba(77, 101, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.country-flag-img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.country-card:hover .country-flag-img {
  transform: scale(1.1);
}

.country-flag {
  font-size: 2.5rem;
  line-height: 1;
}

.country-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   8. Leadership Section
   ============================================ */
.section-leadership {
  padding: 6rem 0;
  background: #0f0f0f;
}

.leadership-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem;
  display: flex;
  gap: 3rem;
  padding: 3rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.leader-photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
}

.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-info {
  flex: 1;
}

.leader-initials {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(77, 101, 255, 0.15);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: #4d65ff;
  margin-bottom: 1rem;
}

.leader-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.leader-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4d65ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
}

.leader-bio {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ============================================
   9. Contact Section
   ============================================ */
.section-contact {
  padding: 6rem 0;
  background: #0a0a0a;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4d65ff;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-email:hover {
  opacity: 0.8;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: #fff;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4d65ff;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-group select option {
  background: #0a0a0a;
  color: #fff;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ============================================
   10. Coming Soon Section
   ============================================ */
.section-coming-soon {
  padding: 4rem 0;
  background: #0f0f0f;
}

.coming-soon-card {
  background: linear-gradient(
    135deg,
    rgba(77, 101, 255, 0.08) 0%,
    rgba(77, 101, 255, 0.02) 100%
  );
  border: 1px solid rgba(77, 101, 255, 0.15);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(77, 101, 255, 0.15);
  color: #4d65ff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 1rem;
}

.coming-soon-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.coming-soon-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ============================================
   11. Footer
   ============================================ */
.site-footer {
  padding: 4rem 0 2rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 0;
}

.footer-logo .logo-friday,
.footer-logo .logo-consultancies {
  font-size: 1.25rem;
}

.footer-contact-col a,
.footer-social-col a,
.footer-address-col p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-contact-col a:hover,
.footer-social-col a:hover {
  color: #fff;
}

.footer-contact-col i,
.footer-social-col i,
.footer-address-col i {
  color: #4d65ff;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   12. Grow-in Animation
   ============================================ */
.grow-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.grow-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================
   13. Responsive — Tablet (max-width: 992px)
   ============================================ */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .leadership-card {
    gap: 2rem;
    padding: 2.5rem;
  }
}

/* ============================================
   14. Responsive — Mobile Landscape (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.125rem;
  }

  .nav-actions {
    display: none;
  }

  .hero-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-hero {
    padding: calc(100px + 40px) 1.5rem 4rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-column: span 1;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leadership-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 2rem;
  }

  .leader-photo-wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .contact-heading {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-services,
  .section-countries,
  .section-leadership,
  .section-contact {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* ============================================
   15. Responsive — Small Mobile (max-width: 576px)
   ============================================ */
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .country-card {
    padding: 1.25rem 0.75rem;
  }

  .coming-soon-card {
    padding: 2rem 1.5rem;
  }

  .coming-soon-title {
    font-size: 1.5rem;
  }

  .navbar-inner {
    padding: 1rem 1.25rem;
  }

  .logo-friday,
  .logo-consultancies {
    font-size: 1.25rem;
  }

  .section-hero {
    min-height: auto;
    padding: calc(90px + 40px) 1.25rem 3rem 1.25rem;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
  }

  .announcement-item {
    padding: 0 1.5rem;
    font-size: 0.75rem;
  }
}

/* ============================================
   16. Selection & Focus States
   ============================================ */
::selection {
  background: rgba(77, 101, 255, 0.3);
  color: #fff;
}

:focus-visible {
  outline: 2px solid #4d65ff;
  outline-offset: 2px;
}

/* ============================================
   17. Utility / Misc
   ============================================ */
.section-heading em,
.contact-heading em {
  font-style: italic;
  color: #4d65ff;
}
