/* ============================================================
   JAM CYBER — style.css
   Single stylesheet for the entire site.
   ============================================================

   1. CSS Custom Properties
   2. Reset & Base
   3. Typography
   4. Layout Utilities
   5. Navigation
   6. Footer
   7. Buttons & CTAs
   8. Hero Sections
   9. Stats Bar
   10. Section Headings
   11. Cards (service, package, stat, team, testimonial)
   12. Feature Lists
   13. FAQ Accordion
   14. Testimonials & Video Cards
   15. Logo Strip
   16. Timeline
   17. Blog
   18. Admin
   19. Forms & Placeholders
   20. Page-specific Sections
   21. Responsive / Media Queries
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  --navy:   #051b32;
  --red:    #c20000;
  --white:  #ffffff;
  --light:  #f4f6f8;
  --text:   #1a1a1a;
  --muted:  #6b7280;
  --border: #e5e7eb;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: .2s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container: 1180px;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font);
}

/* ============================================================
   3. Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { line-height: 1.7; }

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

.section {
  padding: 80px 0;
}

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

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--dark {
  background: #071220;
  color: var(--white);
}

.section--grey {
  background: #f9f9f9;
}

/* Grid system */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--auto-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--auto-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

/* Text utilities */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-white  { color: var(--white) !important; }
.text-navy   { color: var(--navy) !important; }
.text-red    { color: var(--red) !important; }
.text-muted  { color: var(--muted) !important; }

/* Spacing */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* Flex utilities */
.d-flex         { display: flex; }
.align-center   { align-items: center; }
.justify-between{ justify-content: space-between; }
.gap-2          { gap: 16px; }
.gap-3          { gap: 24px; }
.flex-wrap      { flex-wrap: wrap; }

/* Misc */
.w-100  { width: 100%; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   5. Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

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

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

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

.nav-logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: .04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.nav-item > a:hover,
.nav-item > a.active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.nav-item .arrow {
  font-size: .65rem;
  transition: transform var(--transition);
  opacity: .7;
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px 0;
  list-style: none;
  z-index: 200;
  border: 1px solid var(--border);
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: var(--navy);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.dropdown li a:hover {
  background: var(--light);
  color: var(--red);
}

/* Nav CTA (Log on button) */
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: 10px;
  transition: background var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: #a00000;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   6. Footer
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-logo {
  margin-bottom: 14px;
  display: block;
}

.footer-logo img {
  height: 34px;
}

.footer-logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: .04em;
}

.footer-tagline {
  color: #a0b0c0;
  font-size: .875rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: .85rem;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a0b0c0;
  font-size: .875rem;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item:hover {
  color: var(--white);
}

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #7fa8c9;
  margin: 0 0 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #a0b0c0;
  font-size: .875rem;
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 48px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  font-size: .8rem;
  color: #7a8a9a;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: #7a8a9a;
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Google Badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 6px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.google-badge__stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 1px;
}

.google-badge__text strong {
  color: var(--navy);
  font-size: .875rem;
  display: block;
}

.google-badge__text span {
  color: var(--muted);
  font-size: .78rem;
}

/* ============================================================
   7. Buttons & CTAs
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  padding: 12px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--red:hover {
  background: #a00000;
  border-color: #a00000;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: #0a2a4a;
  border-color: #0a2a4a;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.02rem;
}

.btn--sm {
  padding: 8px 18px;
  font-size: .85rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* CTA Banner */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
}

.cta-banner__subtitle {
  opacity: .8;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
  font-size: 1.05rem;
}

.cta-banner__benefits {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: .93rem;
  opacity: .85;
}

.cta-banner__phone {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 28px;
  width: fit-content;
  transition: opacity var(--transition);
}

.cta-banner__phone:hover {
  opacity: .85;
}

/* ============================================================
   8. Hero Sections
   ============================================================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(135deg, rgba(194,0,0,.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero--page {
  padding: 68px 0 56px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #7fa8c9;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--white);
}

.hero__subtitle {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 620px;
  margin: 0 0 28px;
  line-height: 1.7;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  opacity: .9;
  line-height: 1.5;
}

.hero__bullets li::before {
  content: '✓';
  color: #4caf50;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   9. Stats Bar
   ============================================================ */
.stats-bar {
  background: #071220;
  padding: 44px 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-bar__number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stats-bar__label {
  font-size: .85rem;
  color: #a0b0c0;
  margin-top: 8px;
  max-width: 140px;
}

/* ============================================================
   10. Section Headings
   ============================================================ */
.section-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--navy);
}

.section--navy .section-title,
.section--dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
  margin: 0 0 48px;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   11. Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Service Card */
