/*
Theme Name: My Theme
Theme URI: https://
Author: Kavindu Siriwardhana
Author URI: https://
Description: My theme developed by Kavindu
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://
Text Domain: myTheme
*/

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/*
  :root {
    --biz-blue: #1756C8;
    --biz-blue-dark: #0f3e96;
    --biz-blue-light: #e8f0fd;
    --biz-blue-mid: #2d6fe8;
    --pro-accent: #4d9fff;
    --pro-accent-light: #deeeff;
    --dark: #0a1628;
    --dark-2: #161b22;
    --text: #1a1a2e;
    --text-muted: #5c6474;
    --border: #e2e8f0;
    --white: #ffffff;
    --surface: #f8faff;
  }
*/


  :root {
    --blue:       #004AAD;
    --blue-dark:  #003585;
    --blue-light: #e6eef8;
    --blue-mid:   #1a6cd4;
    --dark:       #001428;
    --text:       #1a1a2e;
    --muted:      #5c6474;
    --border:     #e2e8f0;
    --white:      #ffffff;
    --surface:    #f5f8fd;
	--biz-blue: #1756C8;
    --biz-blue-dark: #0f3e96;
    --biz-blue-light: #e8f0fd;
    --biz-blue-mid: #2d6fe8;
    --pro-accent: #4d9fff;
    --pro-accent-light: #deeeff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }




  /* ── NAV ── */
  nav {
    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);
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1010;
  }

  .logo-box {
    
    padding: 6px 14px;
    border-radius: 6px;
  }
  .logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
   
    padding: 6px 14px;
    border-radius: 6px;
  }

  .logo-img {
    display: block;
    height: 28px;
    width: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--biz-blue); }

  .nav-links .pro-link {
    color: var(--biz-blue);
    font-weight: 600;
  }

  .nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  /* ── HAMBURGER ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1010;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .hamburger:hover { background: var(--biz-blue-light); }

  .hamburger .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .hamburger .bar + .bar { margin-top: 5px; }

  .hamburger.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── MOBILE MENU OVERLAY ── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
    z-index: 999;
    flex-direction: column;
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--biz-blue); }

  .mobile-menu a.pro-link {
    color: var(--biz-blue);
    font-weight: 600;
  }

  .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.25rem;
  }


  .mobileGetInTouchBtn{
    text-align: center !important;
    color: var(--biz-blue-dark) !important;

  }

  .mobileStartFreeTrialBtn{
    color: white !important;
    text-align: center !important;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
  }

  .btn-primary {
    background: var(--biz-blue);
    color: white;
  }
  .btn-primary:hover { background: var(--biz-blue-dark); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--biz-blue);
    border: 1.5px solid var(--biz-blue) !important;
  }
  .btn-outline:hover { background: var(--biz-blue-light); }

  .btn-accent {
    background: var(--biz-blue-dark);
    color: white;
  }
  .btn-accent:hover { background: #2d87ff; transform: translateY(-1px); }

 .btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5); }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

  .btn-gold { background: #f5a623; color: #1a1a00; }
  .btn-gold:hover { background: #e09518; transform: translateY(-1px); }

  .btn-white { background: white; color: var(--blue); }
  .btn-white:hover { background: var(--blue-light); }

  /* HERO */
  .hero {
    min-height: 100vh; background: var(--dark);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 120px 2rem 80px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0,74,173,0.35) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,74,173,0.2); border: 1px solid rgba(0,74,173,0.4);
    color: #7eb3f5; font-size: 13px; font-weight: 500;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 2rem;
  }
  .hero h1 { font-family: 'Barlow', sans-serif; font-weight: 900; font-size: clamp(40px,7vw,76px); color: white; line-height: 1.05; margin-bottom: 1.5rem; max-width: 860px; }
  .hero h1 span { color: #4d9fff; }
  .hero > p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 580px; line-height: 1.7; margin-bottom: 2.5rem; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 4rem; }
  .hero-cards { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; max-width: 900px; }
  .hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px 22px; min-width: 185px; text-align: left; flex: 1; transition: all 0.25s; }
  .hero-card:hover { border-color: rgba(0,74,173,0.5); background: rgba(0,74,173,0.1); }
  .hero-card .ci { font-size: 22px; margin-bottom: 8px; }
  .hero-card h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 15px; color: white; margin-bottom: 4px; }
  .hero-card p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.4; }

  /* SECTIONS */
  section { padding: 96px 2rem; }
  .container { max-width: 1160px; margin: 0 auto; }
  .section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); background: var(--blue-light); padding: 4px 12px; border-radius: 4px; margin-bottom: 1rem; }
  .section-title { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: clamp(28px,4vw,44px); line-height: 1.15; color: var(--text); margin-bottom: 1rem; }
  .section-sub { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.7; }

  /* SPLIT */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

  /* MODULES */
  .mod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .mod-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px; transition: all 0.25s; }
  .mod-card:hover { border-color: var(--blue); background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,74,173,0.1); }
  .mod-icon { width: 38px; height: 38px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; font-size: 17px; }
  .mod-card h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 3px; }
  .mod-card p { font-size: 11px; color: var(--muted); line-height: 1.4; }
  .feat-list { list-style: none; margin: 1.5rem 0 2rem; }
  .feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--muted); padding: 6px 0; }
  .feat-list li::before { content: '✓'; width: 20px; height: 20px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

  /* STEPS */
  .steps-bg { background: var(--surface); }
  .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
  .steps-grid::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%); z-index: 0; }
  .step { text-align: center; position: relative; z-index: 1; }
  .step-n { width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: white; font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; border: 4px solid white; box-shadow: 0 0 0 2px var(--blue); }
  .step h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 6px; }
  .step p { font-size: 13px; color: var(--muted); line-height: 1.5; }

  /* PRICING */
  .price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .price-card { border: 1.5px solid var(--border); border-radius: 16px; padding: 32px 28px; transition: all 0.25s; position: relative; overflow: hidden; }
  .price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,74,173,0.12); }
  .price-card.feat { border-color: var(--blue); background: var(--blue); }
  .pop-badge { position: absolute; top: 0; right: 24px; background: #f5a623; color: #1a1100; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 0 0 8px 8px; }
  .plan-n { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
  .price-card.feat .plan-n { color: rgba(255,255,255,0.75); }
  .price-amt { font-family: 'Barlow', sans-serif; font-weight: 900; font-size: 46px; line-height: 1; color: var(--text); margin-bottom: 4px; }
  .price-card.feat .price-amt { color: white; }
  .price-amt sup { font-size: 22px; font-weight: 700; vertical-align: super; }
  .price-per { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; }
  .price-card.feat .price-per { color: rgba(255,255,255,0.65); }
  .price-desc { font-size: 14px; color: var(--muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
  .price-card.feat .price-desc { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.2); }
  .price-feats { list-style: none; margin-bottom: 2rem; }
  .price-feats li { font-size: 14px; color: var(--muted); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
  .price-feats li::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: 13px; }
  .price-card.feat .price-feats li { color: rgba(255,255,255,0.85); }
  .price-card.feat .price-feats li::before { color: #f5a623; }

  /* FORKLOGIC */
  .fork-bg { background: var(--dark); }
  .fork-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 2.5rem; }
  .fork-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 24px; transition: all 0.25s; }
  .fork-card:hover { background: rgba(0,74,173,0.15); border-color: rgba(0,74,173,0.5); transform: translateY(-2px); }
  .fork-num { font-size: 11px; color: #4d9fff; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; }
  .fork-card h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 15px; color: white; margin-bottom: 8px; }
  .fork-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
  .why-strip { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 2.5rem; padding-left:0 }
  .why-strip li { font-size: 14px; color: rgba(255,255,255,0.7); padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: 8px; border-left: 3px solid var(--blue); }

  /* EDSYSCO */
  .ed-bg { background: var(--surface); }
  .ed-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 2rem; }
  .ed-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 20px; transition: all 0.25s; }
  .ed-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,74,173,0.1); }
  .ed-icon { font-size: 24px; margin-bottom: 10px; }
  .ed-card h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 6px; }
  .ed-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

  /* BIZSYSCOPRO */
  .pro-bg { background: var(--dark); position: relative; overflow: hidden; }
  .pro-bg::before { content: ''; position: absolute; bottom: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,74,173,0.2) 0%, transparent 70%); pointer-events: none; }
  .pro-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 30px; color: white; letter-spacing: 2px; }
  .pro-logo span { color: #4d9fff; }
  .pro-title { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: clamp(26px,4vw,42px); color: white; line-height: 1.15; margin-bottom: 1rem; }
  .pro-sub { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.7; margin-bottom: 2rem; }
  .pro-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 2rem; }
  .pro-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 26px 20px; transition: all 0.25s; display: flex; flex-direction: column; }
  .pro-card:hover { background: rgba(0,74,173,0.12); border-color: rgba(77,159,255,0.4); transform: translateY(-3px); }
  .pro-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 2px; color: #4d9fff; margin-bottom: 10px; }
  .pro-icon { font-size: 26px; margin-bottom: 12px; }
  .pro-card h3 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 16px; color: white; margin-bottom: 8px; line-height: 1.3; }
  .pro-card > p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 1rem; }
  .pro-list { list-style: none; margin-bottom: 1.2rem; flex: 1; }
  .pro-list li { font-size: 12px; color: rgba(255,255,255,0.65); padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 5px; }
  .pro-list li::before { content: '→'; color: #4d9fff; font-size: 11px; flex-shrink: 0; }
  .pro-fee { display: inline-block; background: rgba(77,159,255,0.15); border: 1px solid rgba(77,159,255,0.3); color: #4d9fff; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 12px; padding: 4px 12px; border-radius: 100px; margin-top: auto; }
  .cert-tag { background: rgba(0,74,173,0.4); color: #7eb3f5; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 3px; letter-spacing: 0.5px; text-transform: uppercase; }
  .why-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; margin-top: 1.5rem; }
  .why-item { text-align: center; }
  .why-icon { font-size: 26px; margin-bottom: 8px; }
  .why-item h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 13px; color: white; margin-bottom: 4px; }
  .why-item p { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.4; }
  .ref-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 2rem; }
  .ref-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 18px; transition: all 0.2s; }
  .ref-card:hover { border-color: rgba(77,159,255,0.3); }
  .ref-name { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 17px; color: white; margin-bottom: 4px; }
  .ref-type { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #4d9fff; margin-bottom: 8px; display: block; }
  .ref-card p { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; }

  /* JOURNEY */
  .journey-bg { background: white; }
  .journey { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto; flex-wrap: wrap; }
  .j-node { text-align: center; padding: 28px 20px; min-width: 150px; }
  .j-pill { display: inline-block; padding: 5px 16px; border-radius: 100px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 12px; margin-bottom: 8px; }
  .j-node h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 3px; }
  .j-node p { font-size: 11px; color: var(--muted); }
  .j-arrow { font-size: 22px; color: var(--border); flex-shrink: 0; }

  /* PARTNERS */
  .partners-bg { background: var(--surface); padding: 60px 2rem; }
  .p-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem; }
  .p-row { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
  .p-pill { display: flex; align-items: center; gap: 9px; padding: 11px 22px; background: white; border: 1.5px solid var(--border); border-radius: 100px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 15px; color: var(--muted); transition: all 0.2s; }
  .p-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); border-color: var(--blue); color: var(--text); }
  .p-dot { width: 9px; height: 9px; border-radius: 50%; }

  /* CTA */
  .cta-bg { background: var(--blue); text-align: center; padding: 96px 2rem; }
  .cta-bg h2 { font-family: 'Barlow', sans-serif; font-weight: 900; font-size: clamp(30px,5vw,50px); color: white; margin-bottom: 1rem; }
  .cta-bg > p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* CONTACT */
  .contact-bg { background: var(--surface); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
  .contact-grid h3 { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 22px; color: var(--text); margin-bottom: 1rem; }
  .contact-grid > div > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
  .c-detail { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
  .c-form { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
  .c-form h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 1.5rem; color: var(--text); }
  .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .f-g { margin-bottom: 14px; }
  .f-g label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
  .f-g input, .f-g select, .f-g textarea { width: 100%; padding: 9px 13px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text); font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; background: white; }
  .f-g input:focus, .f-g select:focus, .f-g textarea:focus { border-color: var(--blue); }
  .f-g textarea { resize: vertical; height: 100px; }

  /* FOOTER */
  footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 20px 2rem; }
  .foot { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 10px; }
  .foot a { color: rgba(255,255,255,0.45); text-decoration: none; }
  .foot a:hover { color: white; }

  /* RESPONSIVE */
  @media (max-width: 1000px) {
    .split, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .fork-grid, .pro-grid, .ref-grid { grid-template-columns: repeat(2,1fr); }
    .why-grid { grid-template-columns: repeat(3,1fr); }
    .ed-grid, .price-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid::before { display: none; }
    .mod-grid { grid-template-columns: 1fr; }
    nav { padding: 0 1rem; }
    .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .fork-grid, .pro-grid, .ref-grid, .ed-grid, .price-grid, .steps-grid, .why-strip, .why-grid { grid-template-columns: 1fr; }
    .hero-btns, .cta-btns { flex-direction: column; align-items: center; }
    .f-row { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2,1fr); }
  }


  /* ── FOOTER ── */
  footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 20px 2rem; }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
  .footer-bottom a:hover { color: white; }

  /* ── JOURNEY SECTION ── */
  .journey-section { background: white; }

  .journey-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .journey-node { text-align: center; padding: 28px 20px; min-width: 160px; }

  .journey-node .node-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .journey-node h4 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 4px;
  }

  .journey-node p { font-size: 12px; color: var(--text-muted); }

  .journey-arrow { font-size: 24px; color: var(--border); flex-shrink: 0; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .split-layout,
    .pricing-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .modules-grid { grid-template-columns: 1fr; }

    nav { padding: 0 1rem; }

    /* Hide desktop nav & CTA, show hamburger */
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
  }

  @media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
  }