/* ==========================================================
   Ronkey Locksmith Theme — RTL Hebrew
   ========================================================== */

:root {
  --lime: #C8FF3E;
  --lime-deep: #A8E625;
  --lime-soft: #E8FFA8;
  --ink: #0E0F0C;
  --ink-soft: #1A1B17;
  --ink-muted: #2B2D27;
  --cream: #F4F2E9;
  --cream-2: #EDEADF;
  --muted: #6B6E63;
  --line: #DDD9C7;
  --white: #FFFFFF;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 12px rgba(14,15,12,0.06);
  --shadow-md: 0 12px 32px rgba(14,15,12,0.08);
  --shadow-lg: 0 24px 60px rgba(14,15,12,0.12);
  --font-display: 'Bricolage Grotesque', 'Heebo', system-ui, sans-serif;
  --font-body: 'Manrope', 'Heebo', system-ui, sans-serif;
}

/* Reset/base - override old theme styles */
.ronkey, .ronkey *, .ronkey *::before, .ronkey *::after { box-sizing: border-box; }
body.home, body:has(.ronkey) { background: var(--cream) !important; }
.ronkey {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  direction: rtl;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.ronkey h1, .ronkey h2, .ronkey h3, .ronkey h4, .ronkey h5, .ronkey h6 { color: var(--ink); }
.ronkey .btn-ink h3, .ronkey .btn-ink h4,
.ronkey-why .feature h4, .ronkey-contact h2, .ronkey-cta-banner h2,
.ronkey-midcta h2, .ronkey-faq-item[open] summary, .ronkey-plan.featured h3,
.ronkey-service-card:hover h3 { color: var(--white); }
.ronkey ul li { display: list-item; }
.ronkey .ronkey-plan ul li, .ronkey-nav, .ronkey-nav *,
.ronkey-faq-list, .ronkey-faq-item, .ronkey-logos .logos-list,
.ronkey-footer ul li, .ronkey-footer-top ul { list-style: none; }
.ronkey-footer-top ul li { display: block; }
/* Editor guardrail: keep hero text above bg image even in edit mode */
.ab-fe-on .ronkey-hero .hero-image .ab-img-ok { z-index: auto !important; }
.ronkey img, .ronkey svg { max-width: 100%; display: block; }
.ronkey a { color: inherit; text-decoration: none; }
.ronkey h1, .ronkey h2, .ronkey h3, .ronkey h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.ronkey .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility */
.ronkey .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--cream);
}
.ronkey .eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); display: inline-block;
}
.ronkey .eyebrow.on-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: #C5C7BE;
}

.ronkey .highlight {
  color: var(--lime-deep);
  font-style: normal;
  background: transparent;
}

.ronkey .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  font-family: var(--font-body);
  line-height: 1;
  white-space: nowrap;
}
.ronkey .btn:hover { transform: translateY(-2px); }
.ronkey .btn-lime { background: var(--lime); color: var(--ink); }
.ronkey .btn-lime:hover { background: var(--lime-deep); }
.ronkey .btn-ink { background: var(--ink); color: var(--white); }
.ronkey .btn-ink:hover { background: var(--ink-soft); }
.ronkey .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.ronkey .btn-outline:hover { background: var(--ink); color: var(--white); }
.ronkey .btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.ronkey .btn-outline-light:hover { background: var(--white); color: var(--ink); }
.ronkey .btn .arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: var(--lime);
  display: inline-grid; place-items: center;
  font-size: 12px;
}
.ronkey .btn-ink .arrow { background: var(--lime); color: var(--ink); }

/* =================== HEADER =================== */
.ronkey-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(244, 242, 233, 0.85);
  border-bottom: 1px solid rgba(14,15,12,0.06);
}
.ronkey-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px; margin: 0 auto;
  gap: 24px;
}
.ronkey-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.03em;
}
.ronkey-logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--lime);
  display: grid; place-items: center;
  font-size: 18px;
}
.ronkey-nav { display: flex; gap: 4px; }
.ronkey-nav a {
  padding: 10px 18px;
  font-size: 15px; font-weight: 500;
  border-radius: var(--radius-pill);
  transition: background .2s, color .2s;
}
.ronkey-nav a:hover { background: rgba(14,15,12,0.05); }
.ronkey-nav a.active { color: var(--lime-deep); }
.ronkey-header .header-cta { display: flex; align-items: center; gap: 12px; }
.ronkey-menu-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); }