.card--service {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card--service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.card__body {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.65;
  flex: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  margin-top: 18px;
  transition: gap var(--transition), color var(--transition);
}

.card__link:hover {
  gap: 10px;
  color: #a00000;
}

/* Stat Card */
.card--stat {
  text-align: center;
}

/* Package Cards */
.package-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.package-card:hover {
  border-color: var(--border);
}

.package-card--navy {
  background: var(--navy);
  color: var(--white);
}

.package-card--navy .package-card__subtitle {
  color: #a0b8cc;
}

.package-card--navy .section-title,
.package-card--navy .package-card__title {
  color: var(--white);
}

.package-card__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.package-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--navy);
}

.package-card--navy .package-card__title {
  color: var(--white);
}

.package-card__subtitle {
  font-size: .95rem;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.65;
}

.package-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  line-height: 1.5;
}

.package-card__features li::before {
  content: '✓';
  color: #4caf50;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-card--navy .package-card__features li::before {
  color: #81c784;
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin: 0 0 4px;
}

.team-card__role {
  color: var(--muted);
  font-size: .875rem;
  margin: 0 0 12px;
}

.team-card__linkedin {
  color: var(--red);
  font-size: .82rem;
  text-decoration: none;
  font-weight: 600;
}

.team-card__linkedin:hover {
  text-decoration: underline;
}

/* Value / Pillar Cards */
.value-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
}

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

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.pillar-card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.pillar-card__title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1rem;
}

.pillar-card__body {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.6;
}

/* Case Study Cards */
.case-study-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.case-study-card__title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.case-study-card dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-study-card dt {
  font-weight: 700;
  color: var(--navy);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.case-study-card dd {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.55;
  margin: 0 0 6px;
}

.case-study-outcome {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--light);
  border-radius: 4px;
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 16px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
  border-color: var(--red);
}

.pricing-card__popular-tag {
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  display: inline-block;
}

.pricing-card__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin: 0 0 4px;
}

.pricing-card__price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--red);
  margin: 8px 0;
  line-height: 1;
}

.pricing-card__price span {
  font-size: .9rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
  font-size: .85rem;
  color: var(--muted);
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card__features li::before {
  content: '·';
  color: var(--red);
  margin-right: 6px;
  font-weight: 700;
}

/* Office Cards */
.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.office-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--red);
}

.office-card__city {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin: 0 0 8px;
}

.office-card__address {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.office-card__phone {
  color: var(--red);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  display: block;
}

/* Support Portal Cards */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.portal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition);
}

.portal-card:hover {
  transform: translateY(-3px);
}

.portal-card__icon {
  font-size: 2.2rem;
}

.portal-card__title {
  font-weight: 700;
  color: var(--navy);
  font-size: .97rem;
  margin: 0;
}

/* ============================================================
   12. Feature Lists
   ============================================================ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  line-height: 1.55;
  color: var(--text);
}

.feature-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

.feature-list--white li {
  color: rgba(255,255,255,.9);
}

.feature-list--white li::before {
  color: #81c784;
}

/* ============================================================
   13. FAQ Accordion
   ============================================================ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--red);
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
  font-weight: 300;
}

.faq__item.is-open .faq__question::after {
  content: '−';
}

.faq__answer {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.75;
}

.faq__item.is-open .faq__answer {
  display: block;
}

/* ============================================================
   14. Testimonials & Video Cards
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  opacity: .12;
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card__quote {
  font-size: .97rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.testimonial-card__author {
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
}

.testimonial-card__company {
  color: var(--muted);
  font-size: .83rem;
  margin-top: 3px;
}

/* Carousel */
.testimonial-carousel {
  overflow: hidden;
  position: relative;
}

.testimonial-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform .4s ease;
}

.testimonial-carousel__track .testimonial-card {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
}

.testimonial-carousel__controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--navy);
}

