
:root{
  --bg:#f5f7fb;
  --surface:#ffffff;
  --surface-soft:#eef4fb;
  --text:#122033;
  --muted:#5f6f82;
  --line:#d8e0ea;
  --primary:#f26b00;
  --primary-dark:#d85d00;
  --secondary:#1641d2;
  --secondary-dark:#0f2fa0;
  --navy:#10233a;
  --success:#136f46;
  --danger:#a32121;
  --shadow:0 16px 40px rgba(16,35,58,.08);
  --radius:20px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
body.admin-bar .site-header{top:32px}
a{color:var(--secondary);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto}
.container{width:min(1200px,calc(100% - 32px));margin:0 auto}
.narrow{width:min(860px,100%)}
.topbar{
  background:var(--navy);
  color:#fff;
  font-size:14px;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  flex-wrap:wrap;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:86px;
}
.brand a{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--text);
  text-decoration:none;
}
.brand-logo{
  max-height:62px;
  width:auto;
}
.brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-title strong{font-size:1.25rem}
.brand-title span{font-size:.95rem;color:var(--muted)}
.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:12px;
  padding:10px 14px;
  font-weight:700;
  cursor:pointer;
}
.menu{
  list-style:none;
  display:flex;
  gap:22px;
  margin:0;
  padding:0;
  align-items:center;
}
.menu a{
  color:var(--text);
  font-weight:700;
}
.hero,.page-hero{
  color:#fff;
  background:
    linear-gradient(125deg, rgba(16,35,58,.82), rgba(22,65,210,.62)),
    linear-gradient(135deg, #2b61ff 0%, #1641d2 46%, #f26b00 100%);
}
.hero{padding:72px 0 62px}
.page-hero{padding:42px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.2);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero h1,.page-hero h1{
  margin:0 0 14px;
  line-height:1.08;
}
.hero h1{font-size:clamp(2.3rem,4.7vw,4.3rem)}
.page-hero h1{font-size:clamp(2rem,4vw,3rem)}
.hero-text{
  max-width:60ch;
  font-size:1.1rem;
  color:#edf3ff;
}
.hero-card,.card,.info-card,.content-area,.cta-box,.rbh-form-wrapper,.notice-box{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{
  padding:24px;
  color:var(--text);
}
.check-list,.footer-links,.clean-list{
  margin:0;
  padding-left:18px;
}
.hero-actions,.cta-actions,.button-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.button,button,.wp-element-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
}
.button:hover,.wp-element-button:hover{text-decoration:none}
.button-primary, .wp-element-button{
  background:var(--primary);
  color:#fff;
}
.button-primary:hover, .wp-element-button:hover{
  background:var(--primary-dark);
}
.button-secondary{
  background:#fff;
  color:var(--secondary);
  border-color:rgba(255,255,255,.42);
}
.button-outline{
  background:transparent;
  color:var(--secondary);
  border-color:var(--line);
}
.section{padding:58px 0}
.section-muted{background:var(--surface-soft)}
.section-heading{margin-bottom:24px}
.section-heading h2{
  margin:0;
  font-size:clamp(1.8rem,3vw,2.8rem);
}
.two-col{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
}
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.quick-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.card,.info-card,.content-area,.rbh-form-wrapper,.notice-box{padding:24px}
.stat-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.stat{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow);
}
.stat strong{
  display:block;
  font-size:1.9rem;
  color:var(--secondary);
  margin-bottom:6px;
}
.package-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.package{
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:100%;
}
.package .tag{
  display:inline-block;
  align-self:flex-start;
  background:#fff1e4;
  color:var(--primary-dark);
  border-radius:999px;
  padding:6px 10px;
  font-size:.78rem;
  font-weight:700;
}
.package.featured{
  border:2px solid var(--primary);
}
.package .price{
  font-size:1.9rem;
  font-weight:700;
  color:var(--secondary);
}
.logo-wall{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.logo-slot{
  min-height:94px;
  border:1px dashed #c7d1de;
  border-radius:16px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:14px;
  font-weight:700;
  color:#506075;
}
.notice-box{
  background:#fff8e8;
  border-color:#f0d28a;
}
.notice-box h3{margin-top:0}
.content-area h2:first-child,.content-area h3:first-child{margin-top:0}
.site-main ul li{margin-bottom:8px}
.rbh-form-wrapper{margin-top:24px}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.rbh-form label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}
.rbh-form input,.rbh-form textarea,.rbh-form select{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 14px;
  font:inherit;
  background:#fff;
}
.rbh-form textarea{resize:vertical}
.rbh-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:.95rem;
  color:var(--muted);
}
.rbh-check input{width:auto; margin-top:4px}
.rbh-alert{
  padding:14px 16px;
  border-radius:12px;
  margin-bottom:16px;
  font-weight:700;
}
.rbh-alert.success{background:#e8f7ed;border:1px solid #bfe3c9;color:var(--success)}
.rbh-alert.error{background:#fff0f0;border:1px solid #efc0c0;color:var(--danger)}
.meta{color:var(--muted);font-size:.95rem}
.cta-box{
  padding:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.site-footer{
  margin-top:56px;
  background:var(--navy);
  color:#d7e2ef;
  padding:42px 0 18px;
}
.site-footer a{color:#fff}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr .8fr;
  gap:24px;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:28px;
  padding-top:18px;
}
.footer-links li{margin-bottom:8px}
.wp-block-table{overflow-x:auto}
@media (max-width:980px){
  .hero-grid,.two-col,.cards-grid,.quick-grid,.stat-grid,.package-grid,.footer-grid,.cta-box,.logo-wall{grid-template-columns:1fr 1fr}
}
@media (max-width:840px){
  .menu-toggle{display:inline-flex}
  .main-nav{display:none;width:100%}
  .main-nav.is-open{display:block}
  .header-inner{flex-wrap:wrap;padding:10px 0}
  .menu{flex-direction:column;align-items:flex-start;padding:8px 0 14px}
  .hero-grid,.two-col,.cards-grid,.quick-grid,.stat-grid,.package-grid,.footer-grid,.cta-box,.form-grid,.logo-wall{grid-template-columns:1fr}
  body.admin-bar .site-header{top:46px}
}
