/* ===========================
   KRP SOLUTIONS — STYLES.CSS
   =========================== */

:root {
  --blue: #3d6ab5;
  --blue-light: #5a84cc;
  --blue-dark: #2a4e8a;
  --ink: #111318;
  --ink-mid: #3a3d47;
  --ink-soft: #6b6f7e;
  --paper: #fafaf8;
  --paper-warm: #f4f2ee;
  --line: #e2dfd8;
  --white: #ffffff;
  --gold: #c8923a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --nav-h: 72px;
  --container: 1180px;
  --radius: 4px;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; font-weight: 600; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
em { font-style: italic; color: var(--blue); }
p { color: var(--ink-soft); line-height: 1.75; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title { margin-bottom: 1rem; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 106, 181, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--paper-warm);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-krp { color: var(--blue); }
.logo-sol { color: var(--ink); margin-left: 0.25rem; }

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink-mid);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blue);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.25s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--blue);
  top: -100px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--blue-light);
  bottom: 0;
  left: -100px;
}

.hero-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  height: 1px;
  opacity: 0.15;
  width: 100%;
}
.hero-line-1 { top: 35%; }
.hero-line-2 { top: 65%; opacity: 0.08; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(61,106,181,0.3);
  border-radius: 100px;
}

.hero-heading {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 1.75rem;
  max-width: 14ch;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 2.5rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--ink-soft);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.3); transform-origin: left; }
}

/* ===========================
   INTRO STRIP
   =========================== */
.intro-strip {
  background: var(--ink);
  padding: 2.5rem 0;
}

.strip-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem;
}

.strip-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-light);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.strip-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.strip-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ===========================
   SERVICE CARDS
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  color: var(--blue);
  margin-bottom: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61,106,181,0.08);
  border-radius: var(--radius);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.card-link:hover { gap: 0.6rem; }

/* ===========================
   WHY SECTION
   =========================== */
.why-section { background: var(--paper-warm); }

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

.why-card-stack {
  position: relative;
  padding: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.wc-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
}

.wc-bar {
  height: 6px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
}

.wc-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 100px;
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: left;
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.why-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.why-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.why-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.why-list li {
  font-size: 0.9rem;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.why-list li span {
  color: var(--blue);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.2rem;
}

/* ===========================
   TESTIMONIAL STRIP
   =========================== */
.testimonial-strip {
  background: var(--blue-dark);
  padding: 4rem 0;
}

.tstrip-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tstrip-quote {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--blue-light);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.tstrip-inner blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.tstrip-inner cite {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ===========================
   PACKAGES TEASER
   =========================== */
.packages-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pkg-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.25s var(--ease);
}

.pkg-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.pkg-card.pkg-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.pkg-card.pkg-featured p { color: rgba(255,255,255,0.75); }

.pkg-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.pkg-featured .pkg-tag { color: rgba(255,255,255,0.6); }

.pkg-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.pkg-card p { font-size: 0.88rem; margin-bottom: 1.5rem; }

.custom-teaser {
  text-align: center;
  padding: 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.custom-teaser p { color: var(--ink-soft); font-size: 0.9rem; }
.custom-teaser a { color: var(--blue); font-weight: 500; }
.custom-teaser a:hover { text-decoration: underline; }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--ink);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  top: -100px;
  right: -100px;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ===========================
   PAGE HERO (Inner pages)
   =========================== */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-sm {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,106,181,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content { max-width: 650px; }
.page-hero-content h1 { margin-bottom: 1rem; }
.page-hero-content p { font-size: 1.05rem; }

/* ===========================
   SERVICES PAGE
   =========================== */
.pkg-full {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3rem;
  position: relative;
  margin-bottom: 0;
}

.pkg-full-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 20px 60px rgba(61,106,181,0.12);
}

.pkg-featured-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.pkg-full-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.pkg-full-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.5rem;
}

.pkg-full-title { font-size: 2.2rem; margin-bottom: 0.5rem; }
.pkg-full-desc { font-size: 0.95rem; max-width: 55ch; }

.pkg-full-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.pkg-includes h4, .pkg-ideal h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.pkg-list { list-style: none; }
.pkg-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-mid);
}
.pkg-list li:last-child { border-bottom: none; }
.check {
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
}

