/* ===== CSS Variables & Reset ===== */
:root {
  --primary: #0b1a2e;
  --primary-light: #132d4f;
  --secondary: #00c9a7;
  --secondary-dark: #00a88a;
  --accent: #e8a838;
  --accent-light: #f5c563;
  --text-light: #ffffff;
  --text-muted: #a0b4c8;
  --text-dark: #1a2a3a;
  --bg-dark: #070f1c;
  --bg-section: #0e1b30;
  --bg-card: #132d4f;
  --bg-light: #f4f7fa;
  --border-subtle: rgba(0, 201, 167, 0.15);
  --gradient-1: linear-gradient(135deg, #0b1a2e 0%, #132d4f 100%);
  --gradient-2: linear-gradient(135deg, #00c9a7 0%, #00a88a 100%);
  --gradient-3: linear-gradient(135deg, #e8a838 0%, #f5c563 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(0, 201, 167, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg-dark);
}

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

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

ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background: var(--gradient-2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-light);
  margin-bottom: 20px;
}

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

/* ===== Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

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

.navbar.scrolled {
  background: rgba(11, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-light);
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-light);
  background: rgba(0, 201, 167, 0.1);
}

.nav-cta {
  background: var(--gradient-2) !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 201, 167, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 1;
}

.hero-graphic {
  width: 100%;
  height: 100%;
  position: relative;
}

.hex-grid {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hex {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(0, 201, 167, 0.05);
  border: 1px solid rgba(0, 201, 167, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(4px);
}

.hex:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.hex:nth-child(2) { top: 5%; right: 15%; animation-delay: 1s; }
.hex:nth-child(3) { top: 35%; left: 40%; animation-delay: 2s; width: 100px; height: 100px; background: rgba(0, 201, 167, 0.08); }
.hex:nth-child(4) { top: 40%; right: 5%; animation-delay: 0.5s; }
.hex:nth-child(5) { bottom: 25%; left: 15%; animation-delay: 1.5s; }
.hex:nth-child(6) { bottom: 20%; right: 25%; animation-delay: 2.5s; width: 90px; height: 90px; }
.hex:nth-child(7) { top: 60%; left: 5%; animation-delay: 3s; }
.hex:nth-child(8) { bottom: 5%; left: 35%; animation-delay: 0.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(2deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
}

.hero-stat .number span {
  color: var(--secondary);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.btn-primary {
  background: var(--gradient-2);
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 201, 167, 0.35);
}

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

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

.btn-accent {
  background: var(--gradient-3);
  color: var(--primary);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232, 168, 56, 0.35);
}

/* ===== Features / Services ===== */
.features {
  background: var(--bg-section);
}

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

.feature-card {
  background: rgba(19, 45, 79, 0.5);
  border: 1px solid rgba(0, 201, 167, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 201, 167, 0.2);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(0, 201, 167, 0.1);
  color: var(--secondary);
}

.feature-card:nth-child(even) .feature-icon {
  background: rgba(232, 168, 56, 0.1);
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== About Section ===== */
.about {
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.about-visual {
  position: relative;
}

.about-image-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-box .pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 25% 25%, var(--secondary) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--accent) 1px, transparent 1px);
  background-size: 30px 30px;
}

.about-image-box .center-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-light);
}

.about-image-box .center-content .big-text {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-image-box .center-content .sub-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-float-card {
  position: absolute;
  background: rgba(19, 45, 79, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  animation: float 6s ease-in-out infinite;
}

.about-float-card.card-1 {
  bottom: -20px;
  right: -20px;
}

.about-float-card.card-2 {
  top: -20px;
  left: -20px;
  animation-delay: 3s;
}

.about-float-card .afc-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
}

.about-float-card .afc-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 201, 167, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 201, 167, 0.08);
}

