/* ============================================================
   RICHP0.05 ANALYTICS CONSULTS LTD — Brand Style System
   Colors: #F8931F (Orange) + #4FE6DF (Teal)
   Tagline: Empowering Growth
   ============================================================ */

:root {
  --orange: #F8931F;
  --orange-dark: #d97a0d;
  --orange-light: #fbb566;
  --teal: #4FE6DF;
  --teal-dark: #008a85;
  --teal-text: #00575E;
  --teal-light: #83F0EC;
  --teal-bg: #EDFCFB;
  --white: #ffffff;
  --off-white: #fafafa;
  --black: #1a1a1a;
  --gray-900: #2d2d2d;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #cccccc;
  --gray-100: #f5f5f5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-orange: 0 4px 20px rgba(248,147,31,0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body { overflow-x: hidden; width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: var(--white);
  border-bottom: 1px solid rgba(14,92,84,0.08);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
}

.nav-logo img { height: 52px; width: auto; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .brand {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-text);
  letter-spacing: -0.3px;
}

.nav-logo-text .tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.5px;
  text-transform: lowercase;
  font-style: italic;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}

.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(248,147,31,0.35);
}

.nav-cta::after { display: none !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; flex-shrink: 0; z-index: 1001; }
.mobile-toggle span { display: block; width: 26px; height: 3px; background: var(--orange); margin: 5px 0; border-radius: 3px; transition: var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: 
    linear-gradient(135deg, rgba(0,138,133,0.75) 0%, rgba(0,87,94,0.80) 50%, rgba(0,50,45,0.85) 100%),
    url('../assets/hero-bg.jpg') center/cover no-repeat;
  padding: 100px 40px 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(248,147,31,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248,147,31,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content { max-width: 850px; margin: 0 auto; position: relative; z-index: 1; }

.hero-logo { height: 120px; width: auto; margin-bottom: 24px; filter: none; }

.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero-brand-line {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(248,147,31,0.4);
}

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

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

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 40px;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-100);
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--teal-text);
  line-height: 1;
  margin-bottom: 8px;
}

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

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 90px 40px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--teal-text);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-section {
  background: 
    #fafdfc url('../assets/services-pattern.jpg') repeat;
  background-size: 400px 400px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--teal-text);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card .service-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-card .service-link:hover { gap: 12px; }

/* ============================================================
   CREDIBILITY SECTION
   ============================================================ */
.credibility {
  background: var(--teal-bg);
  border-top: 1px solid rgba(14,92,84,0.06);
  border-bottom: 1px solid rgba(14,92,84,0.06);
}

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

.cred-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cred-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.cred-icon { font-size: 32px; margin-bottom: 16px; }

.cred-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 8px;
}

.cred-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: 
    linear-gradient(135deg, rgba(0,87,94,0.82) 0%, rgba(0,50,45,0.88) 100%),
    url('../assets/cta-growth.jpg') center/cover no-repeat;
  text-align: center;
}

.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.75); }
.cta-section .section-label { color: var(--orange-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: 
    linear-gradient(135deg, rgba(0,87,94,0.78) 0%, rgba(0,50,45,0.85) 100%),
    url('../assets/about-workspace.jpg') center/cover no-repeat;
  padding: 100px 40px;
  text-align: center;
}

/* about-hero-logo removed — logo is in nav */

.about-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.about-hero .tagline {
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-content { padding: 60px 40px; background: var(--white); }

.about-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text .values { margin-top: 28px; }

.about-text .values h3 {
  font-size: 20px;
  color: var(--teal-text);
  margin-bottom: 16px;
  font-weight: 700;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.value-letter {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.value-text strong { color: var(--teal-text); }
.value-text { font-size: 14px; color: var(--gray-700); line-height: 1.5; }

.about-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 4px solid var(--teal-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

.about-sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 20px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid rgba(14,92,84,0.08);
}

.cert-badge .icon { font-size: 24px; }

.cert-badge div strong { display: block; font-size: 14px; color: var(--teal-text); }
.cert-badge div span { font-size: 12px; color: var(--gray-500); }

/* CEO Section */
.ceo-section {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid var(--gray-100);
}

.ceo-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}

.ceo-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--orange);
  box-shadow: var(--shadow-orange);
  flex-shrink: 0;
}

.ceo-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 4px;
}

.ceo-info .ceo-title {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.ceo-info p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ============================================================
   SERVICES PAGE (no pricing)
   ============================================================ */
.services-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #00726e 100%);
  padding: 80px 40px;
  text-align: center;
}

.services-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.services-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.services-detailed { padding: 80px 40px; }

.service-block {
  max-width: 900px;
  margin: 0 auto 48px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.service-block:hover { box-shadow: var(--shadow-md); }

.service-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-block h3 .icon { font-size: 28px; }

.service-block .service-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--teal-bg);
  color: var(--teal-text);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
}

