/* ══════════════════════════════════════════════════════════════
   ReggeliGO Marketing — styles.css
   Standalone CSS for reggeligo.hu marketing pages.
   No framework dependency. Mobile-first.
   ══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;font-size:16px;line-height:1.7;color:#111;background:#fff;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}

/* ── Variables ─────────────────────────────────────────────── */
:root{
  --red:#E4002B;
  --red-hover:#c80025;
  --dark:#111111;
  --dark2:#0a0a0a;
  --gray:#f6f7f9;
  --white:#ffffff;
  --text:#111111;
  --text-muted:rgba(17,17,17,.58);
  --text-light:rgba(255,255,255,.7);
  --border:rgba(17,17,17,.09);
  --success:#16a34a;
  --radius:10px;
  --max-w:1140px;
  --section-py:88px;
}

/* ── Typography ────────────────────────────────────────────── */
h1{font-size:clamp(36px,6vw,64px);font-weight:700;line-height:1.08;letter-spacing:-.04em}
h2{font-size:clamp(28px,4vw,42px);font-weight:600;line-height:1.18;letter-spacing:-.025em}
h3{font-size:18px;font-weight:600;line-height:1.3}
p{margin-bottom:1em}
p:last-child{margin-bottom:0}

/* ── Layout ────────────────────────────────────────────────── */
.rgo-wrap{max-width:var(--max-w);margin:0 auto;padding:0 24px}
.rgo-section{padding:var(--section-py) 0}
.rgo-section--dark{background:var(--dark);color:#fff}
.rgo-section--dark2{background:var(--dark2);color:#fff}
.rgo-section--gray{background:var(--gray)}
.rgo-section--white{background:var(--white)}

.rgo-grid{display:grid;gap:24px}
.rgo-grid--2{grid-template-columns:1fr}
.rgo-grid--3{grid-template-columns:1fr}
.rgo-grid--4{grid-template-columns:1fr 1fr}
@media(min-width:768px){
  .rgo-grid--2{grid-template-columns:1fr 1fr}
  .rgo-grid--3{grid-template-columns:repeat(3,1fr)}
  .rgo-grid--4{grid-template-columns:repeat(4,1fr)}
}

.rgo-text-center{text-align:center}
.rgo-mt-16{margin-top:16px}
.rgo-mt-24{margin-top:24px}
.rgo-mt-32{margin-top:32px}
.rgo-mt-48{margin-top:48px}
.rgo-mb-16{margin-bottom:16px}
.rgo-mb-24{margin-bottom:24px}

/* ── Buttons ───────────────────────────────────────────────── */
.rgo-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 24px;border-radius:8px;
  font-size:15px;font-weight:600;
  cursor:pointer;transition:all .2s;
  border:2px solid transparent;
  text-decoration:none;
}
.rgo-btn--primary{background:var(--red);color:#fff;border-color:var(--red)}
.rgo-btn--primary:hover{background:var(--red-hover);border-color:var(--red-hover)}
.rgo-btn--outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.2)}
.rgo-btn--outline:hover{border-color:rgba(255,255,255,.5)}
.rgo-btn--outline-dark{background:transparent;color:var(--text);border-color:var(--border)}
.rgo-btn--outline-dark:hover{border-color:var(--text)}
.rgo-btn--text{background:transparent;color:var(--red);border:none;padding:13px 0}
.rgo-btn--text:hover{text-decoration:underline}