.about-highlight-item .check {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

.about-highlight-item span {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== Industries ===== */
.industries {
  background: var(--bg-section);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.industry-card {
  background: rgba(19, 45, 79, 0.4);
  border: 1px solid rgba(0, 201, 167, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 201, 167, 0.2);
  background: rgba(19, 45, 79, 0.7);
}

.industry-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(0, 201, 167, 0.1);
  color: var(--secondary);
}

.industry-card h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.industry-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ===== Process ===== */
.process {
  background: var(--bg-dark);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.process-step .step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 201, 167, 0.3);
}

.process-step h4 {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--bg-section);
}

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

.testimonial-card {
  background: rgba(19, 45, 79, 0.5);
  border: 1px solid rgba(0, 201, 167, 0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 201, 167, 0.2);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.testimonial-info .name {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-info .role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

/* ===== Contact Section ===== */
.contact {
  background: var(--bg-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 201, 167, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-item-text .value {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form {
  background: rgba(19, 45, 79, 0.5);
  border: 1px solid rgba(0, 201, 167, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(7, 15, 28, 0.6);
  border: 1px solid rgba(0, 201, 167, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.93rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.1);
}

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

.form-group select option {
  background: var(--primary);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(0, 201, 167, 0.08);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-brand .logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.83rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.83rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ===== Page Header (for inner pages) ===== */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.06) 0%, transparent 70%);
}

.page-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-light);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb .separator {
  color: rgba(255,255,255,0.2);
}

.breadcrumb .current {
  color: var(--secondary);
}

/* ===== Legal Pages ===== */
.legal-content {
  background: var(--bg-dark);
  padding: 80px 0;
}

.legal-article {
  max-width: 860px;
  margin: 0 auto;
}

.legal-article h2 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 201, 167, 0.08);
}

.legal-article h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-article h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin: 24px 0 12px;
}

.legal-article p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.legal-article ul {
  margin: 12px 0 18px 20px;
}

.legal-article ul li {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 6px;
  font-size: 0.95rem;
  position: relative;
  padding-left: 16px;
}

.legal-article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

.legal-updated {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 201, 167, 0.08);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 30px;
}

/* ===== Services Page Specific ===== */
.services-detailed {
  background: var(--bg-section);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid rgba(0, 201, 167, 0.06);
}

.service-detail-card:last-child {
  border-bottom: none;
}

.service-detail-card.reverse {
  direction: rtl;
}

.service-detail-card.reverse > * {
  direction: ltr;
}

.service-detail-visual {
  aspect-ratio: 4/3;
  background: var(--gradient-1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-visual .s-icon {
  font-size: 4rem;
  opacity: 0.3;
}

.service-detail-visual .s-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-detail-content h3 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-content ul {
  margin-bottom: 20px;
}

.service-detail-content ul li {
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.93rem;
}

.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--secondary);
}

/* ===== About Page Specific ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  background: rgba(19, 45, 79, 0.5);
  border: 1px solid rgba(0, 201, 167, 0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 201, 167, 0.2);
}

.value-card .icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

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

.team-card {
  background: rgba(19, 45, 79, 0.4);
  border: 1px solid rgba(0, 201, 167, 0.08);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 201, 167, 0.2);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.team-card:nth-child(1) .team-avatar { background: var(--gradient-2); }
.team-card:nth-child(2) .team-avatar { background: var(--gradient-3); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, #ec4899, #f43f5e); }

.team-card h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 500;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.83rem;
  margin-top: 10px;
  line-height: 1.6;
}

/* ===== Counter Animation ===== */
.counter-section {
  background: var(--gradient-1);
  padding: 60px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item .counter-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.counter-item .counter-suffix {
  font-size: 2rem;
  color: var(--accent);
}

.counter-item .counter-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .hero-stats { gap: 30px; }
  .process-timeline { gap: 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: var(--transition);
    border-left: 1px solid var(--border-subtle);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  
  .process-timeline {
    flex-direction: column;
    gap: 30px;
  }
  
  .process-timeline::before { display: none; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .about-highlights { grid-template-columns: 1fr; }
}
