/* =====================================================
   EndToEnd Services — style.css
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* === CSS Variables === */
:root {
  --navy:       #0f2d4a;
  --blue:       #1a5288;
  --blue-mid:   #1e6ab0;
  --blue-light: #2e8fcf;
  --orange:     #f7501e;
  --orange-2:   #ff7b3a;
  --orange-glow:rgba(247,80,30,0.18);
  --white:      #ffffff;
  --off-white:  #f5f8fc;
  --gray-100:   #eef2f8;
  --gray-300:   #c5d3e0;
  --gray-500:   #7a8fa6;
  --gray-700:   #3e5168;
  --text:       #0f1e2e;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 2px 8px rgba(15,45,74,.08);
  --shadow:     0 8px 32px rgba(15,45,74,.14);
  --shadow-lg:  0 20px 60px rgba(15,45,74,.20);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Poppins', sans-serif;
}

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

/* === Typography === */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 800; color: var(--navy); }
h1 { font-size: clamp(1.6rem, 3.2vw, 2.6rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -.5px; }
h3 { font-size: 1.22rem; font-weight: 700; }
p { color: var(--gray-700); }

/* === Utility === */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-header h2 { margin-bottom: 18px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.07rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .97rem;
  font-family: var(--font-head);
  box-shadow: 0 6px 24px rgba(247,80,30,.38);
  transition: var(--transition);
  letter-spacing: .3px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(247,80,30,.50);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .97rem;
  font-family: var(--font-head);
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-head);
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--transition);
  font-size: .97rem;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: white; }

/* =====================================================
   HEADER / NAV
   ===================================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#header.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { 
  height: 46px; 
  width: auto; 
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 4px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: 8px 16px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--gray-700);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--blue-mid); background: var(--gray-100); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--navy);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-100);
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 11px 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--blue); background: var(--gray-100); }
.mobile-nav .btn-primary { margin-top: 8px; justify-content: center; }

/* =====================================================
   HERO
   ===================================================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, #1e5e99 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,80,30,.15), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.hero-content h1 span { color: var(--orange-2); }
.hero-content p {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.8rem; font-weight: 800; color: white; font-family: var(--font-head); line-height: 1; }
.stat span { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 4px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-visual img {
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.4));
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

.hero-card-float {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  animation: floatY 5s ease-in-out infinite;
}
.hero-card-float .icon { font-size: 1.4rem; }
.hero-card-float.card-1 { top: 15%; left: -10%; animation-delay: -1s; }
.hero-card-float.card-2 { bottom: 20%; right: -8%; animation-delay: -2.5s; }
.hero-card-float .up { color: #22c55e; font-size: .78rem; }

/* =====================================================
   SERVICES
   ===================================================== */
#services {
  padding: 100px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gray-300); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(26,82,138,.08), rgba(247,80,30,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--orange), var(--orange-2)); }
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* =====================================================
   PLATFORMS
   ===================================================== */
