﻿/* ============================================
   BUSINESS REVOLUTION SARL — style.css v2
   Fonts: Syne (UI) | Cormorant Garamond (display titles) | Inter (body)
   Colors: Navy #1a2e5a | Red #cc0000 | White #fff
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1a2e5a;
  --navy-dark: #0f1c38;
  --navy-light: #243672;
  --red: #cc0000;
  --red-dark: #a80000;
  --white: #ffffff;
  --off-white: #f7f6f3;
  --gray-100: #f0efe9;
  --gray-200: #e2e0d8;
  --gray-400: #9a9890;
  --gray-600: #5c5b56;
  --gray-800: #2c2c28;
  --text: #1a1a18;
  --font-head: 'Syne', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(26,46,90,0.08);
  --shadow-md: 0 8px 32px rgba(26,46,90,0.12);
  --shadow-lg: 0 20px 60px rgba(26,46,90,0.16);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; cursor: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: none; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 100px 0; }

/* --- DISPLAY TITLE (Cormorant Garamond) --- */
.display-title {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-style: normal;
  letter-spacing: -0.5px !important;
}
.display-title.light { color: var(--white) !important; }

/* --- LOADER --- */
#loader {
  position: fixed; inset: 0;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo { font-family: var(--font-head); font-size: 56px; font-weight: 800; letter-spacing: -2px; margin-bottom: 24px; }
.loader-b { color: var(--white); }
.loader-r { color: var(--red); }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-fill { height: 100%; width: 0; background: var(--red); border-radius: 2px; animation: loadFill 1.4s ease forwards; }
@keyframes loadFill { to { width: 100%; } }

/* --- CUSTOM CURSOR --- */
.cursor-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); }
.cursor-ring { width: 32px; height: 32px; border: 1.5px solid var(--navy); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9997; transform: translate(-50%,-50%); transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease; }
.cursor-ring.hover { width: 48px; height: 48px; border-color: var(--red); }

/* --- HEADER --- */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background var(--transition), box-shadow var(--transition); }
#header.scrolled { background: rgba(255,255,255,0.96); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 20px 32px; max-width: 1280px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 18px; letter-spacing: -1px; flex-shrink: 0; }
.logo-b { color: var(--white); }
.logo-r { color: var(--red); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); letter-spacing: -0.3px; }
.logo-sarl { font-family: var(--font-body); font-weight: 400; font-size: 11px; color: var(--gray-600); letter-spacing: 1px; text-transform: uppercase; }
#header:not(.scrolled) .logo-name { color: var(--white); }
#header:not(.scrolled) .logo-sarl { color: rgba(255,255,255,0.6); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.85); padding: 8px 14px; border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.12); }
#header.scrolled .nav-link { color: var(--gray-600); }
#header.scrolled .nav-link:hover, #header.scrolled .nav-link.active { color: var(--navy); background: var(--gray-100); }
.nav-link.nav-cta { background: var(--red); color: var(--white) !important; padding: 9px 20px; font-weight: 600; }
.nav-link.nav-cta:hover { background: var(--red-dark); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); padding: 7px 12px; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-sm); transition: all var(--transition); cursor: none; }
.lang-switcher:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
#header.scrolled .lang-switcher { color: var(--gray-600); border-color: var(--gray-200); }
#header.scrolled .lang-switcher:hover { border-color: var(--navy); color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
#header.scrolled .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-200); box-shadow: var(--shadow-md); padding: 16px 0; transform: translateY(-10px); opacity: 0; transition: all var(--transition); pointer-events: none; }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu ul { padding: 0 24px; }
.mobile-menu a { display: block; padding: 13px 0; font-size: 15px; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--gray-100); }

