/* ════════════════════════════════════════
   IT SHENANIGANS — main.css v1.0.0
════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --green:       #1D9E75;
  --green-light: #E1F5EE;
  --green-dark:  #0F6E56;
  --amber:       #EF9F27;
  --amber-light: #FAEEDA;
  --amber-dark:  #854F0B;
  --coral:       #D85A30;
  --coral-light: #FAECE7;
  --blue:        #185FA5;
  --blue-light:  #E6F1FB;
  --dark:        #2C2C2A;
  --light:       #F1EFE8;
  --white:       #ffffff;
  --font-display: 'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;
  --radius:       8px;
  --radius-lg:    12px;
  --border:       2px solid var(--dark);
  --transition:   .18s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* Accessibility */
.skip-link {
  position: absolute; top: -40px; left: 0; padding: 8px 16px;
  background: var(--green); color: #fff; z-index: 9999;
  border-radius: 0 0 4px 0; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
}

/* ════ NAV ════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: var(--border);
}
.site-nav {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 12px 40px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.logo-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 20px; color: var(--dark); line-height: 1;
}
.logo-name span { color: var(--green); }

.nav-links { display: flex; gap: 22px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 700;
  color: #555; padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-item.active a {
  color: var(--green); border-bottom-color: var(--green);
}
.nav-cta {
  background: var(--amber); color: var(--dark);
  font-weight: 800; font-size: 13px;
  padding: 9px 20px; border-radius: var(--radius);
  border: var(--border); white-space: nowrap;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-cta:hover { transform: translateY(-2px); color: var(--dark); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger {
  display: block; width: 24px; height: 2.5px;
  background: var(--dark); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open .hamburger:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle.open .hamburger:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ════ HERO ════ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px; border-bottom: var(--border);
}
.hero-left {
  padding: 56px 48px; background: var(--light);
  border-right: var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-tag {
  display: inline-block; background: var(--amber); color: var(--dark);
  font-weight: 800; font-size: 11px; padding: 5px 14px;
  border-radius: 5px; border: 1.5px solid var(--dark);
  margin-bottom: 20px; letter-spacing: 1.2px; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display); font-size: 52px;
  line-height: 1.05; color: var(--dark); margin-bottom: 18px;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero-sub { font-size: 16px; color: #555; line-height: 1.65; margin-bottom: 36px; max-width: 400px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--green); color: #fff; font-weight: 800; font-size: 15px;
  padding: 14px 28px; border-radius: 7px; border: var(--border);
  transition: transform var(--transition); display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; }
.btn-secondary {
  background: #fff; color: var(--dark); font-weight: 800; font-size: 15px;
  padding: 14px 28px; border-radius: 7px; border: var(--border);
  transition: transform var(--transition), background var(--transition);
}
.btn-secondary:hover { background: var(--light); transform: translateY(-2px); color: var(--dark); }
.hero-right {
  background: var(--green);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px; gap: 12px;
}
.hero-caption { font-family: var(--font-display); font-size: 16px; color: rgba(255,255,255,.85); text-align: center; }

/* ════ MARQUEE STRIP ════ */
.marquee-strip {
  background: var(--amber); border-top: var(--border); border-bottom: var(--border);
  padding: 11px 0; overflow: hidden; white-space: nowrap;
}
.marquee-inner { display: inline-flex; gap: 52px; animation: marquee 22s linear infinite; }
.marquee-item { font-family: var(--font-display); font-size: 15px; color: var(--dark); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════ SHARED SECTION STYLES ════ */
.sec-title { font-family: var(--font-display); font-size: 32px; color: var(--dark); margin-bottom: 10px; }
.sec-sub { font-size: 15px; color: #666; margin-bottom: 36px; max-width: 620px; }
.sec-title-light { font-family: var(--font-display); font-size: 30px; color: var(--amber); margin-bottom: 8px; text-align: center; }
.sec-sub-light { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 36px; text-align: center; }

/* ════ PITCH ════ */
.pitch-section {
  display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--border);
}
.pitch-left {
  padding: 56px 48px; border-right: var(--border);
}
.pitch-left p { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 28px; }
.pitch-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-display); font-size: 52px; color: var(--green); line-height: 1; }
.stat-label { font-size: 13px; color: #666; margin-top: 4px; }
.pitch-right { padding: 56px 40px; background: var(--green-light); }
.pitch-right p { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 16px; }
.pitch-highlight { font-weight: 800 !important; color: var(--green-dark) !important; }

/* ════ TRANSFORM / SCENARIOS ════ */
.transform-section {
  padding: 64px 40px; background: var(--dark);
  border-top: 2.5px solid var(--amber); border-bottom: 2.5px solid var(--amber);
}
.scenarios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.scenario-card {
  background: rgba(255,255,255,.07); border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.15);
  padding: 24px 18px; display: flex; flex-direction: column;
  align-items: center; gap: 10px; text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.scenario-card:hover { border-color: var(--amber); transform: translateY(-4px); }
.scenario-card svg { width: 100%; height: auto; }
.scenario-label { font-weight: 800; font-size: 14px; color: var(--amber); }
.scenario-desc { font-size: 12.5px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ════ MARIO WORLD ════ */
.mario-world {
  background: #5C94FC; border-top: var(--border); border-bottom: var(--border);
  position: relative; height: 200px; overflow: hidden;
}
.mario-sky { position: absolute; inset: 0; background: #5C94FC; }
.mario-ground { position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: #9B6810; border-top: 3px solid var(--dark); }
.mario-grass { position: absolute; bottom: 40px; left: 0; right: 0; height: 14px; background: #52A130; border-top: 2px solid var(--dark); }
.mario-cloud { position: absolute; }
.mario-runner { position: absolute; bottom: 54px; animation: mario-run 14s linear infinite; }
@keyframes mario-run { from { left: -60px; } to { left: 105%; } }
.goomba { position: absolute; bottom: 54px; animation: goomba-walk 18s linear infinite; }
@keyframes goomba-walk { from { left: 110%; } to { left: -60px; } }
.q-block {
  background: none; border: none; padding: 0; position: absolute;
  cursor: pointer; transition: transform .1s; line-height: 0;
}
.q-block:active { transform: translateY(-10px) !important; }
.q-block.hit svg rect:first-child { fill: #8B6914; }
.coin-pop {
  position: absolute; font-size: 20px; top: -30px; left: 4px;
  animation: coin-up .8s ease-out forwards; pointer-events: none;
  display: none;
}
@keyframes coin-up { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-60px); } }
.mario-hint {
  position: absolute; right: 16px; bottom: 50px;
  font-family: var(--font-display); font-size: 11px; color: rgba(255,255,255,.5);
}

/* ════ SERVICES ════ */
.services-section { padding: 64px 40px; background: #fff; border-bottom: var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.svc-card {
  border: var(--border); border-radius: 10px;
  padding: 22px; position: relative;
  transition: transform var(--transition);
}
.svc-card:hover { transform: translateY(-3px); }
.svc-icon {
  width: 44px; height: 44px; display: flex; align-items: center;
  justify-content: center; border-radius: 8px; border: 1.5px solid;
  margin-bottom: 14px;
}
.svc-name { font-weight: 800; font-size: 15px; color: var(--dark); margin-bottom: 6px; }
.svc-desc { font-size: 13px; color: #666; line-height: 1.55; }
.svc-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 800; padding: 2px 8px;
  border-radius: 4px; border: 1px solid var(--dark);
  text-transform: uppercase; letter-spacing: .8px;
}
.badge-core { background: var(--amber); color: var(--dark); }
.badge-sub  { background: var(--light); color: var(--dark); }

/* ════ DUCK HUNT ════ */
.duck-hunt-section {
  position: relative; min-height: 280px; overflow: hidden;
  border-top: var(--border); border-bottom: var(--border);
}
.duck-sky-bg { position: absolute; top: 0; left: 0; right: 0; height: 60%; background: #7EC8E3; }
.duck-grass-bg { position: absolute; bottom: 0; left: 0; right: 0; height: 42%; background: #4A8828; }
.duck { position: absolute; top: 30px; }
.duck-1 { animation: duck-fly  8s linear infinite; }
.duck-2 { animation: duck-fly  8s linear infinite; animation-delay: 3s; top: 60px; }
.duck-3 { animation: duck-fly  8s linear infinite; animation-delay: 5.5s; top: 20px; }
@keyframes duck-fly {
  0%   { left: -80px; transform: scaleX(1); }
  49%  { left: 55%; }
  50%  { left: 55%; transform: scaleX(-1); }
  100% { left: -80px; transform: scaleX(-1); }
}
.dog-container {
  position: absolute; bottom: 0; left: 60px;
  animation: dog-peek 6s ease-in-out infinite;
}
@keyframes dog-peek {
  0%,40%,100% { transform: translateY(100%); }
  15%,30%     { transform: translateY(0); }
}
.duck-content {
  position: relative; z-index: 10; text-align: center;
  padding: 32px 20px;
}
.duck-title {
  font-family: var(--font-display); font-size: 30px; color: var(--dark);
  background: rgba(255,255,255,.88); display: inline-block;
  padding: 6px 20px; border-radius: 6px; border: var(--border);
  margin-bottom: 12px;
}
.duck-sub {
  font-size: 14px; color: var(--dark);
  background: rgba(255,255,255,.78); display: inline-block;
  padding: 6px 16px; border-radius: 4px; max-width: 520px;
  margin-bottom: 24px;
}
.duck-stats { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.duck-stat {
  background: rgba(255,255,255,.9); border: var(--border);
  border-radius: 8px; padding: 14px 22px; text-align: center; min-width: 130px;
}
.duck-stat-num { font-family: var(--font-display); font-size: 22px; color: var(--green); }
.duck-stat-label { font-size: 12px; font-weight: 800; color: #555; }

/* ════ PROCESS ════ */
.process-section { padding: 64px 40px; background: var(--light); border-bottom: var(--border); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: var(--border); border-radius: 10px; overflow: hidden;
  margin-top: 36px;
}
.process-step {
  padding: 28px 20px; border-right: var(--border);
  text-align: center; background: #fff; position: relative;
}
.process-step:last-child { border-right: none; }
.step-num { font-family: var(--font-display); font-size: 40px; color: var(--green); line-height: 1; margin-bottom: 10px; }
.step-name { font-weight: 800; font-size: 14px; color: var(--dark); margin-bottom: 8px; }
.step-desc { font-size: 12.5px; color: #666; line-height: 1.55; }
.step-arrow {
  position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 28px; color: var(--amber); z-index: 2;
}

/* ════ ABOUT ════ */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--border);
}
.about-left {
  padding: 56px 48px; border-right: var(--border);
}
.about-left p { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 18px; }
.about-quote {
  background: var(--amber-light); border: 2px solid var(--amber-dark);
  border-radius: 8px; padding: 16px 20px; margin-top: 24px;
}
.about-quote-text { font-family: var(--font-display); font-size: 17px; color: var(--amber-dark); margin-bottom: 4px; }
.about-quote-attr { font-size: 12px; color: #666; }
.about-right { padding: 56px 40px; background: var(--amber-light); }
.about-pillar { margin-bottom: 28px; }
.about-pillar:last-child { margin-bottom: 0; }
.about-pillar h3 { font-family: var(--font-display); font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.about-pillar p  { font-size: 13.5px; color: #555; line-height: 1.65; }

/* ════ CONTACT / CTA ════ */
.cta-section {
  background: var(--green); border-top: var(--border);
  padding: 64px 40px;
}
.cta-section h2 {
  font-family: var(--font-display); font-size: 40px;
  color: #fff; margin-bottom: 12px; text-align: center;
}
.cta-section > p {
  font-size: 16px; color: rgba(255,255,255,.8);
  max-width: 540px; margin: 0 auto 40px; text-align: center; line-height: 1.65;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.contact-form {
  background: #fff; border-radius: 10px;
  border: var(--border); padding: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-weight: 800; font-size: 13px; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea {
  padding: 10px 14px; border: var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  background: #fff; transition: border-color var(--transition);
  outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); }
.btn-submit {
  background: var(--amber); color: var(--dark); border: var(--border);
  font-weight: 800; font-size: 16px; padding: 13px 28px;
  border-radius: 7px; width: 100%; margin-top: 4px;
  transition: transform var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-status { margin-top: 12px; font-size: 13px; font-weight: 700; min-height: 20px; }
.form-status.success { color: var(--green-dark); }
.form-status.error   { color: #cc2200; }
.contact-info { padding-top: 8px; }
.ci-item { margin-bottom: 24px; }
.ci-label { font-weight: 800; font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ci-item a, .ci-item span { font-size: 15px; color: #fff; font-weight: 700; }
.ci-item a:hover { color: var(--amber); }
.ci-tag {
  display: inline-block; background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 5px; border: 1px solid rgba(255,255,255,.25);
  margin-top: 8px;
}

/* ════ FOOTER ════ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 48px 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-name { font-family: var(--font-display); font-size: 24px; color: #fff; margin-bottom: 6px; }
.footer-logo-name span { color: var(--amber); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; font-style: italic; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.9; }
.footer-contact a { color: var(--amber); }
.footer-contact a:hover { color: #fff; }
.footer-col h4 {
  font-weight: 800; font-size: 13px; color: rgba(255,255,255,.9);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: .8px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 40px; font-size: 12px; color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy a { color: rgba(255,255,255,.5); }
.footer-easter {
  font-family: var(--font-display); font-size: 13px; color: var(--amber);
  opacity: .7; cursor: pointer; background: none; border: none;
  transition: opacity var(--transition);
}
.footer-easter:hover { opacity: 1; }

/* ════ BLOG / CONTENT PAGES ════ */
.content-wrap { padding: 64px 40px; max-width: 820px; margin: 0 auto; }
.content-wrap h1 { font-family: var(--font-display); font-size: 38px; color: var(--dark); margin-bottom: 16px; }
.content-wrap h2 { font-family: var(--font-display); font-size: 28px; color: var(--dark); margin: 32px 0 12px; }
.content-wrap h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin: 24px 0 10px; }
.content-wrap p  { font-size: 16px; color: #444; line-height: 1.75; margin-bottom: 20px; }
.content-wrap ul, .content-wrap ol { padding-left: 24px; margin-bottom: 20px; }
.content-wrap li { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 8px; }
.content-wrap blockquote {
  border-left: 4px solid var(--green); padding: 12px 20px;
  background: var(--green-light); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0; font-style: italic; color: #555;
}

/* Blog grid */
.blog-wrap { padding: 64px 40px; }
.blog-header { margin-bottom: 40px; }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card {
  border: var(--border); border-radius: 10px; overflow: hidden;
  transition: transform var(--transition);
}
.post-card:hover { transform: translateY(-3px); }
.post-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--light); }
.post-body { padding: 20px; }
.post-cat {
  font-size: 11px; font-weight: 800; color: var(--green);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.post-title { font-family: var(--font-display); font-size: 20px; color: var(--dark); margin-bottom: 10px; }
.post-title a { color: inherit; }
.post-title a:hover { color: var(--green); }
.post-excerpt { font-size: 13px; color: #666; line-height: 1.6; }
.post-meta { font-size: 12px; color: #999; margin-top: 14px; }
.post-meta a { color: #999; }
.read-more { color: var(--green); font-weight: 700; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 8px;
  padding: 40px 0; list-style: none;
}
.page-numbers {
  padding: 8px 14px; border: var(--border); border-radius: var(--radius);
  font-weight: 700; font-size: 14px; color: var(--dark);
  transition: background var(--transition);
}
.page-numbers.current { background: var(--green); color: #fff; border-color: var(--green-dark); }
.page-numbers:hover:not(.current) { background: var(--light); color: var(--dark); }

/* ════ WIDGETS ════ */
.widget { margin-bottom: 32px; }
.widget-title {
  font-family: var(--font-display); font-size: 20px;
  color: var(--dark); margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--amber);
}

/* ════ 404 ════ */
.not-found {
  text-align: center; padding: 80px 40px;
  min-height: 60vh; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
}
.not-found .big-num {
  font-family: var(--font-display); font-size: 120px;
  color: var(--green); line-height: 1;
}
.not-found h1 { font-family: var(--font-display); font-size: 36px; margin: 16px 0 12px; }
.not-found p  { font-size: 16px; color: #666; max-width: 440px; margin-bottom: 32px; }

/* ════ BACK TO TOP ════ */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff; border: var(--border);
  font-size: 18px; font-weight: 800;
  opacity: 0; visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ════ RESPONSIVE ════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: var(--border); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-bottom: none; border-right: var(--border); }
  .process-step:nth-child(4) { border-right: none; border-bottom: none; }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .site-nav { padding: 12px 20px; }
  .nav-toggle { display: flex; }
  .nav-menu-wrap {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: var(--border);
    padding: 20px; flex-direction: column; gap: 16px;
    z-index: 100;
  }
  .nav-menu-wrap.open { display: flex; }
  .nav-links { flex-direction: column; gap: 0; }
  .nav-links li { border-bottom: 1px solid #eee; }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-cta { align-self: flex-start; margin-top: 8px; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-left { padding: 40px 24px; }

  .pitch-section { grid-template-columns: 1fr; }
  .pitch-right { border-top: var(--border); }
  .pitch-left, .pitch-right { padding: 40px 24px; }

  .scenarios-grid { grid-template-columns: 1fr; }
  .transform-section { padding: 40px 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .services-section { padding: 40px 20px; }

  .about-section { grid-template-columns: 1fr; }
  .about-left { border-right: none; border-bottom: var(--border); padding: 40px 24px; }
  .about-right { padding: 40px 24px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 20px; }
  .cta-section h2 { font-size: 32px; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .footer-bottom { padding: 16px 20px; justify-content: center; text-align: center; }

  .posts-grid { grid-template-columns: 1fr; }
  .blog-wrap { padding: 40px 20px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: var(--border) !important; }
  .process-step:last-child { border-bottom: none !important; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .sec-title { font-size: 26px; }
  .hero-left { padding: 32px 16px; }
  .pitch-left, .pitch-right, .about-left, .about-right { padding: 32px 16px; }
  .mario-world { height: 160px; }
}
