:root {
  --white: #ffffff;
  --grey-50: #f9fafb;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-300: #d1d5db;
  --grey-600: #4b5563;
  --grey-700: #374151;
  --grey-900: #111827;
  --steel: #0f172a;
  --accent: #dc2626;
  --accent-dark: #b91c1c;
  --accent-light: #fef2f2;
  --blue: #3b82f6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  z-index: 100;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--steel);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--grey-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn-contact {
  padding: 0.625rem 1.5rem !important;
  border-radius: 50px;
  background: var(--steel) !important;
  color: var(--white) !important;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: var(--accent) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--steel);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f3f4f6 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-light);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.stars {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--steel);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgb(220 38 38 / 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgb(220 38 38 / 0.4);
}

.btn-secondary {
  border: 2px solid var(--grey-300);
  color: var(--steel);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--steel);
  background: var(--grey-50);
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.stats-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
  animation: slideUp 0.8s ease-out 0.5s backwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  margin-bottom: 1rem;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--grey-600);
  font-weight: 600;
  margin-top: 0.25rem;
}

.avatars {
  display: flex;
  margin-top: 0.5rem;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:nth-child(1) {
  background: #fecaca;
  color: #991b1b;
}

.avatar:nth-child(2) {
  background: #fed7aa;
  color: #9a3412;
}

.avatar:nth-child(3) {
  background: #bfdbfe;
  color: #1e40af;
}

.avatar:nth-child(4) {
  background: #c7d2fe;
  color: #4338ca;
}

/* Clients Logos */
.clients-section {
  padding: 3rem 0;
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.client-logo {
  width: 120px;
  height: 50px;
  background: var(--grey-300);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey-600);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.about-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--steel);
  margin-bottom: 1rem;
}

.about-header p {
  font-size: 1.125rem;
  color: var(--grey-600);
  line-height: 1.8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-box {
  text-align: center;
}

.stat-box-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-box-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
  font-weight: 600;
}

.about-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.features-list {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9375rem;
  color: var(--grey-600);
  margin: 0;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--grey-50);
}

.services-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.services-header {
  position: sticky;
  top: 120px;
}

.services-header-title {
  font-size: 1rem;
  color: var(--grey-600);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-header p {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transform: translateY(-4px);
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 0.875rem;
}

.service-content p {
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--grey-900);
  border-radius: 50px;
  color: var(--grey-900);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  font-size: 0.9375rem;
}

.explore-btn:hover {
  background: var(--grey-900);
  color: var(--white);
  transform: translateX(4px);
}

.explore-btn .arrow-icon {
  width: 20px;
  height: 20px;
  background: var(--grey-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.explore-btn:hover .arrow-icon {
  background: var(--white);
  color: var(--grey-900);
  transform: translateX(4px);
}

.service-image-wrapper {
  width: 100%;
  height: 220px;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--steel);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--grey-600);
  line-height: 1.8;
}

/* Products Section */
.products-section {
  padding: 100px 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
  border-color: var(--accent);
}

.product-image {
  height: 220px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.product-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 0.75rem;
}

.product-content p {
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--grey-50);
  border-radius: 0.75rem;
}

.product-specs li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--grey-700);
  font-size: 0.9rem;
}

.product-specs li::before {
  content: '●';
  color: var(--accent);
  font-size: 0.75rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-200);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--steel);
}

.btn-product {
  padding: 0.625rem 1.25rem;
  background: var(--steel);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-product:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Projects Section */
.projects-section {
  padding: 100px 0;
  background: var(--grey-50);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
}

.project-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.project-info {
  padding: 1.5rem;
}

.project-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 0.5rem;
}

.project-info p {
  color: var(--grey-600);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.9375rem;
  color: var(--grey-600);
  margin: 0;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
}

.satisfaction-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-light);
  border-radius: 50px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1rem;
}

/* Legal Section */
.legal-section {
  padding: 100px 0;
  background: var(--grey-50);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.legal-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  transition: all 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
}

.legal-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--grey-700);
  line-height: 1.6;
}

.legal-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--steel);
}

.form-grid .full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--grey-300);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.site-footer {
  background: var(--steel);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-section h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {

  .hero-container,
  .about-content {
    grid-template-columns: 1fr;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-header {
    position: static;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-image-wrapper {
    height: 250px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 101;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: 0;
    background: var(--white);
    border-left: 1px solid var(--grey-200);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    width: 280px;
    height: calc(100vh - 80px);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid,
  .projects-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Thumbnail legalitas bisa di-zoom */
.legal-card img{cursor:zoom-in}
/* Tampilkan hanya gambar pertama; sisanya hanya muncul di popup */
.legal-card img:nth-of-type(n+2){display:none}
/* baris di atas menyembunyikan gambar ke-2 dan seterusnya */
/* Non-scroll saat modal terbuka */
body.no-scroll{overflow:hidden}

/* Lightbox styles */
.lightbox{
  position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:1000;
}
.lightbox.open{display:flex}
.lightbox-backdrop{position:absolute; inset:0; background:rgba(0,0,0,.6)}
.lightbox-inner{
  position:relative; max-width:min(90vw, 1000px); max-height:90vh; padding:12px;
  border-radius:12px; background:#0b0e11; box-shadow:0 24px 40px rgba(0,0,0,.25);
  display:flex; align-items:center; justify-content:center;
}
.lightbox-image{
  max-width:100%; max-height:80vh; border-radius:8px; display:block;
  background:#fff;
}
.lightbox-close{
  position:absolute; top:8px; right:8px; width:36px; height:36px; border-radius:50%;
  border:0; background:#ffffff; color:#0b0e11; font-size:22px; cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}
.lightbox-prev, .lightbox-next{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%; border:0; cursor:pointer;
  background:#c8102e; color:#fff; font-size:26px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}
.lightbox-prev{left:-22px}
.lightbox-next{right:-22px}
.lightbox-counter{
  position:absolute; bottom:8px; right:12px; color:#fff; font-weight:600; background:rgba(255,255,255,.12);
  padding:4px 8px; border-radius:8px;
}