/* ============================================
   Rockwall Cyber LLC — styles.css
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #0a1628;
  color: #e8edf2;
  font-size: 16px;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

/* --- Utility --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--tight { padding: 3rem 0; }

.text-gold { color: #c9a84c; }
.text-steel { color: #4a90c4; }
.text-muted { color: #8a9bb0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn:hover { opacity: 0.85; }

.btn-primary {
  background-color: #c9a84c;
  color: #0a1628;
}

.btn-outline {
  border: 1px solid #c9a84c;
  color: #c9a84c;
  background: transparent;
}

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #07101e;
  border-bottom: 1px solid #1a2d4a;
  padding: 1rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #e8edf2;
}

.nav__logo span { color: #c9a84c; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b0bec8;
  transition: color 0.2s;
}

.nav__links a:hover { color: #e8edf2; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8edf2;
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  padding: 7rem 0 6rem;
  background: linear-gradient(135deg, #07101e 0%, #0a1628 60%, #0e1f3a 100%);
  border-bottom: 1px solid #1a2d4a;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 109, 164, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.2rem;
}

.hero__headline {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: #f0f4f8;
}

.hero__subhead {
  max-width: 580px;
  font-size: 1.1rem;
  color: #8a9bb0;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Value Strip --- */
.value-strip {
  background-color: #07101e;
  border-top: 1px solid #1a2d4a;
  border-bottom: 1px solid #1a2d4a;
  padding: 2.5rem 0;
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.value-strip__item {
  padding: 1rem 2rem;
  border-right: 1px solid #1a2d4a;
}

.value-strip__item:last-child { border-right: none; }

.value-strip__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.4rem;
}

.value-strip__desc {
  font-size: 0.9rem;
  color: #8a9bb0;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3rem;
}

.section-header__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.75rem;
}