.pkg-ideal p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pkg-tags span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue);
  background: rgba(61,106,181,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.pkg-divider {
  height: 2.5rem;
}

/* ===========================
   CUSTOM SECTION
   =========================== */
.custom-section {
  background: var(--ink);
  padding: 5rem 0;
}

.custom-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.custom-icon {
  font-size: 2rem;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
}

.custom-inner h2 { color: var(--white); margin-bottom: 1rem; }
.custom-inner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

/* ===========================
   PORTFOLIO PAGE
   =========================== */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: none;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

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

.port-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}

.port-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.port-card.hidden { display: none; }

.port-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.port-img-1 { background: linear-gradient(135deg, #3d6ab5 0%, #7aa3e5 100%); }
.port-img-2 { background: linear-gradient(135deg, #2a4e8a 0%, #5a84cc 100%); }
.port-img-3 { background: linear-gradient(135deg, #1e3a6e 0%, #3d6ab5 100%); }
.port-img-4 { background: linear-gradient(135deg, #4a78c4 0%, #8ab3eb 100%); }
.port-img-5 { background: linear-gradient(135deg, #2d5699 0%, #6890d4 100%); }
.port-img-6 { background: linear-gradient(135deg, #3560a8 0%, #7099d8 100%); }

.port-img::before {
  content: 'KRP';
  position: absolute;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 24, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.port-card:hover .port-overlay { opacity: 1; }

.port-overlay span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}

.port-info { padding: 1.5rem; }
.port-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.port-info p { font-size: 0.82rem; margin-bottom: 1rem; line-height: 1.6; }

.port-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ===========================
   REVIEWS
   =========================== */
.reviews-section { background: var(--paper-warm); }

.stars-summary {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stars-big {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.stars-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.25s var(--ease);
}
.review-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.review-card cite {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: normal;
}

.cite-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-card cite strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.review-card cite span {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mission-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--blue);
  opacity: 0.2;
}

.mission-quote blockquote {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.3;
  margin-top: -1rem;
}

.mission-text p + p { margin-top: 1.25rem; }

.values-section { background: var(--paper-warm); }

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

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all 0.25s var(--ease);
  position: relative;
}
.value-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 30px rgba(61,106,181,0.1);
}

.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.88rem; }

.expertise-section { background: var(--ink); }
.expertise-section .section-eyebrow { color: var(--blue-light); }
.expertise-section .section-title { color: var(--white); }
.expertise-section .section-title em { color: var(--blue-light); }
.expertise-section p { color: rgba(255,255,255,0.6); }

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

.exp-bar-item { margin-bottom: 1.75rem; }
.exp-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.exp-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.exp-bar-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 100px;
  animation: barGrow 1.8s var(--ease-out) forwards;
  transform-origin: left;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.contact-info > p { font-size: 0.92rem; margin-bottom: 2rem; }

.contact-options { margin-bottom: 2.5rem; }
.contact-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-option:first-child { border-top: 1px solid var(--line); }

.co-icon {
  width: 40px;
  height: 40px;
  background: rgba(61,106,181,0.08);
  color: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.co-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.2rem; }
.co-value { font-size: 0.88rem; color: var(--ink); font-weight: 500; }

.pkg-interest {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.pkg-interest h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.5rem; }
.pkg-interest p { font-size: 0.82rem; margin-bottom: 1rem; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--line);
}

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

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(61,106,181,0.08);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--blue-dark);
  text-align: center;
}

.form-error {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(200, 50, 50, 0.06);
  border: 1px solid #e06060;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: #c03030;
  text-align: center;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--ink);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .logo-krp { color: var(--blue-light); }
.footer-brand .logo-sol { color: rgba(255,255,255,0.7); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid,
  .packages-row,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .expertise-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }

  .hero-heading { font-size: 3rem; }

  .strip-grid { flex-direction: column; gap: 1.5rem; }
  .strip-divider { display: none; }

  .services-grid,
  .packages-row,
  .reviews-grid,
  .portfolio-grid,
  .values-grid { grid-template-columns: 1fr; }

  .pkg-full { padding: 2rem; }
  .pkg-full-body { grid-template-columns: 1fr; gap: 2rem; }
  .pkg-full-header { flex-direction: column; gap: 1rem; }

  .about-mission { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
