/* ============================================
   COMPLY TECHNOLOGY SOLUTIONS
   Modern Website Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #2a2322;
  --primary-light: #332b2a;
  --secondary: #3e3534;
  --accent: #ea7e52;
  --accent-hover: #f09070;
  --accent-glow: rgba(234, 126, 82, 0.12);
  --blue: #c45d38;
  --blue-dark: #a84d2e;
  --text: #d6d0cf;
  --text-light: #f9f5f4;
  --text-muted: #9a9493;
  --white: #FFFFFF;
  --border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(62, 53, 52, 0.55);
  --card-border: rgba(234, 126, 82, 0.14);
  --gradient-1: linear-gradient(135deg, #ea7e52 0%, #d4654a 100%);
  --gradient-2: linear-gradient(135deg, #2a2322 0%, #3e3534 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.35);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Maven Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Montserrat', 'Maven Pro', sans-serif;
}

/* ---------- Typography ---------- */
.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--primary-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: 0.3px;
}

.btn--primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(234, 126, 82, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234, 126, 82, 0.4);
  color: var(--primary);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(36, 30, 29, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo:hover {
  opacity: 0.85;
}

.nav__logo-img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 12px;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 23, 0.72);
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234, 126, 82, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 126, 82, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.hero__glow--1 {
  background: var(--accent);
  top: -200px;
  right: -100px;
  opacity: 0.12;
}

.hero__glow--2 {
  background: #8B4513;
  bottom: -200px;
  left: -100px;
  opacity: 0.08;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__text {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.hero__stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-ring {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(234, 126, 82, 0.1);
  position: relative;
  animation: rotate-slow 30s linear infinite;
}

.hero__visual-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(234, 126, 82, 0.07);
  animation: rotate-slow 20s linear infinite reverse;
}

.hero__visual-ring::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(234, 126, 82, 0.05);
}

@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}

.hero__visual-center {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--gradient-1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(234, 126, 82, 0.3);
}

.hero__visual-center svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.hero__visual-node {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.hero__visual-node svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.hero__visual-node:nth-child(2) { top: 10%; right: 5%; }
.hero__visual-node:nth-child(3) { top: 50%; right: -5%; }
.hero__visual-node:nth-child(4) { bottom: 10%; right: 15%; }
.hero__visual-node:nth-child(5) { bottom: 5%; left: 15%; }
.hero__visual-node:nth-child(6) { top: 50%; left: -5%; }
.hero__visual-node:nth-child(7) { top: 5%; left: 10%; }

/* ---------- Trusted By / Partners ---------- */
.partners {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--primary-light);
}

.partners__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.partners__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.partners__logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partners__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: var(--transition);
  white-space: nowrap;
}

.partners__logo:hover {
  opacity: 1;
  color: var(--white);
}

/* ---------- Cards ---------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(0, 212, 170, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-1);
  opacity: 0;
  transition: var(--transition);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.card__icon--blue {
  background: rgba(196, 93, 56, 0.1);
  border-color: rgba(196, 93, 56, 0.15);
}

.card__icon--blue svg {
  color: var(--blue);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.card__link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.card__link:hover svg {
  transform: translateX(4px);
}

/* Card grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---------- Products Section ---------- */
.products__header {
  text-align: center;
  margin-bottom: 64px;
}

.products__header .section-desc {
  margin: 0 auto;
}

.product-card {
  padding: 40px;
}

.product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.product-card__header .product-card__badge {
  margin-bottom: 12px;
}

.product-card__header .product-card__title {
  margin-bottom: 0;
}

.product-card__logo {
  max-width: 120px;
  max-height: 60px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.product-card__logo--invert {
  filter: brightness(0) invert(1);
}

.product-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.product-card__title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.product-card__desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.product-card__features {
  margin-bottom: 28px;
}

.product-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
}

.product-card__feature svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Services Section ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  text-align: center;
  padding: 48px 32px;
}

.service-card__number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  margin-bottom: 16px;
}

/* ---------- About / Vision Section ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__content {
  max-width: 560px;
}

.about__visual {
  position: relative;
}

.about__card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.about__card + .about__card {
  margin-top: 20px;
}

.about__card-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.about__card-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- Values ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
}

.value-card__emoji {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.value-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.value-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Team Section ---------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  padding: 36px 24px;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.team-card__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* ---------- CTA Section ---------- */
.cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact Form ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact__info {
  max-width: 480px;
}

.contact__methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__method-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__method-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact__method-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact__method-value {
  color: var(--white);
  font-weight: 500;
}

.contact__form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(28, 24, 23, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 126, 82, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 130px;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-light);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer__link {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--accent-glow);
  border-color: rgba(0, 212, 170, 0.3);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.footer__social-link:hover svg {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__vision {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 212, 170, 0.05);
  border: 1px solid rgba(0, 212, 170, 0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background: var(--primary-light);
  background-image: url('../assets/bg-pattern.svg');
  background-size: cover;
  background-position: center top;
}

.page-header__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.06;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-header__desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Feature List ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.feature-list__item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero__visual {
    display: none;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: var(--transition);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .grid-2,
  .grid-3,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .values__grid,
  .team__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .partners__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .partners__logos {
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

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

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-12 { margin-top: 48px; }
.mb-16 { margin-bottom: 64px; }

/* Overlay for mobile nav */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav__overlay.active {
  display: block;
}

/* ---------- Product Detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
}

.product-detail:nth-child(even) {
  direction: rtl;
}

.product-detail:nth-child(even) > * {
  direction: ltr;
}

.product-detail + .product-detail {
  border-top: 1px solid var(--border);
}

.product-detail__content {
  max-width: 520px;
}

.product-detail__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail__icon-box {
  width: 200px;
  height: 200px;
  background: var(--gradient-1);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(234, 126, 82, 0.2);
}

.product-detail__icon-box svg {
  width: 80px;
  height: 80px;
  color: var(--primary);
}

.product-detail__icon-box--blue {
  background: linear-gradient(135deg, #c45d38 0%, #8B4513 100%);
  box-shadow: 0 20px 60px rgba(196, 93, 56, 0.2);
}

.product-detail__icon-box--purple {
  background: linear-gradient(135deg, #8B4513 0%, #6b3a2a 100%);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
}

.product-detail__icon-box--orange {
  background: linear-gradient(135deg, #d4654a 0%, #b84530 100%);
  box-shadow: 0 20px 60px rgba(212, 101, 74, 0.2);
}

.product-detail__logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-detail__logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.product-detail__logo--invert {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-detail:nth-child(even) {
    direction: ltr;
  }

  .product-detail__icon-box {
    width: 140px;
    height: 140px;
    border-radius: 30px;
  }

  .product-detail__icon-box svg {
    width: 56px;
    height: 56px;
  }

  .product-detail__logo {
    max-width: 200px;
  }
}