#platforms {
  padding: 80px 0;
  background: white;
}
.platforms-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.platforms-text h2 { margin-bottom: 20px; }
.platforms-text p { margin-bottom: 28px; font-size: 1.05rem; }
.platform-cards { display: flex; flex-direction: column; gap: 16px; }
.platform-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.platform-item:hover { border-color: var(--blue-light); background: rgba(46,143,207,.05); transform: translateX(6px); }
.platform-logo {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  flex-shrink: 0;
}
.platform-logo.amazon { background: #fff3cd; color: #c45f00; }
.platform-logo.ebay   { background: #e8f4fd; color: #0064d2; }
.platform-logo.shopify{ background: #eaf6e5; color: #5c9f3d; }
.platform-item h4 { font-size: 1rem; margin-bottom: 4px; }
.platform-item p { font-size: .86rem; color: var(--gray-500); margin: 0; }

.platforms-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platforms-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
#why {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(247,80,30,.08);
}
#why .section-header h2, #why .section-header p { color: white; }
#why .section-header p { color: rgba(255,255,255,.72); }
#why .section-header .tag { background: rgba(247,80,30,.2); color: var(--orange-2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.why-card .why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.why-card h3 { color: white; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.68); font-size: .92rem; }

/* =====================================================
   ABOUT
   ===================================================== */
#about {
  padding: 100px 0;
  background: var(--off-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(247,80,30,.4);
  text-align: center;
}
.about-badge strong { display: block; font-size: 2.2rem; font-family: var(--font-head); font-weight: 800; line-height: 1; }
.about-badge span { font-size: .85rem; opacity: .9; }

.about-content .tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; font-size: 1.02rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-700);
}
.about-feat::before { content: '✓'; width: 22px; height: 22px; background: var(--orange-glow); color: var(--orange); font-weight: 700; font-size: .75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* =====================================================
   PROCESS
   ===================================================== */
#process {
  padding: 100px 0;
  background: white;
}
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue-light));
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  background: white;
  border: 3px solid var(--gray-100);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-mid);
  transition: var(--transition);
  position: relative;
}
.process-step:hover .step-num {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-color: var(--orange);
  color: white;
  transform: scale(1.1);
}
.step-icon-inner { font-size: 1.5rem; }
.process-step h4 { font-size: .95rem; margin-bottom: 8px; color: var(--navy); }
.process-step p { font-size: .84rem; color: var(--gray-500); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
#testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 5rem;
  font-family: var(--font-head);
  color: var(--gray-100);
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { display: flex; gap: 4px; margin-bottom: 18px; }
.stars span { color: #f59e0b; font-size: 1rem; }
.testimonial-card p { font-size: .97rem; color: var(--gray-700); font-style: italic; margin-bottom: 24px; line-height: 1.75; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.av-blue { background: linear-gradient(135deg, var(--navy), var(--blue-mid)); }
.av-orange { background: linear-gradient(135deg, var(--orange), var(--orange-2)); }
.av-green { background: linear-gradient(135deg, #16a34a, #4ade80); }
.author-info strong { display: block; font-weight: 700; font-size: .95rem; color: var(--navy); }
.author-info span { font-size: .82rem; color: var(--gray-500); }

/* =====================================================
   CONTACT
   ===================================================== */
#contact {
  padding: 100px 0;
  background: white;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 36px; font-size: 1.02rem; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--orange); background: var(--orange-glow); }
.ci-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-text strong { display: block; font-size: .85rem; color: var(--gray-500); font-weight: 500; margin-bottom: 3px; }
.ci-text a, .ci-text p { font-size: .96rem; font-weight: 600; color: var(--navy); margin: 0; }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  border: 1px solid var(--gray-100);
}
.contact-form-wrap h3 { margin-bottom: 28px; font-size: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-size: .86rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(30,106,176,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form-wrap .btn-primary { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--navy);
  padding: 72px 0 32px;
  color: rgba(255,255,255,.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 42px; margin-bottom: 16px; filter: brightness(2); }
.footer-brand p { font-size: .92rem; max-width: 280px; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: white; }

.footer-col h4 {
  color: white;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--orange-2); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .88rem; color: rgba(255,255,255,.6); align-items: flex-start; }
.footer-contact-item span:first-child { font-size: 1rem; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--orange-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .86rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .86rem; color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange-2); }

/* =====================================================
   PAGE-SPECIFIC (about.html / services.html)
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: white; margin-bottom: 16px; position: relative; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; font-size: 1.1rem; position: relative; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: .86rem; color: rgba(255,255,255,.5); margin-bottom: 16px; position: relative; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--orange-2); }
.breadcrumb span { color: var(--orange-2); }

/* About page extras */
.team-section { padding: 100px 0; background: var(--off-white); }
.values-section { padding: 100px 0; background: white; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.value-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  background: white;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: .9rem; }

/* Services page extras */
.services-detail { padding: 100px 0; }
.service-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  margin-bottom: 20px;
}
.service-detail-card:hover { box-shadow: var(--shadow); border-color: var(--gray-300); }
.sd-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(26,82,138,.1), rgba(247,80,30,.1));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.sd-content h3 { margin-bottom: 10px; }
.sd-content p { font-size: .95rem; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-28px); }
[data-aos="fade-left"].aos-in { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(28px); }
[data-aos="fade-right"].aos-in { transform: translateX(0); }

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 24px rgba(247,80,30,.4);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { transform: translateY(-3px); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .about-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 60px 0 40px; }
  .hero-content p, .hero-buttons { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .platforms-wrapper { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-badge { right: 0; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 20px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
}
