/* Comms Connected — base styles */

:root {
  --navy: #14233b;
  --navy-dark: #0d1829;
  --orange: #ffb100;
  --orange-dark: #e59e00;
  --gray-900: #1c1f26;
  --gray-700: #4a5261;
  --gray-500: #7c8494;
  --gray-200: #e7e9ee;
  --gray-100: #f4f5f8;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(20, 35, 59, 0.08);
  --shadow-lg: 0 12px 32px rgba(20, 35, 59, 0.14);
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--orange-dark);
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-dark);
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.lead-sub {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 8px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--orange-dark);
  color: var(--navy-dark);
  transform: translateY(-1px);
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(20, 35, 59, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
}

.site-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.site-nav a {
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange-dark);
  border-bottom-color: var(--orange);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (max-width: 860px) {
  .header-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 300px;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

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

.hero .tagline {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero .tagline-sub {
  font-size: 1.05rem;
  color: var(--gray-200);
  margin-bottom: 28px;
}

.hero-block {
  margin-bottom: 28px;
}

.hero .btn {
  margin-bottom: 32px;
}

.hero-expert {
  font-size: 1.1rem;
  margin-top: 8px;
}

.hero-expert .expert {
  color: var(--orange);
  font-weight: 700;
}

.hero-phone {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 6px;
}

.hero-phone:hover {
  color: var(--orange);
}

/* Jump link menu (How It Works hero) */
.jump-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin: 28px 0 32px;
}

.jump-links a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.jump-links a:hover {
  color: var(--orange);
}

/* Section spacing */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--gray-100);
}

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

/* Feature grid (Home) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
}

.feature-card img {
  margin: 0 auto 20px;
  height: 64px;
  width: 64px;
}

.feature-card .feature-title {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

@media (max-width: 780px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Closing CTA strip */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.cta-strip h3 {
  color: var(--white);
}

.cta-box {
  display: inline-block;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px 40px;
  margin: 24px 0 32px;
}

.cta-box .expert {
  color: var(--orange);
  font-weight: 700;
}

.cta-box .hero-phone {
  color: var(--white);
}

/* Contact form */
.contact-section {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
}

.contact-section h1,
.contact-section h2 {
  color: var(--white);
  text-align: center;
}

.contact-form {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

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

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-900);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn {
  width: 100%;
  border: none;
}

/* Pricing table */
.pricing-intro {
  text-align: center;
  padding-bottom: 24px;
}

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

.price-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-700);
}

.price-card .price {
  margin: 12px 0 24px;
  color: var(--navy);
}

.price-card .price .amount {
  font-size: 3rem;
  font-weight: 800;
}

.price-card .price .unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
}

.price-card ul {
  list-style: none;
  text-align: left;
  flex-grow: 1;
}

.price-card li {
  padding: 10px 0;
  border-top: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.price-card li:first-child {
  border-top: none;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-summary {
  text-align: center;
  max-width: 680px;
  margin: 40px auto 0;
  font-weight: 600;
  color: var(--gray-700);
}

/* How It Works content sections */
.hiw-section {
  display: flex;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}

.hiw-section:last-of-type {
  border-bottom: none;
}

.hiw-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
}

.hiw-body {
  flex: 1;
}

@media (max-width: 600px) {
  .hiw-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* About page */
.about-copy {
  max-width: 760px;
  margin: 0 auto;
}

.about-copy p {
  font-size: 1.1rem;
}

/* Thank you page */
.thankyou-section {
  padding: 120px 0;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-200);
  padding: 48px 0 24px;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-info > div {
  flex: 1 1 220px;
}

.footer-info a {
  color: var(--white);
  font-weight: 600;
}

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

.footer-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--gray-200);
  font-weight: 600;
}

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