/* --- REVEAL --- */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s); }
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* --- HERO --- */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,18,35,0.88) 0%, rgba(10,18,35,0.6) 60%, rgba(10,18,35,0.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 32px; margin-left: max(32px, calc((100vw - 1280px)/2 + 32px)); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; margin-bottom: 28px; backdrop-filter: blur(8px); }
.badge-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(204,0,0,0.4); } 50% { box-shadow: 0 0 0 6px rgba(204,0,0,0); } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--red); }

.hero-desc { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.7; max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); font-family: var(--font-body); font-size: 14.5px; font-weight: 600; padding: 14px 28px; border-radius: var(--radius-sm); letter-spacing: 0.2px; transition: all var(--transition); border: 2px solid var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,0,0,0.3); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: var(--font-body); font-size: 14.5px; font-weight: 600; padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,0.4); letter-spacing: 0.2px; transition: all var(--transition); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; z-index: 2; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5)); animation: scrollLine 1.8s ease infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; opacity: 0; } 50% { transform: scaleY(1); transform-origin: top; opacity: 1; } 100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; } }

/* --- INTRO BAND --- */
.intro-band { background: var(--navy); padding: 60px 0; }
.intro-text { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 30px); font-weight: 600; color: rgba(255,255,255,0.88); line-height: 1.55; text-align: center; max-width: 860px; margin: 0 auto; font-style: italic; }

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 60px); font-weight: 700; color: var(--navy); letter-spacing: -0.5px; line-height: 1.1; }

/* --- SERVICES GRID --- */
.services-overview { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-img-wrap img { transition: transform 0.6s ease; object-fit: cover; width: 100%; height: 100%; }
.service-card:hover .service-img-wrap img { transform: scale(1.07); }
.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(10,18,35,0.55) 100%); }

.service-body { padding: 28px 24px 24px; flex: 1; display: flex; flex-direction: column; position: relative; }
.service-num { position: absolute; top: 20px; right: 20px; font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--gray-200); line-height: 1; letter-spacing: -2px; }
.service-body h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; letter-spacing: -0.2px; padding-right: 40px; }
.service-body p { font-size: 13.5px; line-height: 1.65; color: var(--gray-600); margin-bottom: 18px; flex: 1; }
.service-link { font-size: 13px; font-weight: 600; color: var(--red); letter-spacing: 0.2px; transition: color var(--transition); margin-top: auto; }
.service-link:hover { color: var(--red-dark); }

/* --- STATS --- */
.stats-section { position: relative; padding: 100px 0; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; }
.stats-img { object-position: center; }
.stats-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,18,35,0.95), rgba(10,18,35,0.8)); }
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--radius-md); overflow: hidden; }
.stat-item { padding: 60px 40px; text-align: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); transition: background var(--transition); }
.stat-item:hover { background: rgba(204,0,0,0.12); }
.stat-number { font-family: var(--font-display); font-size: clamp(48px, 5.5vw, 72px); font-weight: 700; color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; text-transform: uppercase; }

/* --- CEO --- */
.ceo-section { background: var(--white); }
.ceo-wrapper { display: flex; gap: 0; border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.ceo-accent-bar { width: 6px; background: linear-gradient(to bottom, var(--red), var(--navy)); flex-shrink: 0; }
.ceo-content { display: flex; align-items: flex-start; gap: 40px; padding: 60px 56px; }
.ceo-monogram { width: 88px; height: 88px; background: var(--navy); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -1px; flex-shrink: 0; position: relative; }
.ceo-monogram::after { content: ''; position: absolute; bottom: -4px; right: -4px; width: 20px; height: 20px; background: var(--red); border-radius: 4px; }
.ceo-body { flex: 1; }
.ceo-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.ceo-quote { font-family: var(--font-display); font-size: clamp(18px, 2.1vw, 24px); font-style: italic; color: var(--navy); line-height: 1.6; margin-bottom: 28px; position: relative; padding-left: 24px; }
.ceo-quote::before { content: '\201C'; position: absolute; left: 0; top: -8px; font-size: 56px; color: var(--red); opacity: 0.3; font-family: var(--font-display); line-height: 1; }
.ceo-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 4px; }
.ceo-role { font-size: 13px; color: var(--gray-600); }

