/*
Theme Name:   Rokture Child
Theme URI:    https://rokture.com
Description:  Rokture child theme for Hello Elementor
Author:       Rokture LLC
Template:     hello-elementor
Version:      1.0.0
Text Domain:  rokture-child
*/

/* ============================================================
   BRAND TOKENS
============================================================ */
:root {
  --blue:        #6b99bb;
  --blue-dark:   #4a7a9b;
  --blue-light:  #e8f1f7;
  --sage:        #a3bfa9;
  --sage-dark:   #7a9e82;
  --teal:        #90a9af;
  --teal-light:  #7ea1b5;
  --navy:        #1e2d3d;
  --navy-deep:   #0f1923;
  --off-white:   #fcfcfc;
  --white:       #ffffff;
  --text:        #374151;
  --text-light:  #6b7280;
  --border:      #e5eaef;
  --font:        'Montserrat', sans-serif;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   UTILITY
============================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

.tag-pill {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--blue-light); color: var(--blue-dark);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 16px;
}

.tag-pill-dark {
  display: inline-block;
  background: rgba(107,153,187,0.15); color: #7ea1b5;
  border: 1px solid rgba(107,153,187,0.25);
  border-radius: 20px; padding: 5px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  padding: 15px 32px; border-radius: 10px;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  letter-spacing: 0.3px; cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(107,153,187,0.35);
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); color: white; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-family: var(--font);
  font-weight: 600; font-size: 14px; cursor: pointer;
  background: none; border: none; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--blue); }

/* ============================================================
   NAVIGATION
============================================================ */
#rokture-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--blue);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-wordmark {
  font-size: 22px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-logo-wordmark span { color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 4px; }

/* WordPress menu output */
.nav-right ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-right ul li a {
  font-size: 13px; font-weight: 600; color: var(--text);
  padding: 8px 14px; border-radius: 6px; display: block;
  transition: background 0.2s, color 0.2s;
}
.nav-right ul li a:hover { background: var(--blue-light); color: var(--blue-dark); }
.nav-right ul li.current-menu-item a { color: var(--blue); }

.nav-cta-btn {
  background: var(--blue); color: white !important;
  padding: 10px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  margin-left: 8px; white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta-btn:hover { background: var(--blue-dark) !important; }

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ============================================================
   HERO
============================================================ */
.hero {
  padding-top: 130px; padding-bottom: 100px;
  background: linear-gradient(135deg, #f0f6fb 0%, #f8fafb 50%, #eef4f0 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,153,187,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; color: var(--blue);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; background: var(--blue);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: 52px; font-weight: 800; line-height: 1.1;
  color: var(--navy); letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--blue); }

.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--text-light);
  margin-bottom: 36px; max-width: 480px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* Hero panel card */
.hero-panel {
  background: white; border-radius: 20px; padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid var(--border);
}
.hero-panel-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 20px;
}
.problem-card {
  background: var(--off-white); border-radius: 12px;
  padding: 20px; margin-bottom: 16px; border: 1px solid var(--border);
}
.problem-card-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.problem-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--text-light); margin-bottom: 8px;
}
.problem-item:last-child { margin-bottom: 0; }
.x-icon {
  width: 18px; height: 18px; background: #fee2e2;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 9px; color: #ef4444; flex-shrink: 0;
}
.hero-bridge { text-align: center; font-size: 18px; color: var(--blue); margin: 12px 0; }
.solution-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal-light) 100%);
  border-radius: 12px; padding: 20px;
}
.solution-card-title { font-size: 13px; font-weight: 700; color: white; margin-bottom: 12px; }
.solution-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.9); margin-bottom: 8px;
}
.solution-item:last-child { margin-bottom: 0; }
.check-icon {
  width: 18px; height: 18px; background: rgba(255,255,255,0.25);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 9px; color: white; flex-shrink: 0;
}