.section-header h2 { color: #f0f4f8; }

.section-header p {
  margin-top: 1rem;
  color: #8a9bb0;
  max-width: 580px;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background-color: #1a2d4a;
  border: 1px solid #1a2d4a;
}

.service-card {
  background-color: #0a1628;
  padding: 2.5rem;
  transition: background-color 0.2s;
}

.service-card:hover { background-color: #0e1f3a; }

.service-card__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a90c4;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.15rem;
  color: #f0f4f8;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  color: #8a9bb0;
  line-height: 1.7;
}

/* --- Proof / Stats --- */
.proof-section { background-color: #07101e; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.proof-card {
  border-left: 2px solid #c9a84c;
  padding-left: 1.25rem;
}

.proof-card__stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.proof-card__desc {
  font-size: 0.88rem;
  color: #8a9bb0;
  line-height: 1.5;
}

.proof-note {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: #4a5f72;
  font-style: italic;
}

/* --- Why RC --- */
.why-section { background-color: #0a1628; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content p {
  color: #8a9bb0;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.why-content .btn { margin-top: 0.5rem; }

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #b0bec8;
}

.why-list__icon {
  color: #c9a84c;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #0e1f3a 0%, #07101e 100%);
  border-top: 1px solid #1a2d4a;
  border-bottom: 1px solid #1a2d4a;
  text-align: center;
  padding: 5rem 0;
}

.cta-banner h2 {
  color: #f0f4f8;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #8a9bb0;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  background-color: #07101e;
  border-top: 1px solid #1a2d4a;
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #e8edf2;
}

.footer__logo span { color: #c9a84c; }

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.82rem;
  color: #4a5f72;
  transition: color 0.2s;
}

.footer__links a:hover { color: #8a9bb0; }

.footer__copy {
  font-size: 0.8rem;
  color: #4a5f72;
}

/* --- Resources Page --- */
.resources-coming-soon {
  max-width: 640px;
}

.resources-coming-soon h2 {
  color: #f0f4f8;
  margin: 0.75rem 0 1.25rem;
}

.resources-coming-soon p {
  color: #8a9bb0;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.resources-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.topic-preview-section {
  background-color: #07101e;
  border-top: 1px solid #1a2d4a;
  padding: 3rem 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: #1a2d4a;
  border: 1px solid #1a2d4a;
}

.topic-card {
  background-color: #07101e;
  padding: 1.5rem;
  transition: background-color 0.2s;
}

.topic-card:hover { background-color: #0a1628; }

.topic-card__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a90c4;
  margin-bottom: 0.6rem;
}

.topic-card__title {
  font-size: 0.9rem;
  color: #b0bec8;
  line-height: 1.6;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.booking-block {
  padding: 2rem;
  border: 1px solid #1a2d4a;
  background-color: #07101e;
  margin-bottom: 2.5rem;
}

.booking-block h2 {
  color: #f0f4f8;
  font-size: 1.3rem;
  margin: 0.75rem 0 1rem;
}

.booking-block p {
  color: #8a9bb0;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-direct { }

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #1a2d4a;
  margin-top: 1rem;
}

.contact-info-list li {
  display: flex;
  gap: 1.5rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #1a2d4a;
  align-items: baseline;
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-info__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a90c4;
  min-width: 70px;
  flex-shrink: 0;
}

.contact-info__value {
  font-size: 0.9rem;
  color: #b0bec8;
  transition: color 0.2s;
}

a.contact-info__value:hover { color: #e8edf2; }

.contact-form__heading {
  color: #f0f4f8;
  font-size: 1.3rem;
  margin: 0.75rem 0 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9bb0;
}

.form-input {
  background-color: #07101e;
  border: 1px solid #1a2d4a;
  color: #e8edf2;
  padding: 0.75rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus { border-color: #4a90c4; }

.form-input::placeholder { color: #4a5f72; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bb0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-note {
  font-size: 0.78rem;
  color: #4a5f72;
  line-height: 1.6;
}

.form-note a { color: #4a90c4; }
.form-note a:hover { color: #8a9bb0; }

/* --- Service Nav Strip --- */
.service-nav-strip {
  background-color: #0e1f3a;
  border-bottom: 1px solid #1a2d4a;
  padding: 0;
}

.service-nav__list {
  display: flex;
  list-style: none;
  gap: 0;
}

.service-nav__list a {
  display: block;
  padding: 1rem 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9bb0;
  border-right: 1px solid #1a2d4a;
  transition: color 0.2s, background-color 0.2s;
}

.service-nav__list a:hover {
  color: #c9a84c;
  background-color: rgba(201, 168, 76, 0.05);
}

/* --- Service Detail Sections --- */
.service-detail { border-bottom: 1px solid #1a2d4a; }
.service-detail--alt { background-color: #07101e; }

.service-detail__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail__header {
  position: sticky;
  top: 5rem;
}

.service-detail__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a90c4;
  margin-bottom: 0.75rem;
}

.service-detail__header h2 {
  color: #f0f4f8;
  margin-bottom: 1.25rem;
}

.service-detail__who {
  font-size: 0.88rem;
  color: #8a9bb0;
  margin-bottom: 1.75rem;
  line-height: 1.7;
  padding: 1rem;
  border-left: 2px solid #1a2d4a;
}

.service-detail__who strong { color: #b0bec8; }

.service-detail__body p {
  color: #8a9bb0;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.service-detail__subhead {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 2rem 0 1rem;
}

/* --- Offering List --- */
.offering-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #1a2d4a;
}

.offering {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #1a2d4a;
}

.offering:last-child { border-bottom: none; }

.offering__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 0.5rem;
}

.offering__desc {
  font-size: 0.88rem;
  color: #8a9bb0;
  line-height: 1.7;
}

/* --- Differentiator List --- */
.differentiator-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.differentiator-list li {
  font-size: 0.9rem;
  color: #8a9bb0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.differentiator-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-weight: 700;
}

/* --- Page Header (interior pages) --- */
.page-header {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #07101e 0%, #0a1628 60%, #0e1f3a 100%);
  border-bottom: 1px solid #1a2d4a;
}

.page-header h1 { color: #f0f4f8; margin-bottom: 1rem; }

.page-header__sub {
  font-size: 1.05rem;
  color: #8a9bb0;
  max-width: 560px;
}

/* --- About Page --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background-color: #0e1f3a;
  border: 1px solid #1a2d4a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e6da4;
  letter-spacing: 0.05em;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cred-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9bb0;
  padding: 0.4rem 0.75rem;
  border: 1px solid #1a2d4a;
  background-color: #07101e;
}

.cred-item--accent {
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.3);
}

.about-name-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.5rem;
}

.about-intro-content h2 {
  color: #f0f4f8;
  margin-bottom: 1.5rem;
}

.about-intro-content p {
  color: #8a9bb0;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

/* --- Story Section --- */
.story-section { background-color: #07101e; }

.story-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.story-sidebar { position: sticky; top: 5rem; }

.story-sidebar h2 { color: #f0f4f8; margin-top: 0.75rem; }

.story-body p {
  color: #8a9bb0;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.story-quote {
  border-left: 3px solid #c9a84c;
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  font-style: italic;
  font-size: 1.05rem;
  color: #b0bec8;
  background-color: rgba(201, 168, 76, 0.04);
}

/* --- Veteran Section --- */
.veteran-section {
  background-color: #0e1f3a;
  border-top: 1px solid #1a2d4a;
  border-bottom: 1px solid #1a2d4a;
  padding: 3rem 0;
}

.veteran-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.veteran-badge-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.veteran-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #1a2d4a;
  background-color: #0a1628;
}

.veteran-badge__icon {
  color: #c9a84c;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.veteran-badge__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #e8edf2;
  letter-spacing: 0.03em;
}

.veteran-badge__sub {
  font-size: 0.78rem;
  color: #8a9bb0;
  margin-top: 0.2rem;
}

.veteran-content p {
  color: #8a9bb0;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* --- Credentials Section --- */
.credentials-section {
  background-color: #0a1628;
  border-bottom: 1px solid #1a2d4a;
  padding: 3rem 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.credential-block__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a90c4;
  margin-bottom: 1rem;
}

.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.credential-list li {
  font-size: 0.9rem;
  color: #8a9bb0;
  padding-left: 0.75rem;
  border-left: 1px solid #1a2d4a;
  line-height: 1.5;
}

/* --- Privacy Page --- */
.privacy-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.privacy-block h2 {
  color: #f0f4f8;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.privacy-block p {
  color: #8a9bb0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.privacy-block a {
  color: #4a90c4;
  transition: color 0.2s;
}

.privacy-block a:hover { color: #8a9bb0; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-block { flex-direction: row; align-items: flex-start; }
  .about-photo-placeholder { width: 140px; aspect-ratio: 1; flex-shrink: 0; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-sidebar { position: static; }
  .veteran-grid { grid-template-columns: 1fr; gap: 2rem; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail__header { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .value-strip__grid { grid-template-columns: 1fr; }
  .value-strip__item { border-right: none; border-bottom: 1px solid #1a2d4a; }
  .value-strip__item:last-child { border-bottom: none; }
  .nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #07101e; padding: 1rem 1.5rem; border-bottom: 1px solid #1a2d4a; gap: 1rem; }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .topic-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .service-nav__list { flex-wrap: wrap; }
  .service-nav__list a { padding: 0.75rem 1rem; font-size: 0.72rem; }
}

@media (max-width: 500px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 4rem 0; }
}