/* ── Header ────────────────────────────────────────────────── */
.rgo-header{
  position:sticky;top:0;z-index:100;
  background:rgba(17,17,17,.98);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.rgo-header__inner{
  max-width:var(--max-w);margin:0 auto;padding:0 24px;
  display:flex;align-items:center;justify-content:space-between;
  height:60px;
}
.rgo-header__logo{font-size:20px;font-weight:700;color:#fff;letter-spacing:-.02em}
.rgo-header__logo span{color:var(--red)}
.rgo-header__nav{display:none;gap:32px;align-items:center}
.rgo-header__nav a{color:var(--text-light);font-size:14px;font-weight:500;transition:color .2s}
.rgo-header__nav a:hover{color:#fff}
.rgo-header__cta{display:none}
.rgo-header__cta .rgo-btn{padding:9px 18px;font-size:14px}
.rgo-hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:8px}
.rgo-hamburger span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;transition:all .2s}

@media(min-width:768px){
  .rgo-header__nav{display:flex}
  .rgo-header__cta{display:block}
  .rgo-hamburger{display:none}
}

/* ── Mobile menu ───────────────────────────────────────────── */
.rgo-mobile-menu{
  display:none;position:fixed;inset:0;top:60px;
  background:var(--dark);z-index:99;
  padding:32px 24px;
  flex-direction:column;gap:24px;
}
.rgo-mobile-menu.is-open{display:flex}
.rgo-mobile-menu a{color:#fff;font-size:18px;font-weight:500;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.06)}
.rgo-mobile-menu .rgo-btn{margin-top:16px;justify-content:center}

/* ── Hero ──────────────────────────────────────────────────── */
.rgo-hero{
  background:var(--dark);color:#fff;
  padding:80px 0 64px;
  position:relative;overflow:hidden;
}
.rgo-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 20% 80%,rgba(228,0,43,.06),transparent 50%);
  pointer-events:none;
}
.rgo-hero .rgo-wrap{position:relative;z-index:1}
.rgo-hero__layout{display:grid;grid-template-columns:1fr;gap:48px;align-items:center}
@media(min-width:768px){.rgo-hero__layout{grid-template-columns:1fr 1fr}}
.rgo-hero__badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 14px;border-radius:999px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
  font-size:12px;font-weight:500;color:rgba(255,255,255,.5);
  letter-spacing:.02em;
  margin-bottom:28px;
}
.rgo-hero__badge::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--success);flex-shrink:0}
.rgo-hero h1{margin-bottom:24px;max-width:560px}
.rgo-hero__sub{font-size:clamp(15px,1.8vw,18px);color:rgba(255,255,255,.55);max-width:460px;margin-bottom:36px;line-height:1.75}
.rgo-hero__ctas{display:flex;flex-wrap:wrap;gap:12px}
.rgo-hero__visual{
  display:none;aspect-ratio:4/3;border-radius:var(--radius);
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.rgo-hero__visual.has-image{display:block}
.rgo-hero__visual img{width:100%;height:100%;object-fit:cover}
@media(min-width:768px){
  .rgo-hero{padding:120px 0 100px}
  .rgo-hero__visual{display:block}
}

/* ── Icon system ──────────────────────────────────────────── */
.rgo-icon{display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}
.rgo-icon svg{display:block}
.rgo-card .rgo-icon{color:var(--red);margin-bottom:16px}
.rgo-step .rgo-icon{color:var(--red);margin-bottom:10px}
.rgo-feature .rgo-icon{color:var(--red)}

/* ── Cards ─────────────────────────────────────────────────── */
.rgo-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px 32px;
  transition:box-shadow .2s, border-color .2s;
}
.rgo-card:hover{box-shadow:0 2px 12px rgba(0,0,0,.04);border-color:rgba(17,17,17,.14)}
.rgo-card h3{margin-bottom:12px}
.rgo-card p{color:var(--text-muted);font-size:15px;line-height:1.7}

/* Dark card variant */
.rgo-card--dark{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);color:#fff}
.rgo-card--dark p{color:var(--text-light)}

/* ── Section headers ───────────────────────────────────────── */
.rgo-section__head{max-width:600px;margin:0 auto 56px;text-align:center}
.rgo-section__head--left{text-align:left;margin-left:0}
.rgo-section__head p{color:var(--text-muted);margin-top:16px;font-size:16px;line-height:1.7}
.rgo-section--dark .rgo-section__head p{color:var(--text-light)}

/* ── Steps ─────────────────────────────────────────────────── */
.rgo-steps{display:grid;gap:32px;counter-reset:step}
@media(min-width:768px){.rgo-steps{grid-template-columns:repeat(4,1fr);gap:24px}}
.rgo-step{counter-increment:step;text-align:center;position:relative}
.rgo-step__icon{font-size:36px;margin-bottom:8px;display:block}
.rgo-step__num{
  display:inline-flex;align-items:center;justify-content:center;
  width:28px;height:28px;border-radius:50%;
  background:var(--red);color:#fff;font-size:13px;font-weight:700;
  margin-bottom:12px;
}
.rgo-step__num::after{content:counter(step)}
.rgo-step h3{font-size:16px;margin-bottom:6px}
.rgo-step p{font-size:14px;color:var(--text-muted)}

/* ── City cards ────────────────────────────────────────────── */
.rgo-city{text-align:center;padding:32px 20px;border-radius:var(--radius);border:1px solid var(--border);background:var(--white)}
.rgo-city__name{font-size:18px;font-weight:700;margin-bottom:6px}
.rgo-city__badge{
  display:inline-block;padding:4px 12px;border-radius:999px;
  font-size:12px;font-weight:600;
}
.rgo-city__badge--active{background:rgba(22,163,74,.1);color:var(--success)}
.rgo-city__badge--soon{background:rgba(17,17,17,.06);color:var(--text-muted)}