/* ============================================================
   CLIENT STRIP
============================================================ */
.client-strip {
  background: white; border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.client-strip-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-light);
  text-align: center; margin-bottom: 20px;
}
.client-strip-items {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.client-strip-item {
  font-size: 13px; font-weight: 700; color: var(--text-light);
  padding: 8px 24px; border-right: 1px solid var(--border);
}
.client-strip-item:last-child { border-right: none; }

/* ============================================================
   PROBLEM SECTION
============================================================ */
.problem-section {
  background: var(--navy); padding: 100px 0;
}
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.problem-section h2 {
  font-size: 40px; font-weight: 800; color: white;
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px;
}
.problem-section h2 span { color: var(--teal-light); }
.problem-section p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 16px; }
.italic-quote {
  font-style: italic; color: rgba(255,255,255,0.85); font-size: 17px;
  border-left: 3px solid var(--blue); padding-left: 18px; margin: 20px 0;
}
.problem-list { margin-top: 28px; }
.problem-list-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px; color: rgba(255,255,255,0.75);
}
.problem-num {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(107,153,187,0.2); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.metrics-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 40px;
}
.metrics-card h3 {
  font-size: 22px; font-weight: 700; color: white;
  line-height: 1.4; margin-bottom: 20px;
}
.metrics-card h3 em { font-style: italic; color: var(--teal-light); }
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric-bad {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  border-radius: 10px; padding: 14px; text-align: center;
}
.metric-bad .lbl { font-size: 11px; color: #fca5a5; font-weight: 600; }
.metric-bad .val { font-size: 18px; font-weight: 800; color: #fca5a5; margin-top: 4px; }
.metric-good {
  background: rgba(107,153,187,0.12); border: 1px solid rgba(107,153,187,0.25);
  border-radius: 10px; padding: 14px; text-align: center;
}
.metric-good .lbl { font-size: 11px; color: var(--teal-light); font-weight: 600; }
.metric-good .val { font-size: 18px; font-weight: 800; color: var(--teal-light); margin-top: 4px; }

/* ============================================================
   TRUST TRACK
============================================================ */
.trust-track { background: var(--off-white); padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header h2 {
  font-size: 42px; font-weight: 800; color: var(--navy);
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px;
}
.section-header h2 span { color: var(--blue); }
.section-header p { font-size: 16px; color: var(--text-light); line-height: 1.7; }

.trust-rail {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; position: relative;
}
.trust-rail::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sage));
  z-index: 0;
}
.trust-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.trust-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: white;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.s1 { background: #6b99bb; }
.s2 { background: #5d92b3; }
.s3 { background: #7ea1b5; }
.s4 { background: #90a9af; }
.s5 { background: #a3bfa9; }
.trust-step-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.trust-step-desc { font-size: 11.5px; color: var(--text-light); line-height: 1.6; }
.trust-step-result {
  margin-top: 12px; padding: 8px 12px;
  background: var(--blue-light); border-radius: 6px;
  font-size: 11px; font-weight: 600; color: var(--blue-dark);
}

.trust-info-bar {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
  background: white; border-radius: 16px; padding: 36px 40px;
  border: 1px solid var(--border); margin-top: 56px;
}
.trust-info-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.trust-info-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.trust-info-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   SERVICES
============================================================ */
.services { background: white; padding: 100px 0; }
.section-header-left { max-width: 560px; margin-bottom: 56px; }
.section-header-left h2 { font-size: 40px; font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px; }
.section-header-left h2 span { color: var(--blue); }
.section-header-left p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

.service-featured {
  background: linear-gradient(145deg, var(--navy) 0%, #2d4159 100%);
  border-radius: 16px; padding: 40px;
  margin-bottom: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.service-featured-num { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(107,153,187,0.6); margin-bottom: 16px; display: block; }
.service-icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(107,153,187,0.2); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 18px;
}
.service-featured h3 { font-size: 22px; font-weight: 700; color: white; margin-bottom: 10px; line-height: 1.3; }
.service-featured p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.service-tag {
  background: rgba(107,153,187,0.15); color: #7ea1b5;
  border: 1px solid rgba(107,153,187,0.25);
  padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600;
}
.service-featured-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  padding: 12px 24px; border-radius: 8px;
  font-weight: 700; font-size: 13px; transition: background 0.2s;
}
.service-featured-cta:hover { background: var(--blue-dark); color: white; }
.service-side-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px; margin-bottom: 14px;
}
.service-side-box:last-child { margin-bottom: 0; }
.service-side-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(107,153,187,0.7); margin-bottom: 6px; }
.service-side-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.service-card {
  background: var(--off-white); border-radius: 16px; padding: 32px;
  border: 1px solid var(--border); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(107,153,187,0.15);
  transform: translateY(-3px);
}
.service-card-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; display: block; }
.service-card h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--blue); margin-top: 20px; transition: gap 0.2s; }
.service-card-link:hover { gap: 10px; color: var(--blue-dark); }

/* ============================================================
   WHO WE SERVE
============================================================ */
.who-serve { background: var(--off-white); padding: 100px 0; }
.clients-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.client-card {
  background: white; border-radius: 14px; padding: 24px;
  border: 1px solid var(--border); text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.client-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(107,153,187,0.12); }
