:root {
  --pc-primary: #00a8a8;
  --pc-primary-dark: #008282;
  --pc-accent: #f4b41a;
  --pc-bg: #0f172a;
  --pc-bg-light: #f4f7fb;
  --pc-text: #0f172a;
  --pc-text-light: #e5f2ff;
  --pc-max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: white;
  color: var(--pc-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Layout Wrappers ---------- */

.top-bar,
nav,
.section-inner,
.page-inner,
.footer-inner {
  max-width: var(--pc-max-width);
  margin: 0 auto;
}

section {
  padding: 2.5rem 1.25rem;
}

main {
  padding-bottom: 2.8rem;
}

/* ---------- Header / Nav ---------- */

header {
  background: var(--pc-bg);
  color: white;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar span {
  opacity: 0.9;
}

.top-bar a {
  color: var(--pc-accent);
  font-weight: 500;
}

nav {
  padding: 0.75rem 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ✅ Bigger logo – shared across all pages */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 85px;
  width: auto;
  background: #f9fafb;                    /* light background behind logo */
  padding: 6px 10px;                       /* space around logo inside badge */
  border-radius: 12px;                     /* rounded corners */
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.35); /* subtle shadow so it pops */
}


.logo-text-main {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.15rem;
}

.logo-text-sub {
  font-size: 0.75rem;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--pc-text-light);
  opacity: 0.85;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
  transition: opacity 0.15s, border-color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  border-bottom-color: var(--pc-accent);
}

/* ---------- Buttons ---------- */

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pc-primary);
  border-color: var(--pc-primary);
  color: white;
  box-shadow: 0 8px 18px rgba(0, 168, 168, 0.35);
}

.btn-primary:hover {
  background: var(--pc-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 168, 168, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--pc-text-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: white;
}

/* ---------- Home / Hero ---------- */

.hero {
  max-width: var(--pc-max-width);   /* ✅ same width as the boxes */
  margin: 0 auto;                   /* centers it */
  padding: 2.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pc-accent);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.hero h1 span {
  color: var(--pc-accent);
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 34rem;
  opacity: 0.9;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

.hero-card {
  background: radial-gradient(circle at top left, #00a8a8 0, #0f172a 40%, #020617 100%);
  border-radius: 16px;
  padding: 1.2rem 1.1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.55);
  color: white;
}

.hero-card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
  margin-bottom: 0.55rem;
}

.hero-card-main {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-card-list {
  list-style: none;
  font-size: 0.85rem;
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.hero-card-list li::before {
  content: "• ";
  color: var(--pc-accent);
}

.hero-card-foot {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ---------- Sections / Utilities ---------- */

.section-inner {
  padding: 0 1.25rem;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-header h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  font-size: 0.95rem;
  color: #4b5563;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.pill {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: #e5f3f3;
  color: #064e4e;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 1.1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.feature-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pc-primary-dark);
  margin-bottom: 0.35rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.list-check {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #374151;
}

.list-check li::before {
  content: "✓ ";
  color: var(--pc-primary-dark);
  font-weight: 600;
}

.info-card {
  background: #f0f9f9;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  border: 1px solid #d1f0f0;
  font-size: 0.9rem;
  color: #064e4e;
}

.steps-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.steps-list li {
  position: relative;
  padding-left: 2rem;
}

.steps-list span.step-num {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--pc-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--pc-primary-dark);
  background: #ecfeff;
  font-weight: 600;
}

.callout {
  background: var(--pc-bg-light);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid #e5e7eb;
}

.callout-text {
  max-width: 580px;
  font-size: 0.95rem;
}

.callout-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

/* ---------- Page-level helpers ---------- */

.page-inner {
  padding: 0 1.25rem;
}

.tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pc-primary);
  margin-bottom: 0.3rem;
}

h1 {
  font-size: clamp(1.8rem, 2.4vw, 2rem);
  margin-bottom: 0.5rem;
}

.page-intro {
  max-width: 650px;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

/* ---------- Services Page ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 1rem 1.05rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  color: #4b5563;
}

.service-card h2 {
  font-size: 1.08rem;
  margin-bottom: 0.25rem;
}

.service-card ul {
  margin-top: 0.4rem;
  padding-left: 1.1rem;
}

.service-card li {
  margin-bottom: 0.25rem;
}

.highlight {
  background: var(--pc-bg-light);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  border: 1px solid #e5e7eb;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #374151;
}

.highlight h2 {
  margin-bottom: 0.6rem;
}

.highlight ul {
  margin-top: 0.4rem;
  padding-left: 1.1rem;
}

.highlight li {
  margin-bottom: 0.3rem;
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.cta-text {
  font-size: 0.95rem;
  max-width: 550px;
}

/* ---------- About Page ---------- */

.about-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 1.6rem;
  margin-top: 1.4rem;
}

.about-card {
  background: var(--pc-bg-light);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.about-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.about-highlight {
  background: #ecfeff;
  border-left: 3px solid var(--pc-primary);
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.about-cta {
  margin-top: 1.6rem;
  padding: 1.2rem 1.3rem;
  border-radius: 12px;
  background: #0f172a;
  color: #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Contact Page ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.6rem;
  margin-top: 1.4rem;
}

form.contact-form,
form.quote-form {
  background: var(--pc-bg-light);
  border-radius: 16px;
  padding: 1.4rem 1.5rem 1.7rem;
  border: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

.note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.honeypot {
  display: none;
}

.contact-card {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 1.3rem 1.4rem;
  background: #f9fafb;
  font-size: 0.9rem;
  color: #374151;
}

.contact-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

/* ---------- Footer ---------- */

footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.5rem 1.25rem;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e5e7eb;
  opacity: 0.75;
}

.footer-links a:hover {
  opacity: 1;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .feature-grid,
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-col,
  .about-two-col,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .callout,
  .cta-row,
  .about-cta {
    align-items: flex-start;
  }
}