/* =================== HERO =================== */
.ronkey-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 40px 24px 0;
  overflow: hidden;
}
.ronkey-hero .hero-wrap {
  max-width: 1280px; margin: 0 auto;
  background: var(--ink-soft);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ronkey-hero .hero-left { position: relative; z-index: 2; }
.ronkey-hero h1 {
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 28px;
}
.ronkey-hero h1 .highlight { color: var(--lime); }
.ronkey-hero .hero-sub {
  font-size: 16px; color: #C5C7BE;
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.ronkey-hero .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.ronkey-hero .hero-reviews {
  display: flex; align-items: center; gap: 14px;
}
.ronkey-hero .hero-reviews-avatars {
  display: inline-flex;
}
.ronkey-hero .hero-reviews-avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  border: 2px solid var(--ink-soft);
  margin-left: -10px;
  display: inline-block;
}
.ronkey-hero .hero-reviews-avatars span:first-child { margin-left: 0; }
.ronkey-hero .hero-reviews-text strong { display: block; color: var(--white); font-size: 16px; font-weight: 600; }
.ronkey-hero .hero-reviews-text small { color: #A9AB9F; font-size: 13px; }
.ronkey-hero .hero-right {
  position: relative; z-index: 2;
  height: 100%; min-height: 420px;
}
.ronkey-hero .hero-image {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #2B2D27;
}
.ronkey-hero .hero-image img, .ronkey-hero .hero-image svg {
  width: 100%; height: 100%; object-fit: cover;
}
.ronkey-hero .hero-badge-247 {
  position: absolute; top: 32px; right: -8px;
  background: var(--cream); color: var(--ink);
  border-radius: 50%;
  width: 84px; height: 84px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  line-height: 1;
  z-index: 3;
}
.ronkey-hero .hero-badge-text {
  position: absolute; top: 32px; right: 96px;
  background: var(--ink-muted); color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 13px; max-width: 220px;
  z-index: 3;
  line-height: 1.4;
}
.ronkey-hero .hero-tool-icon {
  position: absolute;
  right: 32px; bottom: 32px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center;
  font-size: 22px;
  z-index: 3;
}
.ronkey-hero .hero-sideshot {
  position: absolute; bottom: -40px; left: 56px; right: auto;
  width: 180px; height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #3B3D37;
  border: 6px solid var(--ink);
  z-index: 4;
}
.ronkey-hero .hero-sideshot img, .ronkey-hero .hero-sideshot svg { width: 100%; height: 100%; object-fit: cover; }
.ronkey-hero .hero-sideshot .sidecheck {
  position: absolute; top: 10px; left: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 14px;
}

/* =================== ABOUT =================== */
.ronkey-about {
  padding: 96px 0;
  background: var(--cream);
}
.ronkey-about .inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.ronkey-about .about-left h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin: 16px 0 20px;
  font-weight: 600;
  line-height: 1.15;
}
.ronkey-about .about-left p {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 480px;
  line-height: 1.7;
}
.ronkey-about .about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.ronkey-about .stat-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.ronkey-about .stat-box h4 {
  font-size: 18px; margin: 0 0 6px;
}
.ronkey-about .stat-box p {
  font-size: 14px; color: var(--muted); margin: 0;
}
.ronkey-about .about-right {
  position: relative;
  min-height: 520px;
}
.ronkey-about .collage-img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink-muted);
}
.ronkey-about .collage-img img, .ronkey-about .collage-img svg { width: 100%; height: 100%; object-fit: cover; }
.ronkey-about .img-1 { top: 0; right: 0; width: 56%; height: 55%; }
.ronkey-about .img-2 { bottom: 0; right: 0; width: 48%; height: 40%; }
.ronkey-about .img-3 { top: 10%; left: 0; width: 44%; height: 70%; }
.ronkey-about .exp-badge {
  position: absolute;
  top: 48%; left: 40%;
  background: var(--lime);
  color: var(--ink);
  width: 120px; height: 120px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  z-index: 3;
  border: 6px solid var(--cream);
}
.ronkey-about .exp-badge strong { display: block; font-size: 34px; line-height: 1; font-weight: 700; }
.ronkey-about .exp-badge small { font-size: 11px; font-weight: 500; }
.ronkey-about .check-badge {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 14px;
}

