/* ==========================================================================
   NASCENT SOLUCIONES S.R.L. - Hojas de Estilos Principales
   ========================================================================== */

:root {
  /* Colores Corporativos */
  --primary-red: #e31837;      /* Rojo vibrante del logo */
  --primary-dark-red: #b3122b; /* Tono oscuro para hover */
  --primary-light-red: #fdedef;
  --accent-gold: #f4a600;      /* Amarillo/Dorado del logo */
  --dark-navy: #151e2d;        /* Azul oscuro/casi negro del texto */
  
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --pure-white: #ffffff;
  --border-color: #e2e8f0;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(21,30,45,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate-700);
  background-color: var(--pure-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-navy);
  font-weight: 700;
  line-height: 1.25;
}

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

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

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

/* ================= Top Bar ================= */
.top-bar {
  background-color: var(--dark-navy);
  color: var(--slate-100);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info svg {
  color: var(--accent-gold);
}

.top-bar-badge {
  background-color: rgba(227, 24, 55, 0.2);
  border: 1px solid var(--primary-red);
  color: #ff999f;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ================= Header / Nav ================= */
.site-header {
  background-color: var(--pure-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

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

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

/* Logo CSS */
.logo-blocks {
  display: grid;
  grid-template-columns: 16px 16px;
  grid-template-rows: 16px 16px;
  gap: 4px;
  margin-right: 4px;
}

.block-red {
  background-color: var(--primary-red);
  border-radius: 4px;
}

.block-yellow {
  background-color: var(--accent-gold);
  border-radius: 4px;
}

.logo-blocks .block-red:first-child { grid-area: 1 / 1 / 2 / 2; }
.logo-blocks .block-yellow { grid-area: 1 / 2 / 2 / 3; }
.logo-blocks .block-red:last-child { grid-area: 2 / 1 / 3 / 2; }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--dark-navy);
  letter-spacing: 0px;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-700);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-red);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-header {
  background-color: var(--primary-red);
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(227,24,55,0.25);
}

.btn-header:hover {
  background-color: var(--primary-dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(227,24,55,0.35);
}

.btn-header::after {
  display: none !important;
}

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--dark-navy);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--primary-red);
}

/* ================= Hero Section ================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(21,30,45,0.95) 0%, rgba(30,41,59,0.92) 100%), url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--dark-navy);
  color: white;
  padding: 110px 0 90px;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(227,24,55,0.25);
  border-left: 3px solid var(--accent-gold);
  color: #ff9da2;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-title {
  font-size: 2.75rem;
  color: white;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-red);
  color: white;
  box-shadow: 0 4px 14px rgba(227,24,55,0.4);
}

.btn-primary:hover {
  background-color: var(--primary-dark-red);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: white;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-stat-box {
  background: rgba(21, 30, 45, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border-top: 3px solid var(--accent-gold);
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ================= Corporate Credentials Bar ================= */
.credentials-bar {
  background-color: var(--slate-100);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

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

.cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cred-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.cred-text h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--dark-navy);
}

.cred-text p {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* ================= Section Base ================= */
.section {
  padding: 85px 0;
}

.section-bg-light {
  background-color: var(--slate-50);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 55px;
}

.section-tag {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--dark-navy);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
}

/* ================= About Section ================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--slate-200) 0%, var(--slate-300) 100%);
  min-height: 440px;
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
  background-color: var(--slate-200);
}

.about-card-overlay {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--dark-navy);
  color: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  max-width: 260px;
  border-left: 4px solid var(--accent-gold);
}

.about-card-overlay h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.about-card-overlay p {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--dark-navy);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.6;
}

.about-text {
  margin-bottom: 24px;
  color: var(--slate-600);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.mv-box {
  background: var(--slate-50);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  border-top: 3px solid var(--primary-red);
}

.mv-box h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-navy);
}

.mv-box svg {
  color: var(--accent-gold);
}

.mv-box p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.55;
}

/* ================= Solutions & Divisions ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(227,24,55,0.3);
}

.service-img-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-200) 0%, var(--slate-300) 100%);
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-red);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-content {
  padding: 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark-navy);
}

.service-content p {
  font-size: 0.92rem;
  color: var(--slate-600);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--slate-700);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.btn-card-action {
  color: var(--primary-red);
  border: 1px solid var(--primary-red);
  text-align: center;
  justify-content: center;
  background-color: transparent;
}

.btn-card-action:hover {
  background-color: var(--primary-red);
  color: white;
}

/* ================= Complementary Services Banner ================= */
.comp-services-section {
  background: linear-gradient(135deg, var(--dark-navy), var(--slate-800));
  color: white;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-top: 60px;
}

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

.comp-box {
  border-left: 3px solid var(--accent-gold);
  padding-left: 20px;
}

.comp-box h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comp-box h4 svg {
  color: var(--primary-red);
}

.comp-box p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= Market Sectors / Portfolio ================= */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sector-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.sector-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sector-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light-red);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sector-info h4 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--dark-navy);
}

.sector-info p {
  font-size: 0.92rem;
  color: var(--slate-600);
  margin-bottom: 12px;
  line-height: 1.5;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.client-tag {
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
}

/* ================= Why Choose Us ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: white;
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--primary-light-red);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-navy);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.55;
}

/* ================= Structure / Org Chart ================= */
.org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.org-item {
  background: var(--slate-50);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.org-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.org-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #cbd5e1;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
}

.org-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark-navy);
}

.org-item p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* ================= Contact Section ================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.contact-sidebar {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--slate-800) 100%);
  color: white;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-sidebar h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.contact-sidebar p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

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

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  color: #cbd5e1;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail-text span, 
.contact-detail-text a {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}

.rep-card {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.rep-name {
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
}

.rep-title {
  color: #94a3b8;
  font-size: 0.8rem;
}

.contact-form-box {
  padding: 44px;
}

.contact-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--dark-navy);
}

.contact-form-box p {
  color: var(--slate-500);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

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

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background-color: var(--slate-50);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(227,24,55,0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* ================= Footer ================= */
.site-footer {
  background-color: var(--dark-navy);
  color: #94a3b8;
  padding: 70px 0 30px;
  border-top: 4px solid var(--accent-gold);
}

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

.footer-logo-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

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

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Toast Notification for Form */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--dark-navy);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary-red);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-width: 90%;
  pointer-events: none;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ================= Responsive Queries ================= */
@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .org-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--pure-white);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
    border-top: 1px solid var(--border-color);
  }
  .nav-links.active {
    display: flex;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .top-bar-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .org-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .comp-grid {
    grid-template-columns: 1fr;
  }
  .about-card-overlay {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
}