.service-block p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-block ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-block ul li {
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-block ul li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: linear-gradient(135deg, rgba(0,87,94,0.85) 0%, rgba(0,114,110,0.85) 100%), url('../assets/contact-trust.jpg') center/cover no-repeat;
  padding: 80px 40px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto;
}

.contact-main { padding: 80px 40px; }

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--teal-bg);
  border-radius: var(--radius-md);
}

.contact-method .cm-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-method h4 { font-size: 15px; font-weight: 700; color: var(--teal-text); margin-bottom: 4px; }
.contact-method p { font-size: 14px; color: var(--gray-700); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--black);
  transition: var(--transition);
  background: var(--off-white);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14,92,84,0.06);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ============================================================
   PORTAL PAGE
   ============================================================ */
.portal-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #00726e 100%);
  padding: 80px 40px;
  text-align: center;
}

.portal-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.portal-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto;
}

.portal-main { padding: 60px 40px; }

.portal-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.portal-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.portal-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 24px;
}

.portal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portal-info-card {
  background: var(--teal-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(14,92,84,0.08);
}

.portal-info-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 12px;
}

.portal-info-card .step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.step-text { font-size: 14px; color: var(--gray-700); line-height: 1.5; }

.portal-secure {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #fff8f0;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(248,147,31,0.15);
  font-size: 13px;
  color: var(--gray-700);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img { height: 50px; margin-bottom: 12px; background: white; padding: 10px 16px; border-radius: 12px; }

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-brand .footer-tagline {
  color: var(--orange);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-bottom span { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    height: auto;
    padding: 10px 0;
    align-items: start;
  }
  .nav-logo { max-width: 100%; padding-top: 4px; }
  .nav-links { display: none; position: absolute; }
  .mobile-toggle { display: block; grid-column: 2; grid-row: 1; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 40px;
    border-bottom: 1px solid var(--gray-100);
    gap: 16px;
    box-shadow: var(--shadow-md);
    z-index: 100;
  }

  .nav-logo img { height: 22px; }
  .nav-logo-text .tagline { font-size: 7.5px; white-space: nowrap; padding-left: 4px; }

  .hero { padding: 70px 24px 80px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .hero-logo { height: 50px; }
  .hero::before, .hero::after { display: none; }

  .stats-bar { padding: 28px 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 12px; }

  section { padding: 50px 20px; }
  .section-inner { padding: 0; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 15px; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .credibility-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-hero, .services-hero, .contact-hero, .portal-hero { padding: 50px 20px; }
  .about-hero h1, .services-hero h1, .contact-hero h1, .portal-hero h1 { font-size: 28px; }
  .ceo-inner { flex-direction: column; text-align: center; gap: 24px; }
  .ceo-photo { width: 160px; height: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .service-block ul { grid-template-columns: 1fr; }

  .btn { padding: 12px 24px; font-size: 14px; }

  .about-text h2 { font-size: 22px; }
  .ceo-info h2 { font-size: 22px; }
  .service-block h3 { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero { padding: 50px 16px 60px; }
  .hero h1 { font-size: 24px; line-height: 1.3; }
  .hero h1 br { display: none; }
  .hero p { font-size: 14px; line-height: 1.5; }
  .hero-content { padding: 0; }

  .nav-inner { padding: 0; }
  .nav-logo { max-width: 100%; padding-top: 4px; }
  .nav-links { display: none; position: absolute; }
  .nav-logo img { height: 22px; }
  .nav-logo-text .tagline { font-size: 7px; white-space: nowrap; padding-left: 4px; }
  nav { padding: 0 16px; }

  section { padding: 40px 16px; }
  .section-title { font-size: 22px; }
  .section-subtitle { font-size: 14px; }

  .stats-bar { padding: 20px 12px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 11px; }
  .stat-item::after { display: none; }

  .services-grid { gap: 16px; }
  .service-card { padding: 24px 16px; }
  .service-card h3 { font-size: 16px; }

  .about-hero, .services-hero, .contact-hero, .portal-hero { padding: 40px 16px; }
  .about-hero h1, .services-hero h1, .contact-hero h1, .portal-hero h1 { font-size: 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand img { height: 40px; margin: 0 auto; }
  .footer-brand { align-items: center; }
  .footer-col { align-items: center; text-align: center; }

  .btn { width: 100%; text-align: center; padding: 14px 20px; }

  .about-text h2 { font-size: 20px; }
  .ceo-photo { width: 140px; height: 140px; }
  .ceo-info h2 { font-size: 20px; }

  .contact-method { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 24px 16px; }
  .portal-form-card { padding: 24px 16px; }

  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 14px; padding: 10px 12px; }

  .service-block { padding: 20px 16px; }
  .service-block h3 { font-size: 17px; }
  .cred-card { padding: 20px 16px; }

  .nav-links.open { padding: 16px 20px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 12px; }
}