/* =================== LOGOS STRIP =================== */
.ronkey-logos {
  background: var(--ink);
  color: var(--white);
  padding: 32px 0;
}
.ronkey-logos .inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 32px;
}
.ronkey-logos .logos-title {
  font-size: 14px; color: #A9AB9F;
}
.ronkey-logos .logos-list {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.ronkey-logos .logo-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 16px; font-weight: 500;
}
.ronkey-logos .logo-item i { font-size: 22px; }

/* =================== SERVICES =================== */
.ronkey-services {
  padding: 96px 0;
  background: var(--cream);
}
.ronkey-services .head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.ronkey-services .head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  max-width: 640px;
  margin: 12px 0 0;
}
.ronkey-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ronkey-service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
}
.ronkey-service-card:hover {
  background: var(--ink); color: var(--white);
  transform: translateY(-4px);
}
.ronkey-service-card .svc-img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}
.ronkey-service-card .svc-img img, .ronkey-service-card .svc-img svg {
  width: 100%; height: 100%; object-fit: cover;
}
.ronkey-service-card .svc-arrow {
  position: absolute; top: 14px; left: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 13px;
}
.ronkey-service-card h3 {
  font-size: 22px; font-weight: 600;
  margin: 0;
}
.ronkey-service-card p {
  font-size: 14px; color: var(--muted);
  margin: 0; line-height: 1.6;
}
.ronkey-service-card:hover p { color: #C5C7BE; }

/* =================== PROJECTS =================== */
.ronkey-projects {
  padding: 96px 0;
  background: var(--cream);
}
.ronkey-projects .head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.ronkey-projects .head-left h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin-top: 12px;
}
.ronkey-projects .head-right {
  max-width: 420px;
}
.ronkey-projects .head-right p {
  color: var(--muted); margin: 0 0 16px; line-height: 1.7;
}
.ronkey-projects-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 220px;
  gap: 20px;
}
.ronkey-project {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-muted);
}
.ronkey-project img, .ronkey-project svg { width: 100%; height: 100%; object-fit: cover; }
.ronkey-project .proj-label {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--cream); color: var(--ink);
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
}
.ronkey-project .proj-arrow {
  position: absolute; bottom: 20px; left: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 15px;
}
.ronkey-project.big { grid-row: 1 / 3; }

/* =================== WHY US =================== */
.ronkey-why {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ronkey-why::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><g fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.06"><circle cx="100" cy="100" r="200"/><circle cx="700" cy="400" r="180"/></g></svg>') no-repeat center/cover;
  pointer-events: none;
}
.ronkey-why .inner { position: relative; z-index: 1; }
.ronkey-why .why-top {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
.ronkey-why .why-top h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin-top: 12px;
}
.ronkey-why .why-top p {
  color: #A9AB9F; line-height: 1.7;
  margin: 0 0 24px;
}
.ronkey-why .why-features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ronkey-why .feature {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  background: rgba(255,255,255,0.02);
}
.ronkey-why .feature h4 {
  font-size: 18px; margin: 0 0 8px;
}
.ronkey-why .feature p { font-size: 14px; color: #A9AB9F; margin: 0; }
.ronkey-why .why-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ronkey-why .stat {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; gap: 16px;
}
.ronkey-why .stat-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 22px;
  flex-shrink: 0;
}
.ronkey-why .stat strong {
  font-family: var(--font-display);
  font-size: 32px;
  display: block; line-height: 1;
}
.ronkey-why .stat span { font-size: 14px; color: #A9AB9F; }

/* =================== PROCESS =================== */
.ronkey-process {
  padding: 96px 0;
  background: var(--cream);
}
.ronkey-process .head {
  text-align: center; margin-bottom: 56px;
}
.ronkey-process .head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin: 12px 0 0;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.ronkey-process-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 32px; align-items: center;
}
.ronkey-process-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-muted);
}
.ronkey-process-img img, .ronkey-process-img svg { width: 100%; height: 100%; object-fit: cover; }
.ronkey-process-steps {
  display: flex; flex-direction: column; gap: 16px;
}
.ronkey-step {
  display: flex; align-items: center; gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 16px 24px;
}
.ronkey-step.dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.ronkey-step .num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  flex-shrink: 0;
}
.ronkey-step.dark .num { background: var(--lime); }
.ronkey-step h4 { margin: 0; font-size: 20px; font-weight: 600; }