.carousel-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* Video Cards */
.video-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.video-card {
  background: #1a2a3a;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #0d1e2e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 54px;
  height: 54px;
  background: rgba(194,0,0,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  padding-left: 4px;
  transition: transform var(--transition), background var(--transition);
}

.video-card:hover .play-btn {
  transform: scale(1.1);
  background: var(--red);
}

.video-card__info {
  padding: 14px 16px;
}

.video-card__info strong {
  display: block;
  color: var(--white);
  font-size: .92rem;
}

.video-card__info span {
  color: #a0b0c0;
  font-size: .82rem;
  margin-top: 2px;
  display: block;
}

/* ============================================================
   15. Logo Strip
   ============================================================ */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.logo-strip img {
  height: 36px;
  width: auto;
  filter: grayscale(1);
  opacity: .6;
  transition: all var(--transition);
}

.logo-strip img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.logo-text {
  font-size: .82rem;
  font-weight: 600;
  color: #6b7280;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  white-space: nowrap;
}

/* ============================================================
   16. Timeline
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 44px;
  max-width: 680px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding-bottom: 36px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}

.timeline__year {
  font-weight: 700;
  color: var(--red);
  font-size: .9rem;
  margin-bottom: 5px;
}

.timeline__text {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.6;
}

/* ============================================================
   17. Blog
   ============================================================ */
.blog-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card__image {
  aspect-ratio: 16/9;
  background: #d4dae2;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__date {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.blog-card__category {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0 0 12px;
  flex: 1;
}

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

.blog-card__title a:hover {
  color: var(--red);
}

.blog-card__excerpt {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Tag pills */
.tag {
  display: inline-block;
  background: var(--light);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin: 3px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.tag:hover,
.tag.active {
  background: var(--navy);
  color: var(--white);
}

/* Blog sidebar/meta */
.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: .85rem;
  color: var(--muted);
}

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  color: var(--navy);
  transition: all var(--transition);
}

.pagination a:hover,
.pagination .active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   18. Admin
   ============================================================ */
.admin-page {
  min-height: 100vh;
  background: var(--light);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.admin-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  width: 100%;
  max-width: 860px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.admin-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.admin-form-group {
  margin-bottom: 22px;
}

.admin-label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: .9rem;
}

.admin-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
  color: var(--text);
}

.admin-input:focus {
  border-color: var(--navy);
}

select.admin-input {
  cursor: pointer;
}

#editor {
  min-height: 400px;
  border: 2px solid var(--border);
  border-radius: 4px;
}

.publish-status {
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 16px;
  font-size: .9rem;
  display: none;
}

.publish-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.publish-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ============================================================
   19. Forms & Placeholders
   ============================================================ */
.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Call rates table */
.call-rates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 560px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.call-rates-table th,
.call-rates-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: .93rem;
}

.call-rates-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.call-rates-table tr:nth-child(even) td {
  background: var(--light);
}

.call-rates-table td:last-child {
  font-weight: 600;
  color: var(--navy);
}

/* ============================================================
   20. Page-specific Sections
   ============================================================ */

/* Process / numbered steps */
.process-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.process-step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  counter-increment: step;
}

.process-step__content {
  flex: 1;
}

.process-step__title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 6px;
}

.section--navy .process-step__title {
  color: var(--white);
}

.process-step__body {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.65;
}

.section--navy .process-step__body {
  color: rgba(255,255,255,.75);
}

/* Included services grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light);
  border-radius: 6px;
  font-size: .93rem;
}

.included-item::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* Two-column text+image layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__visual {
  background: var(--light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  font-size: 4rem;
}

/* Tier comparison (cyber/managed IT tiers) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tier-card {
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.tier-card--light {
  background: var(--white);
  border-top: 4px solid var(--border);
}

.tier-card--dark {
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--red);
}

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

.tier-card--dark .tier-card__title {
  color: var(--white);
}

.tier-card__subtitle {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.tier-card--dark .tier-card__subtitle {
  color: rgba(255,255,255,.7);
}

/* ============================================================
   21. Responsive / Media Queries
   ============================================================ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-carousel__track .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  :root {
    --container: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 64px 0 52px;
  }

  .hero--page {
    padding: 52px 0 42px;
  }

  /* All multi-col grids go single column */
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5 {
    grid-template-columns: 1fr;
  }

  .two-col,
  .tier-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .two-col--reverse {
    direction: ltr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Nav mobile */
  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    overflow-y: auto;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 999;
  }

  .nav-open .nav-menu {
    display: flex;
  }

  .nav-item > a {
    padding: 14px 16px;
    font-size: .95rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    border-radius: 0;
  }

  .nav-item .arrow {
    margin-left: auto;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    border-radius: 4px;
    border: none;
    margin: 4px 0 8px;
    padding: 4px 0;
    display: none;
  }

  .nav-item.is-open .dropdown {
    display: block;
  }

  .dropdown li a {
    color: rgba(255,255,255,.8);
    padding: 10px 24px;
    font-size: .875rem;
  }

  .dropdown li a:hover {
    background: rgba(255,255,255,.05);
    color: var(--white);
  }

  .nav-cta {
    margin: 12px 0 0;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
  }

  /* Carousel */
  .testimonial-carousel__track .testimonial-card {
    min-width: 100%;
  }

  /* Stats bar */
  .stats-bar__inner {
    gap: 24px;
  }

  /* CTA banner */
  .cta-banner__benefits {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cta-banner__phone {
    font-size: 1.4rem;
  }

  /* FAQ */
  .faq {
    max-width: 100%;
  }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

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

  .btn--lg {
    padding: 14px 24px;
    font-size: .95rem;
  }

  .admin-card {
    padding: 24px;
  }

  .package-card {
    padding: 24px;
  }

  .card {
    padding: 24px;
  }

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