/* ============================================
   WORDPRESS RESET — neutralize WP default styles
   ============================================ */
.makevsolution-theme * { box-sizing: border-box; }
.makevsolution-theme img { max-width: 100%; height: auto; }
.makevsolution-theme a { text-decoration: none; }
.makevsolution-theme ul { list-style: none; margin: 0; padding: 0; }

/* Kill WordPress admin bar offset when logged in */
.makevsolution-theme nav { top: 0 !important; }
body.admin-bar .makevsolution-theme nav { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar .makevsolution-theme nav { top: 46px !important; }
}

/* Prevent WordPress block editor styles leaking in */
.makevsolution-theme .wp-block { max-width: 100% !important; }
.makevsolution-theme figure { margin: 0; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #C47B1A;
    --gold-light: #F5E6CC;
    --dark: #131313;
    --mid: #444;
    --muted: #888;
    --border: rgba(0,0,0,0.1);
    --bg: #FAFAF8;
    --surface: #FFFFFF;
    --radius: 12px;
    --radius-sm: 8px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--dark);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .fade-up { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both; }
  .fade-up-2 { animation: fadeUp 0.7s 0.1s cubic-bezier(0.16,1,0.3,1) both; }
  .fade-up-3 { animation: fadeUp 0.7s 0.2s cubic-bezier(0.16,1,0.3,1) both; }
  .fade-up-4 { animation: fadeUp 0.7s 0.3s cubic-bezier(0.16,1,0.3,1) both; }

  /* LAYOUT */
  .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  section { padding: 80px 0; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 20px; color: var(--dark);
    text-decoration: none; letter-spacing: -0.02em;
  }
  .logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-size: 14px; color: var(--muted);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--dark); }
  .btn-primary {
    background: var(--dark); color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 500;
    padding: 10px 20px; border-radius: var(--radius-sm);
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #2a2a2a; transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 500;
    padding: 10px 20px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: border-color 0.2s, transform 0.15s;
  }
  .btn-outline:hover { border-color: var(--dark); transform: translateY(-1px); }
  .nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-mobile-btn span { display: block; width: 22px; height: 1.5px; background: var(--dark); margin: 5px 0; transition: 0.3s; }

  /* DROPDOWN */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
  .nav-dropdown > a::after { content: ''; width: 5px; height: 5px; border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: rotate(45deg); margin-top: -3px; transition: transform 0.2s, border-color 0.2s; display: inline-block; }
  .nav-dropdown:hover > a::after { transform: rotate(-135deg); margin-top: 3px; border-color: var(--dark); }
  .nav-dropdown:hover > a { color: var(--dark); }
  .dropdown-menu { display: none; position: absolute; top: calc(100% + 12px); left: -16px; background: #EEEDF0; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; width: 820px; height: 270px; padding: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); z-index: 200; align-items: stretch; gap: 0; }
  .nav-dropdown:hover .dropdown-menu { display: flex; align-items: stretch; }
  .dropdown-col { flex: 1; padding: 8px; display: flex; flex-direction: column; justify-content: center; }
  .dropdown-col-title { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 4px 8px 10px; border-bottom: 1px solid var(--border); margin-bottom: 6px; }
  .dropdown-divider { width: 1px; background: var(--border); margin: 8px 0; flex-shrink: 0; }
  .dropdown-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 8px; border-radius: var(--radius-sm); text-decoration: none; transition: background 0.15s; cursor: pointer; }
  .dropdown-item:hover { background: var(--bg); }
  .dropdown-icon { width: 30px; height: 30px; border-radius: 6px; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
  .dropdown-item-title { font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 1px; }
  .dropdown-item-desc { font-size: 11px; color: var(--muted); line-height: 1.4; }

  /* HERO */
  .hero { padding: 100px 0 80px; }
  .hero-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold);
    background: var(--gold-light); padding: 5px 12px;
    border-radius: 20px; margin-bottom: 24px;
  }
  .hero-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--dark); margin-bottom: 24px;
    max-width: 700px;
  }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: 18px; color: var(--muted);
    line-height: 1.65; max-width: 520px; margin-bottom: 12px;
    font-weight: 300;
  }
  .hero-niche {
    font-size: 13px; color: var(--muted); margin-bottom: 36px;
  }
  .hero-niche strong { color: var(--dark); font-weight: 500; }
  .hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .btn-gold {
    background: var(--gold); color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 500;
    padding: 14px 28px; border-radius: var(--radius-sm);
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-gold:hover { background: #a86614; transform: translateY(-1px); }
  .cta-note { font-size: 12px; color: var(--muted); }

  /* TRUST BAR */
  .trust-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; background: var(--surface); margin-top: 64px;
  }
  .trust-item {
    padding: 20px; text-align: center;
    border-right: 1px solid var(--border);
  }
  .trust-item:last-child { border-right: none; }
  .trust-num {
    font-family: 'DM Serif Display', serif;
    font-size: 28px; color: var(--dark);
    letter-spacing: -0.02em; line-height: 1;
    margin-bottom: 4px;
  }
  .trust-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

  /* SECTION HEADER */
  .section-tag {
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
  }
  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15; letter-spacing: -0.02em;
    color: var(--dark); margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-sub { font-size: 16px; color: var(--muted); max-width: 480px; font-weight: 300; line-height: 1.7; }

  /* PROBLEM */
  .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .problem-cards { display: flex; flex-direction: column; gap: 12px; }
  .problem-card {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: border-color 0.2s;
  }
  .problem-card:hover { border-color: #ccc; }
  .problem-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 6px;
  }
  .problem-card h4 { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
  .problem-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* FEATURES */
  .features-bg { background: #F5F4F0; color: var(--dark); }
  .features-bg .section-tag { color: var(--muted); }
  .features-bg .section-title { color: var(--dark); }
  .features-bg .section-sub { color: var(--muted); }
  .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
  .feature-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
  .feature-visual {
    background: #F0EFF0; height: 200px; display: flex;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 20px;
  }
  .feature-body { padding: 24px; }
  .feature-tag {
    font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  }
  .feature-card h3 { font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
  .feature-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

  /* FEATURE VISUALS — MOCK UI */
  @keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.85)} }
  @keyframes slide-in { from{opacity:0;transform:translateX(-8px)} to{opacity:1;transform:translateX(0)} }
  @keyframes blink-cursor { 0%,100%{opacity:1} 50%{opacity:0} }
  @keyframes fill-bar { from{width:0} to{width:var(--w)} }
  @keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
  @keyframes spin-ring { from{stroke-dashoffset:220} to{stroke-dashoffset:60} }
  @keyframes check-pop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }

  .mock-phone {
    width: 110px; height: 190px; border-radius: 16px;
    border: 2px solid #ddd; background: #fff;
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  }
  .mock-phone-bar { height: 28px; background: var(--dark); display:flex; align-items:center; padding: 0 10px; gap:5px; }
  .mock-phone-dot { width:5px;height:5px;border-radius:50%; }
  .mock-bubble {
    margin: 6px 8px; padding: 6px 8px; border-radius: 8px;
    font-size: 8px; line-height: 1.3; max-width: 90%;
  }
  .mock-bubble.in { background:#F0EFF0; align-self:flex-start; }
  .mock-bubble.out { background: var(--gold); color:#fff; align-self:flex-end; margin-left:auto; }
  .mock-calendar {
    background: #fff; border-radius: 10px; padding: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08); width: 180px;
    animation: float-card 3s ease-in-out infinite;
  }
  .mock-cal-header { font-size: 9px; font-weight:500; color:var(--dark); margin-bottom:8px; display:flex; justify-content:space-between; }
  .mock-cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
  .mock-cal-day { width:18px;height:18px;border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:7px;color:var(--muted); }
  .mock-cal-day.active { background:var(--gold);color:#fff;font-weight:500; }
  .mock-cal-day.booked { background:#F5E6CC;color:var(--gold); }
  .mock-handoff {
    background:#fff; border-radius:10px; padding:12px 14px;
    box-shadow:0 4px 16px rgba(0,0,0,0.08); width:190px;
  }
  .mock-handoff-row { display:flex;align-items:center;gap:8px;margin-bottom:8px; }
  .mock-avatar { width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:500; }
  .mock-status { display:inline-flex;align-items:center;gap:4px;font-size:8px;padding:3px 7px;border-radius:20px; }
  .mock-ring { position:relative; width:80px;height:80px; }
  .mock-lang-pill { padding:4px 10px;border-radius:20px;font-size:9px;font-weight:500;background:#F0EFF0;color:var(--dark);display:inline-flex;align-items:center;gap:4px; }

  /* HOW IT WORKS */
  .steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; max-width: 560px; }
  .step { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
  .step:not(:last-child)::before {
    content: ''; position: absolute;
    left: 15px; top: 32px; bottom: 0;
    width: 1px; background: var(--border);
  }
  .step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--dark); color: #fff;
    font-size: 12px; font-weight: 500;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
  }
  .step:last-child .step-num { background: var(--gold); }
  .step-content h4 { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 4px; padding-top: 5px; }
  .step-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* INDUSTRIES */
  .industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 48px; }
  .industry-card {
    padding: 24px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: border-color 0.2s, transform 0.2s;
  }
  .industry-card:hover { border-color: var(--gold); transform: translateY(-2px); }
  .industry-icon {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    background: var(--gold-light); display: flex; align-items: center;
    justify-content: center; margin-bottom: 14px; font-size: 16px;
  }
  .industry-card h3 { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
  .industry-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

  /* FAQ */
  .faq-list { display: flex; flex-direction: column; margin-top: 48px; max-width: 640px; }
  .faq-item { border-top: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: 1px solid var(--border); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; cursor: pointer; gap: 16px;
  }
  .faq-q span { font-size: 15px; font-weight: 500; color: var(--dark); }
  .faq-icon {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--bg); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 14px; color: var(--muted);
    transition: background 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-icon { background: var(--dark); color: #fff; transform: rotate(45deg); }
  .faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; padding-bottom: 20px; display: none; }
  .faq-item.open .faq-a { display: block; }

  /* PRICING */
  .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
  .pricing-card {
    padding: 32px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius);
    display: flex; flex-direction: column;
  }
  .pricing-card.featured { border: 2px solid var(--gold); position: relative; }
  .pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #fff;
    font-size: 11px; font-weight: 500; padding: 3px 16px;
    border-radius: 20px; white-space: nowrap;
  }
  .pricing-tier { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
  .pricing-card.featured .pricing-tier { color: var(--gold); }
  .pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
  .pricing-price strong {
    font-family: 'DM Serif Display', serif;
    font-size: 42px; color: var(--dark); letter-spacing: -0.02em;
  }
  .pricing-price span { font-size: 14px; color: var(--muted); }
  .pricing-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
  .pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
  .pricing-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
  .pf { display: flex; align-items: center; gap: 10px; }
  .pf-check {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--dark); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .pf-check.gold { background: var(--gold); }
  .pf-check svg { width: 8px; height: 8px; }
  .pf-dash { width: 16px; height: 16px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .pf-dash::after { content: '—'; font-size: 10px; color: #ccc; }
  .pf-label { font-size: 13px; color: var(--dark); }
  .pf-label.off { color: #ccc; }

  /* REASSURANCE */
  .reassurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
  .reassurance-item {
    padding: 14px 16px; background: #f5f5f2;
    border-radius: var(--radius-sm); text-align: center;
  }
  .reassurance-item strong { font-size: 13px; font-weight: 500; color: var(--dark); display: block; margin-bottom: 2px; }
  .reassurance-item span { font-size: 11px; color: var(--muted); }

  /* CTA SECTION */
  .cta-section { background: var(--dark); }
  .cta-inner {
    text-align: center; max-width: 560px; margin: 0 auto; padding: 80px 0;
  }
  .cta-inner .section-tag { color: rgba(255,255,255,0.35); }
  .cta-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #fff; line-height: 1.15;
    letter-spacing: -0.02em; margin-bottom: 16px;
  }
  .cta-inner h2 em { font-style: italic; color: var(--gold); }
  .cta-inner p { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 32px; font-weight: 300; }
  .cta-note-dark { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 12px; }

  /* FOOTER */
  footer {
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0;
  }
  .footer-inner {
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 18px; color: #fff; text-decoration: none;
  }
  .footer-logo span { color: var(--gold); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: rgba(255,255,255,0.7); }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

  /* MOBILE */
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-mobile-btn { display: block; }
    .hero { padding: 64px 0 48px; }
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(3) { border-top: 1px solid var(--border); }
    .trust-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
    .problem-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .reassurance { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    section { padding: 56px 0; }
  }