/* =================== CTA BANNER =================== */
.ronkey-cta-banner {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.ronkey-cta-banner .inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  text-align: center;
}
.ronkey-cta-banner .eyebrow { display: inline-flex; margin-bottom: 16px; }
.ronkey-cta-banner h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  max-width: 700px;
  margin: 0 0 24px;
}
.ronkey-cta-banner .highlight { color: var(--lime); }

/* =================== TESTIMONIALS =================== */
.ronkey-testimonials {
  padding: 96px 0;
  background: var(--cream);
}
.ronkey-testimonials .head {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: end;
}
.ronkey-testimonials .head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin: 12px 0 0;
}
.ronkey-testimonials .head p { color: var(--muted); margin: 0; }
.ronkey-testimonials .score-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.ronkey-testimonials .score-box strong {
  font-family: var(--font-display);
  font-size: 48px; line-height: 1;
  display: block; margin-bottom: 4px;
}
.ronkey-testimonials .score-box span { font-size: 13px; color: var(--muted); }
.ronkey-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ronkey-testi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.ronkey-testi-head {
  display: flex; align-items: center; gap: 12px;
}
.ronkey-testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
}
.ronkey-testi-head strong { display: block; font-size: 15px; }
.ronkey-testi-head small { color: var(--muted); font-size: 12px; }
.ronkey-testi .stars { color: #F5B94E; font-size: 15px; letter-spacing: 2px; }
.ronkey-testi p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* =================== PRICING =================== */
.ronkey-pricing {
  padding: 96px 0;
  background: var(--cream);
}
.ronkey-pricing .head {
  text-align: center; margin-bottom: 56px;
}
.ronkey-pricing .head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin: 12px 0 0;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.ronkey-pricing .head .highlight { color: var(--lime-deep); }
.ronkey-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ronkey-plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  overflow: hidden;
}
.ronkey-plan.featured {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.ronkey-plan-head {
  display: flex; align-items: center; gap: 14px;
}
.ronkey-plan-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--lime);
  display: grid; place-items: center; font-size: 18px;
}
.ronkey-plan.featured .ronkey-plan-icon { background: var(--lime); color: var(--ink); }
.ronkey-plan h3 { font-size: 20px; margin: 0; }
.ronkey-plan .price {
  display: flex; align-items: baseline; gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.ronkey-plan.featured .price { border-color: rgba(255,255,255,0.1); }
.ronkey-plan .price strong {
  font-family: var(--font-display);
  font-size: 48px; line-height: 1; color: var(--lime-deep);
}
.ronkey-plan.featured .price strong { color: var(--lime); }
.ronkey-plan .price span { font-size: 13px; color: var(--muted); }
.ronkey-plan.featured .price span { color: #A9AB9F; }
.ronkey-plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ronkey-plan li {
  font-size: 14px; display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.ronkey-plan.featured li { color: var(--white); }
.ronkey-plan li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime-deep); flex-shrink: 0;
}

/* =================== FAQ =================== */
.ronkey-faq {
  padding: 96px 0;
  background: var(--cream);
}
.ronkey-faq .inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 56px; align-items: start;
}
.ronkey-faq .faq-left h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 12px 0 16px;
}
.ronkey-faq .faq-left p { color: var(--muted); line-height: 1.7; margin: 0 0 24px; }
.ronkey-faq .help-box {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 16px;
}
.ronkey-faq .help-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 16px;
}
.ronkey-faq .help-box strong { font-size: 14px; }
.ronkey-faq .help-box small { color: var(--muted); font-size: 12px; display: block; }
.ronkey-faq-list { display: flex; flex-direction: column; gap: 12px; }
.ronkey-faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background .2s;
}
.ronkey-faq-item[open] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.ronkey-faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-weight: 500; font-size: 16px;
}
.ronkey-faq-item summary::-webkit-details-marker { display: none; }
.ronkey-faq-item .plus {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); color: var(--ink);
  display: grid; place-items: center; font-size: 14px;
  flex-shrink: 0;
}
.ronkey-faq-item[open] .plus { background: var(--lime); color: var(--ink); transform: rotate(45deg); }
.ronkey-faq-item .answer {
  padding: 0 24px 20px;
  font-size: 14px; line-height: 1.7;
  color: #C5C7BE;
}
.ronkey-faq-item:not([open]) .answer { display: none; }