/* ── FAQ ───────────────────────────────────────────────────── */
.rgo-faq{max-width:720px;margin:0 auto}
.rgo-faq__item{border-bottom:1px solid var(--border)}
.rgo-faq__q{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 0;cursor:pointer;font-weight:500;font-size:15px;
  background:none;border:none;width:100%;text-align:left;color:var(--text);
}
.rgo-faq__q::after{content:'+';font-size:20px;font-weight:300;color:var(--text-muted);transition:transform .2s;flex-shrink:0}
.rgo-faq__item.is-open .rgo-faq__q::after{content:'\2212'}
.rgo-faq__a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.rgo-faq__item.is-open .rgo-faq__a{max-height:500px}
.rgo-faq__a p{padding:0 0 20px;color:var(--text-muted);font-size:15px;line-height:1.7}

/* ── CTA block ─────────────────────────────────────────────── */
.rgo-cta-block{text-align:center;padding:72px 24px}
.rgo-cta-block h2{margin-bottom:16px}
.rgo-cta-block p{color:rgba(255,255,255,.5);margin-bottom:32px;font-size:16px}
.rgo-cta-block__links{display:flex;flex-wrap:wrap;justify-content:center;gap:12px}

/* ── Problem/Solution list ─────────────────────────────────── */
.rgo-checklist{display:flex;flex-direction:column;gap:14px}
.rgo-checklist li{display:flex;align-items:flex-start;gap:12px;font-size:15px;line-height:1.7}
.rgo-checklist li::before{content:'';flex-shrink:0;width:22px;height:22px;border-radius:50%;margin-top:2px}
.rgo-checklist--bad li::before{background:rgba(228,0,43,.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23E4002B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/12px no-repeat}
.rgo-checklist--good li::before{background:var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat}

/* ── Differentiation list ──────────────────────────────────── */
.rgo-diff{display:flex;flex-direction:column;gap:0}
.rgo-diff__item{padding:28px 0;border-bottom:1px solid var(--border)}
.rgo-diff__item:last-child{border-bottom:none}
.rgo-diff__item h3{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.rgo-diff__item h3::before{content:'';display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;background:var(--red);flex-shrink:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;background-size:12px}
.rgo-diff__item p{color:var(--text-muted);font-size:15px;padding-left:34px}

/* ── Timeline ──────────────────────────────────────────────── */
.rgo-timeline{max-width:640px;margin:0 auto;position:relative;padding-left:32px}
.rgo-timeline::before{content:'';position:absolute;left:11px;top:8px;bottom:8px;width:2px;background:var(--border)}
.rgo-timeline__item{position:relative;padding-bottom:32px}
.rgo-timeline__item:last-child{padding-bottom:0}
.rgo-timeline__dot{position:absolute;left:-32px;top:4px;width:24px;height:24px;border-radius:50%;background:var(--white);border:2px solid var(--red);display:flex;align-items:center;justify-content:center}
.rgo-timeline__dot::after{content:'';width:8px;height:8px;border-radius:50%;background:var(--red)}
.rgo-timeline__time{font-size:13px;font-weight:700;color:var(--red);text-transform:uppercase;letter-spacing:.05em;margin-bottom:4px}
.rgo-timeline__item h3{font-size:17px;margin-bottom:6px}
.rgo-timeline__item p{font-size:14px;color:var(--text-muted)}

/* ── Feature grid ──────────────────────────────────────────── */
.rgo-features{display:grid;gap:20px;grid-template-columns:1fr}
@media(min-width:768px){.rgo-features{grid-template-columns:1fr 1fr}}
.rgo-feature{padding:24px;border:1px solid var(--border);border-radius:var(--radius)}
.rgo-feature h3{display:flex;align-items:center;gap:10px;margin-bottom:8px;font-size:16px}
.rgo-feature h3 .icon{font-size:20px}
.rgo-feature p{font-size:14px;color:var(--text-muted)}

/* ── Pricing table ─────────────────────────────────────────── */
.rgo-price-highlight{
  background:rgba(22,163,74,.04);
  border:2px solid var(--success);
  border-radius:var(--radius);
  padding:24px;text-align:center;
  margin-bottom:32px;
}
.rgo-price-highlight p{font-size:17px;font-weight:600;margin-bottom:4px}
.rgo-price-highlight small{font-size:14px;color:var(--text-muted)}

.rgo-price-table{width:100%;border-collapse:collapse;font-size:15px}
.rgo-price-table th{text-align:left;padding:12px 16px;font-weight:600;background:var(--gray);border-radius:6px 6px 0 0}
.rgo-price-table td{padding:12px 16px;border-bottom:1px solid var(--border)}
.rgo-price-table td:first-child{font-weight:500}
.rgo-price-table .price{font-weight:700;color:var(--red)}
.rgo-price-table .free{font-weight:700;color:var(--success)}

/* ── Contact form ──────────────────────────────────────────── */
.rgo-form{max-width:480px}
.rgo-form label{display:block;font-size:14px;font-weight:500;margin-bottom:6px;color:var(--text)}
.rgo-form input,.rgo-form select,.rgo-form textarea{
  width:100%;padding:12px 14px;border:1px solid var(--border);border-radius:8px;
  font-size:15px;font-family:inherit;background:var(--white);
  transition:border-color .2s;
}
.rgo-form input:focus,.rgo-form select:focus,.rgo-form textarea:focus{outline:none;border-color:var(--red)}
.rgo-form textarea{min-height:120px;resize:vertical}
.rgo-form__group{margin-bottom:20px}
.rgo-form__hint{font-size:13px;color:var(--text-muted);margin-top:4px}
.rgo-form .rgo-btn{width:100%;justify-content:center;margin-top:8px}

/* ── Info sidebar (contact page) ───────────────────────────── */
.rgo-contact-grid{display:grid;gap:48px}
@media(min-width:768px){.rgo-contact-grid{grid-template-columns:1fr 340px}}
.rgo-info-card{padding:24px;background:var(--gray);border-radius:var(--radius)}
.rgo-info-card h3{font-size:14px;text-transform:uppercase;letter-spacing:.08em;color:var(--text-muted);margin-bottom:8px}
.rgo-info-card p{font-size:15px;font-weight:500}
.rgo-info-card + .rgo-info-card{margin-top:16px}
.rgo-info-callout{padding:24px;background:rgba(228,0,43,.04);border:1px solid rgba(228,0,43,.1);border-radius:var(--radius);margin-top:24px}
.rgo-info-callout h3{font-size:16px;margin-bottom:8px;color:var(--text)}
.rgo-info-callout p{font-size:14px;color:var(--text-muted)}

/* ── Footer ────────────────────────────────────────────────── */
.rgo-footer{background:#111111;color:rgba(255,255,255,.5);padding:48px 0 24px;font-size:14px}
.rgo-footer__grid{display:grid;gap:32px;grid-template-columns:1fr;margin-bottom:40px}
@media(min-width:768px){.rgo-footer__grid{grid-template-columns:1.5fr 1fr 1fr 1fr}}
.rgo-footer__brand{font-size:18px;font-weight:700;color:#fff;margin-bottom:8px}
.rgo-footer__brand span{color:var(--red)}
.rgo-footer__tagline{color:rgba(255,255,255,.3);font-size:14px}
.rgo-footer h4{color:rgba(255,255,255,.6);font-size:13px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px}
.rgo-footer a{color:rgba(255,255,255,.4);transition:color .2s;display:block;padding:3px 0}
.rgo-footer a:hover{color:#fff}
.rgo-footer__bottom{border-top:1px solid rgba(255,255,255,.06);padding-top:20px;text-align:center;color:rgba(255,255,255,.25);font-size:13px}

/* ── Mobile CTA bar ────────────────────────────────────────── */
.rgo-mobile-cta{
  display:block;position:fixed;bottom:0;left:0;right:0;z-index:90;
  background:var(--dark);border-top:1px solid rgba(255,255,255,.08);
  padding:12px 16px;text-align:center;
}
.rgo-mobile-cta .rgo-btn{width:100%;justify-content:center;padding:12px 24px}
@media(min-width:768px){.rgo-mobile-cta{display:none}}

/* ── Utility: bottom padding for mobile CTA ────────────────── */
body.has-mobile-cta{padding-bottom:72px}
@media(min-width:768px){body.has-mobile-cta{padding-bottom:0}}

/* ── Onboarding steps (partner page) ───────────────────────── */
.rgo-onboard{counter-reset:onboard;display:flex;flex-direction:column;gap:0}
.rgo-onboard__step{
  counter-increment:onboard;
  display:grid;grid-template-columns:48px 1fr;gap:16px;
  padding:24px 0;border-bottom:1px solid var(--border);
  position:relative;
}
.rgo-onboard__step:last-child{border-bottom:none}
.rgo-onboard__num{
  width:40px;height:40px;border-radius:50%;
  background:var(--red);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;font-weight:700;flex-shrink:0;
}
.rgo-onboard__num::after{content:counter(onboard)}
.rgo-onboard__step h3{font-size:17px;margin-bottom:4px}
.rgo-onboard__step p{font-size:14px;color:var(--text-muted)}
.rgo-onboard__step .rgo-time{font-size:12px;font-weight:600;color:var(--red);text-transform:uppercase;letter-spacing:.05em}

/* ── Image placeholder ────────────────────────────────────── */
.rgo-img-placeholder{
  aspect-ratio:16/9;border-radius:var(--radius);
  background:var(--gray);border:1px dashed var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-muted);font-size:13px;font-weight:500;
}

/* ── WP bloat override (belt + suspenders) ────────────────── */
body.has-mobile-cta .site-header,
body.has-mobile-cta .main-navigation,
body.has-mobile-cta #page > .site-header{display:none !important}
body.has-mobile-cta #page{padding:0 !important;margin:0 !important}
body.has-mobile-cta .entry-content{padding:0 !important;margin:0 !important}
body.has-mobile-cta .inside-article{padding:0 !important}
body.has-mobile-cta .site-content,
body.has-mobile-cta .content-area,
body.has-mobile-cta .site-main{width:100% !important;max-width:none !important;float:none !important;padding:0 !important;margin:0 !important}
body.has-mobile-cta .site-info,
body.has-mobile-cta .site-footer,
body.has-mobile-cta .sidebar{display:none !important}

/* ── Trust bar ─────────────────────────────────────────────── */
.rgo-trust-bar{background:var(--gray);border-bottom:1px solid var(--border);padding:16px 0}
.rgo-trust-bar__items{display:flex;flex-wrap:wrap;justify-content:center;gap:24px}
.rgo-trust-bar__item{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:500;color:var(--text-muted)}
.rgo-trust-bar__item .rgo-icon{color:var(--text-muted)}
@media(max-width:767px){
  .rgo-trust-bar__items{flex-direction:column;align-items:center;gap:10px}
}

/* ── Partner logo strip ───────────────────────────────────── */
.rgo-partner-logos{display:flex;flex-wrap:wrap;justify-content:center;gap:16px}
.rgo-partner-logo{
  padding:10px 20px;border-radius:8px;
  background:var(--white);border:1px solid var(--border);
  font-size:14px;font-weight:500;color:var(--text-muted);
  letter-spacing:-.01em;
}

/* ── Section spacing fine-tune ────────────────────────────── */
.rgo-section{padding:96px 0}
@media(max-width:767px){.rgo-section{padding:64px 0}}

/* ── Grid gap increase ────────────────────────────────────── */
.rgo-grid{gap:28px}
@media(min-width:768px){.rgo-grid{gap:32px}}

/* ── Feature grid premium ─────────────────────────────────── */
.rgo-feature{padding:28px 24px;border-color:var(--border)}
.rgo-feature:hover{border-color:rgba(17,17,17,.14);box-shadow:0 2px 8px rgba(0,0,0,.03)}
.rgo-feature h3{font-size:15px;gap:8px}
.rgo-feature p{font-size:14px;line-height:1.7}

/* ── Diff list spacing ────────────────────────────────────── */
.rgo-diff__item{padding:32px 0}
.rgo-diff__item p{line-height:1.75}

/* ── Section image (full-width or inline photo) ───────────── */
.rgo-section-img{
  position:relative;border-radius:var(--radius);overflow:hidden;
  aspect-ratio:3/2;max-width:100%;
}
.rgo-section-img img{width:100%;height:100%;object-fit:cover;display:block}
.rgo-section-img__badge{
  position:absolute;top:12px;right:12px;
  padding:4px 10px;border-radius:6px;
  background:rgba(17,17,17,.6);color:rgba(255,255,255,.7);
  font-size:11px;font-weight:500;letter-spacing:.02em;
  backdrop-filter:blur(4px);pointer-events:none;
}
.rgo-section-img--wide{max-width:100%;margin:0 auto}
.rgo-section-img--card{aspect-ratio:16/10;margin-bottom:24px}
@media(min-width:768px){
  .rgo-section-img--wide{max-width:720px}
}

/* ── Two-column section with image ────────────────────────── */
.rgo-split{display:grid;grid-template-columns:1fr;gap:48px;align-items:center}
@media(min-width:768px){.rgo-split{grid-template-columns:1fr 1fr}}
.rgo-split--reverse{direction:ltr}
@media(min-width:768px){.rgo-split--reverse{grid-template-columns:1fr 1fr}.rgo-split--reverse>:first-child{order:2}.rgo-split--reverse>:last-child{order:1}}
