/* ===========================
   CONNECTING DOTS — STYLESHEET
   =========================== */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f7f5f2;
  --accent: #e85a2a;
  --accent-light: #ff7a45;
  --dark: #1a1a1a;
  --mid: #444;
  --light-text: #888;
  --border: #e5e0d8;
  --card-bg: #ffffff;
  --section-alt: #f7f5f2;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black);
}

.logo img { height: 30px; }

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  display: block;
}

.nav-links > li > a:hover {
  background: var(--off-white);
  color: var(--black);
}

.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 16px;
}

.nav-links a.nav-cta:hover {
  background: var(--accent-light);
}

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

.dropdown li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--mid);
  font-size: 0.88rem;
  border-radius: 6px;
  transition: background 0.1s;
}

.dropdown li a:hover {
  background: var(--off-white);
  color: var(--black);
}

.nav-links > li:hover .dropdown {
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--dark);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,90,42,0.3);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

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

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,90,42,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 20% 80%, rgba(232,90,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-image {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: background 0.2s;
}

.hero-card:hover {
  background: rgba(255,255,255,0.1);
}

.hero-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ---- PILLARS ---- */
.pillars {
  padding: 80px 0;
  background: var(--off-white);
}

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

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.pillar:hover {
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ---- IS THIS YOU ---- */
.fit-section {
  padding: 100px 0;
  background: var(--white);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.fit-col h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.fit-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-col li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--mid);
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--off-white);
}

.fit-no li {
  background: #fff5f2;
}

.fit-cta-text {
  margin-top: 28px;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 0;
  background: var(--section-alt);
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.75;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-img-1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.service-img-1::after { content: "🔬"; font-size: 4rem; }
.service-img-2::after { content: "🏡"; font-size: 4rem; }
.service-img-3::after { content: "🚀"; font-size: 4rem; }

.service-img-1, .service-img-2, .service-img-3 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-2 {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.service-img-3 {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #404040);
}

.service-body {
  padding: 28px;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-tag {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 52px;
}

.testimonial-card {
  display: flex;
  gap: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

blockquote {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.testimonial-author strong {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-display);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

/* ---- FINAL CTA ---- */
.final-cta {
  padding: 100px 0;
  background: var(--off-white);
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 20px;
}

.final-cta p {
  color: var(--mid);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

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

.footer-contact {
  display: flex;
  gap: 32px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ---- INNER PAGE HERO ---- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* ---- CONTENT SECTIONS ---- */
.content-section {
  padding: 80px 0;
}

.content-section.alt {
  background: var(--off-white);
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.content-section p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 720px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col .visual {
  background: var(--black);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

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

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text {
  animation: fadeUp 0.7s ease both;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 16px; }
  .dropdown { position: static; box-shadow: none; border: none; background: var(--off-white); }
  .nav-toggle { display: block; }
  .testimonial-card { flex-direction: column; padding: 32px 24px; }
  .footer-links, .footer-contact { gap: 16px; }
}