/* =================== MID CTA =================== */
.ronkey-midcta {
  padding: 0 24px;
  background: var(--cream);
}
.ronkey-midcta .inner {
  max-width: 1280px; margin: 0 auto;
  background: linear-gradient(135deg, #8C5A1F, #6B3F15);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 32px; align-items: center;
  color: var(--white);
  position: relative; overflow: hidden;
}
.ronkey-midcta h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 12px 0 16px;
}
.ronkey-midcta .highlight { color: var(--lime); }
.ronkey-midcta p { color: rgba(255,255,255,0.85); margin: 0 0 24px; line-height: 1.7; }
.ronkey-midcta-img {
  aspect-ratio: 1/1; max-width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  justify-self: end;
}
.ronkey-midcta-img img, .ronkey-midcta-img svg { width: 100%; height: 100%; object-fit: cover; }

/* =================== BLOG =================== */
.ronkey-blog {
  padding: 96px 0;
  background: var(--cream);
}
.ronkey-blog .head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.ronkey-blog .head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin: 12px 0 0;
}
.ronkey-blog .head .highlight { color: var(--lime-deep); }
.ronkey-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ronkey-post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.ronkey-post:hover { transform: translateY(-4px); }
.ronkey-post .post-img {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--ink-muted);
  overflow: hidden;
}
.ronkey-post .post-img img, .ronkey-post .post-img svg { width: 100%; height: 100%; object-fit: cover; }
.ronkey-post .date-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--cream); color: var(--ink);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
}
.ronkey-post .post-body {
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.ronkey-post .post-meta { font-size: 12px; color: var(--muted); }
.ronkey-post h3 {
  font-size: 19px; margin: 0; line-height: 1.35;
}
.ronkey-post p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
.ronkey-post .read-more {
  display: inline-flex; align-items: center;
  background: var(--lime); color: var(--ink);
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  align-self: flex-start;
}

/* =================== CONTACT =================== */
.ronkey-contact {
  padding: 0 24px 96px;
  background: var(--cream);
}
.ronkey-contact .inner {
  max-width: 1280px; margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: center;
}
.ronkey-contact h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin: 12px 0 20px;
}
.ronkey-contact .highlight { color: var(--lime); }
.ronkey-contact .contact-left p { color: #A9AB9F; margin: 0 0 24px; line-height: 1.7; }
.ronkey-contact .contact-channels { display: flex; flex-direction: column; gap: 12px; }
.ronkey-contact .channel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
}
.ronkey-contact .channel-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 16px;
}
.ronkey-contact .channel strong { font-size: 14px; }
.ronkey-contact .channel small { color: #A9AB9F; font-size: 12px; display: block; }
.ronkey-contact form {
  background: var(--ink-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.ronkey-contact .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.ronkey-contact input,
.ronkey-contact textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
}
.ronkey-contact input::placeholder,
.ronkey-contact textarea::placeholder { color: #6B6E63; }
.ronkey-contact input:focus,
.ronkey-contact textarea:focus {
  outline: none; border-color: var(--lime);
}
.ronkey-contact textarea { min-height: 110px; resize: vertical; }
.ronkey-contact button[type="submit"] {
  align-self: flex-start;
  background: var(--lime); color: var(--ink);
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px;
  cursor: pointer;
  font-family: inherit;
}

/* =================== FOOTER =================== */
.ronkey-footer {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ronkey-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ronkey-footer-brand .logo { margin-bottom: 16px; color: var(--white); }
.ronkey-footer-brand p { color: #A9AB9F; font-size: 14px; line-height: 1.7; max-width: 280px; }
.ronkey-footer h4 { font-size: 16px; margin: 0 0 16px; }
.ronkey-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ronkey-footer li a { color: #A9AB9F; font-size: 14px; transition: color .2s; }
.ronkey-footer li a:hover { color: var(--lime); }
.ronkey-footer .newsletter input {
  width: 100%; padding: 14px 16px;
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  color: var(--white); font-family: inherit;
  margin-bottom: 12px;
}
.ronkey-footer .newsletter button {
  background: var(--lime); color: var(--ink);
  border: none; padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600; cursor: pointer;
  font-family: inherit;
}
.ronkey-footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: #A9AB9F;
}
.ronkey-footer-bottom .socials { display: flex; gap: 10px; }
.ronkey-footer-bottom .socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink-soft); color: var(--white);
  display: grid; place-items: center; font-size: 14px;
  border: 1px solid rgba(255,255,255,0.1);
}
.ronkey-footer-bottom .socials a:hover { background: var(--lime); color: var(--ink); }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .ronkey-hero .hero-wrap { grid-template-columns: 1fr; padding: 48px 32px; }
  .ronkey-hero .hero-right { min-height: 380px; }
  .ronkey-hero .hero-sideshot { display: none; }
  .ronkey-about .inner { grid-template-columns: 1fr; }
  .ronkey-about .about-right { min-height: 420px; }
  .ronkey-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ronkey-projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .ronkey-project.big { grid-row: 1 / 2; grid-column: 1 / 3; }
  .ronkey-why .why-top { grid-template-columns: 1fr; }
  .ronkey-why .why-stats { grid-template-columns: 1fr; }
  .ronkey-process-grid { grid-template-columns: 1fr; }
  .ronkey-testimonials .head { grid-template-columns: 1fr; }
  .ronkey-testimonials-grid { grid-template-columns: 1fr; }
  .ronkey-pricing-grid { grid-template-columns: 1fr; }
  .ronkey-faq .inner { grid-template-columns: 1fr; }
  .ronkey-midcta .inner { grid-template-columns: 1fr; padding: 36px; }
  .ronkey-midcta-img { justify-self: center; max-width: 220px; }
  .ronkey-blog-grid { grid-template-columns: 1fr; }
  .ronkey-contact .inner { grid-template-columns: 1fr; padding: 36px; }
  .ronkey-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .ronkey-nav { display: none; }
  .ronkey-menu-toggle { display: block; }
  .ronkey-hero { padding-top: 24px; }
  .ronkey-hero .hero-wrap { padding: 32px 24px; border-radius: var(--radius-lg); }
  .ronkey-hero .hero-btns { flex-direction: column; align-items: stretch; }
  .ronkey-hero .hero-badge-text { display: none; }
  .ronkey-about, .ronkey-services, .ronkey-projects, .ronkey-why,
  .ronkey-process, .ronkey-testimonials, .ronkey-pricing, .ronkey-faq,
  .ronkey-blog { padding: 64px 0; }
  .ronkey-services-grid { grid-template-columns: 1fr; }
  .ronkey-projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ronkey-project.big { grid-row: auto; grid-column: auto; }
  .ronkey-why .why-features { grid-template-columns: 1fr; }
  .ronkey-footer-top { grid-template-columns: 1fr; }
  .ronkey-contact .form-row { grid-template-columns: 1fr; }
}