/* --- CLIENTS --- */
.clients-section { background: var(--off-white); }
.clients-track { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.client-badge { font-family: var(--font-head); font-size: clamp(18px, 2.5vw, 28px); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; padding: 14px 28px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); background: var(--white); transition: all var(--transition); }
.client-badge:hover { border-color: var(--navy); background: var(--navy); color: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.client-sep { font-size: 16px; color: var(--red); font-weight: 300; }
.clients-sub { text-align: center; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-400); font-weight: 500; }

/* --- PARTNERS LOGOS --- */
.partners-section { background: var(--white); }
.partners-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; }
.partner-logo-item { width: 160px; height: 80px; display: flex; align-items: center; justify-content: center; padding: 16px; border: 1px solid #2a2a2a; border-radius: var(--radius-sm); background: #1e1e1e; transition: all var(--transition); }
.partner-logo-item img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(0%) brightness(1.1); opacity: 0.85; transition: all var(--transition); }
.partner-logo-item:hover { border-color: var(--red); box-shadow: 0 8px 24px rgba(0,0,0,0.4); transform: translateY(-4px); }
.partner-logo-item:hover img { filter: grayscale(0%) brightness(1.2); opacity: 1; }

/* --- CTA --- */
.cta-section { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-img { object-position: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,18,35,0.94) 0%, rgba(204,0,0,0.6) 100%); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(38px, 5vw, 64px); margin-bottom: 20px; line-height: 1.05; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; }

/* --- FOOTER --- */
.footer { background: var(--navy-dark); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 60px; padding-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sarl { color: rgba(255,255,255,0.5); }
.footer-tagline { font-family: var(--font-display); font-size: 15px; font-style: italic; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all var(--transition); }
.social-link:hover { border-color: var(--red); color: var(--red); }
.footer-col h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-contact-list { gap: 14px !important; }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.5; }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-reg { font-size: 10.5px !important; letter-spacing: 0.3px; }

/* --- SAWA-SMART CREDIT --- */
.footer-credit {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0 20px;
  text-align: center;
}
.footer-credit p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}
.credit-link {
  color: #4ecdc4;
  font-weight: 600;
  transition: color var(--transition);
}
.credit-link:hover { color: #7eddd9; }
.credit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border: 1px solid rgba(78,205,196,0.35);
  border-radius: 4px;
  color: rgba(78,205,196,0.7);
  transition: all var(--transition);
}
.credit-icon:hover { border-color: #4ecdc4; color: #4ecdc4; }

/* --- WHATSAPP FLOAT --- */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 900; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all var(--transition); }
.wa-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-tooltip { position: absolute; right: calc(100% + 12px); background: var(--gray-800); color: var(--white); font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: var(--radius-sm); white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all var(--transition); pointer-events: none; }
.wa-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--gray-800); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero-content { margin: 0; padding: 0 24px; padding-top: 80px; }
  .hero { align-items: flex-end; padding-bottom: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ceo-content { flex-direction: column; gap: 24px; padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .clients-track { gap: 12px; }
  .partners-logos { gap: 16px; }
  .partner-logo-item { width: 130px; height: 65px; }
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .nav-container { padding: 16px 20px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .ceo-content { padding: 28px 20px; }
  .services-grid { grid-template-columns: 1fr; }
}

.agent-link { display:inline-flex; align-items:center; gap:6px; margin-top:8px; margin-bottom:12px; font-size:12px; font-weight:600; color:rgba(255,255,255,0.5); text-decoration:none; border:1px solid rgba(255,255,255,0.15); padding:6px 14px; border-radius:4px; transition:all 0.3s ease; letter-spacing:0.5px; } .agent-link:hover { color:var(--white); border-color:rgba(255,255,255,0.5); background:rgba(255,255,255,0.06); }
