/* ===== SYSTM GULF - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #0a0a0f;
  --bg2: #13131a;
  --bg3: #1a1a24;
  --primary: #e63329;
  --primary2: #ff6b35;
  --gradient: linear-gradient(135deg, #e63329, #ff6b35);
  --gradient-radial: radial-gradient(circle at 50% 50%, rgba(230,51,41,0.15), transparent 70%);
  --text: #ffffff;
  --muted: #6b7280;
  --muted2: #9ca3af;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 8px 40px rgba(230,51,41,0.25);
  --transition: 0.3s ease;
  --white: #ffffff;
  --dark: #0a0a0f;
  --form-row: flex;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(230,51,41,0.1);
  border: 1px solid rgba(230,51,41,0.25);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc {
  font-size: 1.05rem;
  color: var(--muted2);
  max-width: 600px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted2);
  transition: color var(--transition);
}
.nav-links a:hover { color: white; }
.nav-links a.active { color: white; }
.btn-nav {
  background: var(--gradient);
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.875rem;
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(230,51,41,0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--muted2);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: white; }
.mobile-nav .btn-nav {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(230,51,41,0.12);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(255,107,53,0.08);
  bottom: -100px; left: -100px;
  animation-delay: 3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(230,51,41,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: 1.5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gradient);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-visual {
  position: relative;
}
.hero-card-stack {
  position: relative;
}
.hero-main-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-info .step-title { font-size: 0.9rem; font-weight: 600; }
.step-info .step-desc { font-size: 0.8rem; color: var(--muted); }
.step-line {
  width: 2px;
  height: 20px;
  background: var(--border);
  margin-left: 17px;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(230,51,41,0.3);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(230,51,41,0.1);
  border: 1px solid rgba(230,51,41,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.card-desc {
  font-size: 0.9rem;
  color: var(--muted2);
  line-height: 1.6;
}

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== PARTNER LOGOS ===== */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.partner-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  min-width: 180px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.partner-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(230,51,41,0.15);
}
.partner-logo {
  max-width: 160px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.9);
  transition: filter var(--transition), transform var(--transition);
}
.partner-card:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ===== CLIENT MARQUEE ===== */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0 1.2rem;
}
.client-item img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(50%) opacity(0.8);
  transition: filter var(--transition);
}
.client-item:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ===== CONTACT FORM ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--muted2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  color: white;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(230,51,41,0.12) 0%, transparent 70%);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--muted2);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted2);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: white; }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}
.footer-contact-item .icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== SERVICE PAGE ===== */
.service-detail .service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-icon-lg {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(230,51,41,0.1);
  border: 1px solid rgba(230,51,41,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.benefit-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.benefit-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(230,51,41,0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item p {
  font-size: 0.9rem;
  color: var(--muted2);
  line-height: 1.6;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--muted); }
.breadcrumb .current { color: white; }

/* ===== SUCCESS STORY CARD ===== */
.story-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(230,51,41,0.3);
}
.story-company {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.story-industry {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
.story-section { margin-bottom: 1rem; }
.story-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.story-section p {
  font-size: 0.875rem;
  color: var(--muted2);
  line-height: 1.6;
}
.story-results {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.result-badge {
  background: rgba(230,51,41,0.1);
  border: 1px solid rgba(230,51,41,0.2);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

/* ===== BLOG ===== */
.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.blog-img {
  height: 200px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.08;
}
.blog-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.blog-tag {
  color: var(--primary);
  font-weight: 600;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.875rem;
  color: var(--muted2);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.blog-link:hover { gap: 0.7rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

/* ===== INFO BOXES ===== */
.info-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-box-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.info-box-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 2.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-detail .service-content { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  text-align: center;
}
.page-hero .section-tag { margin-bottom: 1rem; display: inline-block; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: var(--white); margin-bottom: 1.2rem; }
.page-hero p { font-size: 1.15rem; color: var(--muted); max-width: 600px; margin: 0 auto 2rem; }

/* ===== SECTION PADDING ===== */
.section-pad { padding: 100px 0; }

/* ===== PRODUCTS PAGE ===== */
.products-section { background: #f8f9fa; }
.products-grid { display: flex; flex-direction: column; gap: 3rem; }
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(230,51,41,0.12); }
.product-logo-wrap {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-right: 1px solid #e5e7eb;
}
.product-logo { max-width: 160px; max-height: 100px; object-fit: contain; }
.product-logo-icon { font-size: 4rem; }
.product-icon { font-size: 4rem; }
.product-body { padding: 2.5rem; }
.product-body h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--dark); }
.product-tagline { color: var(--primary); font-weight: 600; margin-bottom: 1rem; font-size: 0.95rem; }
.product-body p { color: #4b5563; margin-bottom: 1.5rem; line-height: 1.7; }
.product-features { list-style: none; padding: 0; margin-bottom: 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.product-features li { color: #374151; font-size: 0.9rem; padding: 0.4rem 0; border-bottom: 1px solid #f3f4f6; }
.product-features li::before { content: "• "; color: var(--primary); font-weight: 700; }

/* ===== SUCCESS STORIES ===== */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.story-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(230,51,41,0.1); border-color: var(--primary); }
.story-header { display: flex; align-items: center; gap: 1rem; }
.story-logo { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; background: #f8f9fa; padding: 4px; }
.story-icon-placeholder { width: 56px; height: 56px; font-size: 2rem; display: flex; align-items: center; justify-content: center; background: #f8f9fa; border-radius: 8px; }
.story-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 0; }
.industry-badge { font-size: 0.75rem; color: var(--primary); font-weight: 600; background: rgba(230,51,41,0.08); padding: 2px 8px; border-radius: 20px; display: inline-block; margin-top: 4px; }
.story-section p, .story-results p { font-size: 0.88rem; color: #4b5563; margin: 0; line-height: 1.6; }
.story-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.4rem; }
.story-label.challenge { color: #dc2626; }
.story-label.solution { color: #2563eb; }
.story-label.results { color: #16a34a; }
.story-results ul { list-style: none; padding: 0; margin: 0; font-size: 0.85rem; color: #374151; display: flex; flex-direction: column; gap: 0.3rem; }

/* ===== BLOG PAGE ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(230,51,41,0.1); }
.blog-img { height: 180px; background: linear-gradient(135deg, var(--primary), #ff6b35); }
.blog-img-1 { background: linear-gradient(135deg, #e63329, #ff6b35); }
.blog-img-2 { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.blog-img-3 { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.blog-img-4 { background: linear-gradient(135deg, #059669, #10b981); }
.blog-img-5 { background: linear-gradient(135deg, #d97706, #f59e0b); }
.blog-img-6 { background: linear-gradient(135deg, #db2777, #ec4899); }
.blog-body { padding: 1.5rem; }
.blog-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); background: rgba(230,51,41,0.08); padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 0.8rem; }
.blog-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-body p { font-size: 0.88rem; color: #6b7280; line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: #9ca3af; margin-bottom: 0.8rem; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.contact-info > p { color: #4b5563; line-height: 1.7; margin-bottom: 2rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(230,51,41,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; font-size: 0.9rem; }
.contact-info-item a, .contact-info-item p { color: #4b5563; font-size: 0.9rem; margin: 0; }
.contact-info-item a:hover { color: var(--primary); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #374151; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-family: inherit; font-size: 0.95rem; color: var(--dark); background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,51,41,0.1);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start; }
.service-detail-main h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.service-detail-main p { color: #4b5563; line-height: 1.8; margin-bottom: 1.5rem; }
.step-simple { display: flex; gap: 1.2rem; margin-bottom: 1.5rem; align-items: flex-start; }
.step-simple .step-num { width: 44px; height: 44px; background: var(--primary); color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }
.step-simple h4 { font-weight: 700; color: var(--dark); margin: 0 0 0.3rem; }
.step-simple p { color: #6b7280; font-size: 0.9rem; margin: 0; }
.benefits-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.07); margin-bottom: 1.5rem; }
.benefits-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 1.2rem; }
.benefits-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.benefits-list li { color: #374151; font-size: 0.9rem; padding-bottom: 0.7rem; border-bottom: 1px solid #f3f4f6; }
.cta-aside { background: linear-gradient(135deg, var(--primary), #ff6b35); border-radius: var(--radius); padding: 2rem; color: white; }
.cta-aside h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; }
.cta-aside p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 1.2rem; }
.btn-primary.full { width: 100%; text-align: center; display: block; }
.cta-aside .btn-primary { background: white; color: var(--primary); }
.cta-aside .btn-primary:hover { background: #f8f9fa; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .product-card { grid-template-columns: 1fr; }
  .product-logo-wrap { border-right: none; border-bottom: 1px solid #e5e7eb; padding: 2rem; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stories-grid, .blog-grid { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: 1fr; }
}

/* ===== FIXES ===== */
.form-row { display: flex; gap: 1rem; }
.form-row .form-group { flex: 1; }
.products-section { background: var(--bg2); }
.product-card { background: var(--bg3); border: 1px solid var(--border); }
.product-logo-wrap { background: rgba(255,255,255,0.05); border-right: 1px solid var(--border); }
.product-body h2 { color: var(--text); }
.product-tagline { color: var(--primary); }
.product-body p { color: var(--muted2); }
.product-features li { color: var(--muted2); border-bottom: 1px solid var(--border); }
.story-card { background: var(--bg2); border: 1px solid var(--border); }
.story-header h3 { color: var(--text); }
.story-section p, .story-results p { color: var(--muted2); }
.story-results ul { color: var(--muted2); }
.blog-card { background: var(--bg2); }
.blog-body h3 { color: var(--text); }
.blog-body p { color: var(--muted2); }
.blog-meta { color: var(--muted); }
.contact-info h2 { color: var(--text); }
.contact-info > p { color: var(--muted2); }
.contact-info-item strong { color: var(--text); }
.contact-info-item a, .contact-info-item p { color: var(--muted2); }
.contact-form-wrap { background: var(--bg2); border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form-wrap h3 { color: var(--text); }
.form-group label { color: var(--muted2); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg3); border: 1px solid var(--border); color: var(--text); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.service-detail-main h2, .service-detail-main h3 { color: var(--text); }
.service-detail-main p { color: var(--muted2); }
.step-simple h4 { color: var(--text); }
.step-simple p { color: var(--muted2); }
.benefits-card { background: var(--bg2); border: 1px solid var(--border); }
.benefits-card h3 { color: var(--text); }
.benefits-list li { color: var(--muted2); border-bottom: 1px solid var(--border); }
.section-pad { background: var(--bg); }
.page-hero { background: var(--bg); }

/* ===== FOOTER INNER (inner pages) ===== */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-inner .footer-brand p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.4rem; }
.footer-inner .footer-col h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 1.2rem; color: white; }
.footer-inner .footer-col a { display: block; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.6rem; transition: color var(--transition); }
.footer-inner .footer-col a:hover { color: white; }
.footer-inner .footer-col p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.3rem; }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* Partner card with dark background (for white logos) */
.partner-card-dark {
  background: #0d1b3e !important;
  border-color: #1e3a6e !important;
}
.partner-card-dark .partner-logo {
  filter: brightness(1.1) opacity(0.95) !important;
}
.partner-card-dark:hover {
  border-color: var(--primary) !important;
  background: #0d1b3e !important;
}