.client-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.client-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.client-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.client-examples { font-size: 11px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   ABOUT
============================================================ */
.about { background: white; padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-wrap img { border-radius: 20px; width: 100%; height: auto; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: white; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1); border: 1px solid var(--border);
  text-align: center; min-width: 140px;
}
.about-badge-num { font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.about-badge-label { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.about-content h2 { font-size: 40px; font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
.about-content h2 span { color: var(--blue); }
.about-content p { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 18px; }
.about-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-cred {
  display: flex; align-items: center; gap: 8px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 16px;
  font-size: 12px; font-weight: 600; color: var(--navy);
}
.about-cta-row { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* ============================================================
   TESTIMONIAL
============================================================ */
.testimonial {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal-light) 100%);
  padding: 80px 0; text-align: center;
}
.testimonial-inner { max-width: 800px; margin: 0 auto; }
.quote-mark { font-size: 80px; color: rgba(255,255,255,0.2); line-height: 0.5; display: block; margin-bottom: 24px; font-family: Georgia, serif; }
.testimonial-text { font-size: 22px; font-weight: 600; color: white; line-height: 1.6; font-style: italic; margin-bottom: 28px; }
.testimonial-author { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ============================================================
   BLOG / INSIGHTS
============================================================ */
.insights { background: var(--off-white); padding: 100px 0; }
.insights-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.insights-header h2 { font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.insights-header h2 span { color: var(--blue); }
.insights-all { font-size: 13px; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.insights-all:hover { gap: 8px; color: var(--blue-dark); }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card {
  background: white; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s;
}
.post-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.post-card-thumb { display: block; width: 100%; height: 180px; object-fit: cover; }
.post-card-thumb-placeholder {
  height: 180px; background: linear-gradient(135deg, var(--blue-light), #dde8f0);
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.post-card-body { padding: 20px; }
.post-card-cat {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--blue-light); color: var(--blue-dark);
  padding: 3px 10px; border-radius: 12px; margin-bottom: 10px;
}
.post-card-title { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.post-card-title a { color: inherit; transition: color 0.2s; }
.post-card-title a:hover { color: var(--blue); }
.post-card-excerpt { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section { background: var(--navy); padding: 100px 0; text-align: center; }
.cta-section h2 { font-size: 44px; font-weight: 800; color: white; letter-spacing: -1px; line-height: 1.15; margin: 18px auto; max-width: 640px; }
.cta-section h2 span { color: var(--teal-light); }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--navy); padding: 16px 36px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); color: var(--navy); }
.btn-outline { background: transparent; color: white; padding: 16px 36px; border-radius: 10px; border: 2px solid rgba(255,255,255,0.25); font-weight: 700; font-size: 14px; transition: border-color 0.2s; }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* ============================================================
   FOOTER
============================================================ */
#rokture-footer { background: var(--navy-deep); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5);
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: white; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   BLOG PAGES (for WordPress archive / single templates)
============================================================ */
.wp-content-wrap {
  max-width: 1160px; margin: 0 auto; padding: 120px 32px 80px;
}
.wp-content-wrap .entry-title { font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.wp-content-wrap .entry-content { font-size: 16px; color: var(--text); line-height: 1.8; max-width: 720px; }
.wp-content-wrap .entry-content h2 { font-size: 26px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.wp-content-wrap .entry-content h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.wp-content-wrap .entry-content p { margin-bottom: 18px; }
.wp-content-wrap .entry-content a { color: var(--blue); text-decoration: underline; }
.wp-content-wrap .entry-content ul, .wp-content-wrap .entry-content ol { padding-left: 24px; margin-bottom: 18px; }
.wp-content-wrap .entry-content li { margin-bottom: 8px; }
.wp-content-wrap .entry-content img { border-radius: 12px; margin: 24px 0; }
.wp-content-wrap .entry-content blockquote { border-left: 3px solid var(--blue); padding-left: 20px; margin: 24px 0; font-style: italic; color: var(--text-light); font-size: 17px; }

/* ============================================================
   MOBILE RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-right ul { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px 0; z-index: 999; }
  .nav-right ul.is-open { display: flex; }
  .nav-right ul li a { padding: 12px 24px; border-radius: 0; }
  .nav-cta-btn { display: none; }
  .nav-toggle { display: block; }

  /* Hero */
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 22px; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr; }
  .problem-section h2 { font-size: 28px; }

  /* Trust Track */
  .trust-rail { grid-template-columns: 1fr; gap: 24px; }
  .trust-rail::before { display: none; }
  .trust-info-bar { grid-template-columns: 1fr; gap: 20px; }

  /* Services */
  .service-featured { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Clients */
  .clients-grid { grid-template-columns: 1fr 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 16px; }

  /* Section headings */
  .section-header h2, .cta-section h2 { font-size: 28px; }
  .section-header-left h2 { font-size: 28px; }

  /* Posts */
  .posts-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .insights-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Container */
  .container { padding: 0 20px; }
  .problem-section, .trust-track, .services, .who-serve, .about, .insights, .cta-section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .client-strip-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; text-align: center; }
}
