/*
Theme Name: Rushi Portfolio (AOS)
Theme URI: https://example.com/
Author: Manoj Gohil
Author URI: https://example.com/
Description: A modern one-page portfolio theme (SharePoint + Power Platform) with AOS animations. Includes a ready-to-use Front Page template.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rushi-portfolio
Tags: one-column, custom-background, custom-logo, custom-menu, featured-images, responsive-layout
*/

/* ========= Base Reset ========= */
:root {
  --bg-body: #050816;
  --bg-section: #060b24;
  --bg-card: #0b102b;
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.1);
  --accent-2: #22d3ee;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --radius-lg: 18px;
  --radius-xl: 22px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.85);
  --nav-height: 72px;
  --transition-fast: 0.2s ease;  
  --container-width: 1360px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 45%, #020617 100%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden; 
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-wrapper { min-height: 100vh; position: relative;}
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }



/* ========= Hero ========= */
.hero { padding: 4.5rem 0 3.5rem; }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 3.5rem; align-items: center; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 999px; padding: 0.2rem 0.75rem 0.2rem 0.3rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  margin-bottom: 1rem; backdrop-filter: blur(12px);
}
.hero-tag-dot { width: 9px; height: 9px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 12px rgba(34, 197, 94, 0.9); }
.hero-tag-text { font-size: 0.78rem; color: var(--text-muted); }

.hero-title { font-family: Poppins, sans-serif; font-size: clamp(2.1rem, 3.1vw + 1.2rem, 3.3rem); line-height: 1.12; margin-bottom: 1.1rem; }
.hero-title span { background: linear-gradient(120deg, #60a5fa, #a855f7, #22d3ee); -webkit-background-clip: text; color: transparent; font-weight: 700; }
.hero-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 34rem; margin-bottom: 1.8rem; }

.hero-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.9rem; }
.pill {
  padding: 0.25rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.75rem; color: var(--text-muted);
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.18), rgba(15, 23, 42, 0.9));
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.5rem; }
.hero-note { font-size: 0.8rem; color: var(--text-muted); max-width: 20rem; }
.hero-note strong { color: var(--accent-2); font-weight: 500; }

.hero-metrics { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.9rem; color: var(--text-muted); }
.metric-item { min-width: 7.5rem; }
.metric-label { text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; font-size: 0.7rem; }
.metric-value { font-size: 1.2rem; font-weight: 600; color: var(--text-main); }

.hero-photo-wrap { position: relative; justify-self: flex-end; }
.hero-card {
  position: relative; border-radius: 26px; padding: 1.2rem;
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.3), rgba(15, 23, 42, 0.93));
  box-shadow: var(--shadow-soft); border: 1px solid rgba(148, 163, 184, 0.45);margin-left: auto;
}
.hero-orbit { position: absolute; inset: -55px -40px -45px -40px; border-radius: 28px; pointer-events: none; opacity: 0.5; border: 1px dashed rgba(56, 189, 248, 0.25); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(15, 23, 42, 0.7); border-radius: 999px; padding: 0.25rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.4); color: var(--text-muted); margin-bottom: 1rem;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 999px; background: #22c55e; }

.hero-avatar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.avatar-circle {
  width: 70px; height: 70px; border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #22d3ee, #4f46e5);
  border: 3px solid rgba(15, 23, 42, 0.9);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.4rem; color: #fff; overflow: hidden;
}
.avatar-circle img { width: 100%; height: 100%; object-fit: cover; }
.hero-avatar-text h2 { font-size: 1.1rem; font-weight: 600; }
.hero-avatar-text p { font-size: 0.8rem; color: var(--text-muted); }

.hero-chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.hero-chip {
  font-size: 0.72rem; padding: 0.18rem 0.6rem; border-radius: 999px;
  background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-muted);
}
.hero-highlight { font-size: 0.85rem; color: var(--text-main); margin-bottom: 0.9rem; }
.hero-highlight span { color: var(--accent-2); font-weight: 500; }
.hero-card-footer { display: flex; justify-content: space-between; gap: 0.7rem; padding-top: 0.7rem; border-top: 1px dashed rgba(148, 163, 184, 0.5); font-size: 0.75rem; color: var(--text-muted); }

.hero-floating-badge {
  position: absolute; top: -16px; right: -22px;
  padding: 0.45rem 0.8rem; border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.75rem; display: flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
}
.hero-floating-badge span { font-weight: 600; color: var(--accent-2); }
.hero-floating-pulse { width: 7px; height: 7px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 16px rgba(34, 197, 94, 0.9); }

/* ========= Sections ========= */
section { padding: 3rem 0; position: relative; }
.section-header { margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: 0.4rem; }
.section-kicker { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-2); font-weight: 500; }
.section-title { font-family: Poppins, sans-serif; font-size: 1.65rem; font-weight: 600; }
.section-subtitle { font-size: 0.92rem; color: var(--text-muted); max-width: 36rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 2rem; align-items: flex-start; }
.about-card {
  background: var(--bg-section); border-radius: var(--radius-xl);
  padding: 1.5rem 1.7rem; border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}
.about-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.about-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.9rem; }
.about-highlight-box {
  border-radius: 16px; padding: 0.9rem 1rem;
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.2), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem; color: var(--text-muted);
}
.about-highlight-box strong { display: block; font-size: 1.1rem; margin-bottom: 0.15rem; color: var(--text-main); }
.about-side { display: grid; gap: 1rem; }
.about-tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.about-tag {
  padding: 0.2rem 0.65rem; border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.72rem; color: var(--text-muted); background: rgba(15, 23, 42, 0.9);
}
.about-list { list-style: none; font-size: 0.88rem; color: var(--text-muted); }
.about-list li { padding-left: 1.2rem; position: relative; margin-bottom: 0.4rem; }
.about-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  position: absolute; left: 0; top: 0.5rem;
}

/* EXPERIENCE */
.experience { background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.2), rgba(2, 6, 23, 0.98)); }
.experience-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 2.5rem; align-items: flex-start; }
.timeline { position: relative; padding-left: 1.8rem; }
.timeline::before {
  content: ""; position: absolute; left: 0.65rem; top: 0.3rem; bottom: 0.3rem;
  width: 2px; background: linear-gradient(to bottom, var(--accent), rgba(148, 163, 184, 0.2));
  opacity: 0.9;
}
.timeline-item { position: relative; margin-bottom: 1.3rem; padding-left: 0.5rem; }
.timeline-dot {
  position: absolute; left: -1.15rem; top: 0.3rem; width: 13px; height: 13px; border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, var(--accent-2), var(--accent));
  border: 2px solid rgba(15, 23, 42, 0.95); box-shadow: 0 0 16px rgba(79, 70, 229, 0.8);
}
.timeline-role { display: flex; justify-content: space-between; gap: 0.6rem; align-items: baseline; margin-bottom: 0.15rem; }
.timeline-role h3 { font-size: 0.96rem; font-weight: 600; }
.timeline-date { font-size: 0.8rem; color: var(--text-muted); }
.timeline-company { font-size: 0.82rem; color: var(--accent-2); margin-bottom: 0.2rem; }
.timeline-location { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.timeline-desc { font-size: 0.85rem; color: var(--text-muted); }

.exp-highlight-card {
  background: var(--bg-section); border-radius: var(--radius-xl);
  padding: 1.5rem 1.7rem; border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}
.exp-stat-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.1rem; }
.exp-stat {
  flex: 1 1 120px; border-radius: 16px; padding: 0.8rem 0.95rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.8rem; color: var(--text-muted);
}
.exp-stat strong { display: block; font-size: 1.1rem; color: var(--text-main); margin-bottom: 0.15rem; }
.exp-list { list-style: none; font-size: 0.88rem; color: var(--text-muted); }
.exp-list li { padding-left: 1.2rem; margin-bottom: 0.4rem; position: relative; }
.exp-list li::before { content: "▹"; position: absolute; left: 0; top: 0; color: var(--accent-2); font-size: 0.8rem; transform: translateY(0.05rem); }

/* SKILLS */
.skills-section { background: radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.15), rgba(2, 6, 23, 0.98)); }
.skills-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 2rem; align-items: flex-start; }
.skills-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.3rem; }
.skill-tag {
  padding: 0.3rem 0.85rem; border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(129, 140, 248, 0.6);
  font-size: 0.78rem; color: var(--text-main);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
}
.skill-pill-secondary { background: rgba(15, 23, 42, 0.9); border-color: rgba(148, 163, 184, 0.4); color: var(--text-muted); }

.skills-bars { display: grid; gap: 0.8rem; }
.skill-bar-item { font-size: 0.85rem; }
.skill-bar-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.25rem; }
.skill-bar-label { color: var(--text-main); font-size: 0.86rem; }
.skill-bar-value { color: var(--text-muted); font-size: 0.78rem; }
.skill-bar-track { width: 100%; height: 6px; border-radius: 999px; background: rgba(30, 64, 175, 0.35); overflow: hidden; }
.skill-bar-fill {
  height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.9s ease-out;
}

.skills-side-card {
  background: var(--bg-section); border-radius: var(--radius-xl);
  padding: 1.3rem 1.4rem; border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
  font-size: 0.86rem; color: var(--text-muted);
}
.skills-side-card h4 { font-size: 0.96rem; margin-bottom: 0.4rem; color: var(--text-main); }
.skills-badges-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.6rem; }
.skills-badge {
  font-size: 0.72rem; padding: 0.2rem 0.7rem; border-radius: 999px;
  background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(148, 163, 184, 0.4);
}

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.3rem; }
.card {
  background: var(--bg-section); border-radius: 18px; padding: 1rem 1.1rem;
  border: 1px solid var(--border-subtle); font-size: 0.85rem; color: var(--text-muted);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
  position: relative; overflow: hidden;
}
.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.4rem; gap: 0.5rem; }
.card-title { font-size: 0.96rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.15rem; }
.card-subtitle { font-size: 0.78rem; color: var(--accent-2); }
.card-tag { font-size: 0.7rem; border-radius: 999px; padding: 0.2rem 0.6rem; border: 1px solid rgba(148, 163, 184, 0.4); background: rgba(15, 23, 42, 0.9); }
.card-footer { margin-top: 0.6rem; display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; font-size: 0.76rem; }
.card-link { color: var(--accent-2); font-size: 0.8rem; }
.card-overlay { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.32), transparent 60%); opacity: 0; transition: opacity 0.25s ease; }
.card:hover .card-overlay { opacity: 1; }

/* TWO COLUMN + CHIPS */
.two-column { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.4rem; }
.chip { font-size: 0.72rem; padding: 0.2rem 0.7rem; border-radius: 999px; background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(148, 163, 184, 0.5); color: var(--text-muted); }

/* CONTACT */
.contact { background: radial-gradient(circle at top, rgba(79, 70, 229, 0.18), rgba(2, 6, 23, 0.98)); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 2rem; align-items: flex-start; }
.contact-card {
  background: var(--bg-section); border-radius: var(--radius-xl);
  padding: 1.6rem 1.8rem; border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}
.contact-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.contact-list { list-style: none; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.contact-list li { margin-bottom: 0.35rem; }
.contact-label {
  opacity: 0.7; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; display: block;
}
.contact-value { font-size: 0.9rem; color: var(--text-main); }
.contact-links { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.contact-links a {
  font-size: 0.85rem; padding: 0.4rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95); color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.contact-links a:hover { color: var(--accent-2); border-color: var(--accent-2); }

.contact-form {
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.2), rgba(15, 23, 42, 0.95));
  border-radius: var(--radius-xl); padding: 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}
.form-row { margin-bottom: 0.9rem; }
.form-row label { display: block; margin-bottom: 0.3rem; font-size: 0.8rem; color: var(--text-muted); }
.form-row input, .form-row textarea {
  width: 100%; padding: 0.6rem 0.7rem; border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9); color: var(--text-main);
  font-size: 0.88rem; outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.6);
  background: rgba(15, 23, 42, 0.95);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-footnote { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

/* FOOTER */
.footer { border-top: 1px solid rgba(148, 163, 184, 0.25); padding: 1.3rem 0 1.4rem; font-size: 0.78rem; color: var(--text-muted); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; justify-content: space-between; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--accent-2); }

/* Scroll To Top */
.scroll-top {
  position: fixed; right: 1.5rem; bottom: 1.6rem;
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
  z-index: 900; font-size: 1rem; color: var(--text-main);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(15, 23, 42, 1); }

/* ========= Responsive ========= */
@media (max-width: 960px) {
  .hero-inner, .about-grid, .experience-grid, .skills-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-photo-wrap { order: -1; justify-self: center; }
  .hero { padding-top: 3.5rem; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* mobile menu only visible on small screens */
  .nav-mobile { display: block; position: fixed; top: var(--nav-height); left: 0; right: 0; }
  .nav-mobile {
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 998;
  }
  .nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-mobile-inner { padding: 0.7rem 1.5rem 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .nav-mobile-links a { display: block; padding: 0.45rem 0; font-size: 0.9rem; color: var(--text-main); }
  .nav-mobile-links a + a { border-top: 1px solid rgba(148, 163, 184, 0.3); }
  .nav-mobile-cta { margin-top: 0.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 2rem; }
  .hero-card { max-width: 100%; }
  .section-title { font-size: 1.4rem; }
  section { padding: 2.4rem 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .scroll-top { right: 1rem; bottom: 1.2rem; }
}




/* =========================================================
   ADD-ON STYLES (Services + CTA + FAQ + Funnel + Active Nav)
   Paste at END of your existing style.css
========================================================= */

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  z-index: 99999;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.95);
  color: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

/* Active nav (desktop + mobile) */
.nav-links a.active {
  color: var(--text-main);
}
.nav-links a.active::after {
  width: 100%;
}
.nav-mobile-links a.active {
  color: var(--accent-2);
}

/* Hero funnel chips */
.hero-funnel-links { margin-top: 14px; }
.link-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-muted);
  font-size: 0.86rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.link-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.7);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.85);
}

/* Small CTA card inside About side */
.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
}
.mini-cta strong { color: var(--text-main); }
@media (max-width: 640px) {
  .mini-cta { flex-direction: column; align-items: flex-start; }
}

/* ===================== SERVICES ===================== */
.services { background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(2, 6, 23, 0.98)); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  position: relative;
  border-radius: 22px;
  padding: 1.2rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.16), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.32), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover { transform: translateY(-2px); border-color: rgba(34, 211, 238, 0.55); }
.service-card:hover::before { opacity: 1; }

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.55rem;
}
.service-top h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}
.service-badge {
  font-size: 0.72rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-muted);
  white-space: nowrap;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.service-card ul li {
  position: relative;
  padding-left: 1.15rem;
}
.service-card ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-size: 0.85rem;
  transform: translateY(0.05rem);
}

.service-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.95rem;
}
.service-link {
  font-size: 0.86rem;
  color: var(--accent-2);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(2, 6, 23, 0.35);
  transition: border-color var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}
.service-link:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.6);
  background: rgba(2, 6, 23, 0.55);
}

.services-bottom-cta { margin-top: 1.2rem; }
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.16), rgba(34, 211, 238, 0.10));
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75);
}
.cta-panel-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ===================== CTA STRIP ===================== */
.cta-strip {
  padding: 2.6rem 0;
  background: radial-gradient(circle at center, rgba(79, 70, 229, 0.18), rgba(2, 6, 23, 0.98));
}
.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.65);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
}
.cta-strip h2 {
  font-family: Poppins, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.cta-strip p { color: var(--text-muted); }
.cta-buttons { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ===================== FAQ ===================== */
.faq { background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.10), rgba(2, 6, 23, 0.98)); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.faq-item {
  border-radius: 20px;
  padding: 1.1rem 1.15rem;
  background: rgba(6, 11, 36, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
}
.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.faq-item a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }

/* Responsive for new sections */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-flex { flex-direction: column; align-items: flex-start; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* (Optional) Prevent body scroll when mobile nav open */
html.nav-open, body.nav-open { overflow: hidden; }




/* =========================================
   FREE AUDIT PAGE — PREMIUM STYLES
   Paste at END of style.css
========================================= */

/* Better anchor positioning (fixed navbar offset) */
#audit-hero,
#audit-process,
#audit-ideal,
#audit-form {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

/* HERO */
.audit-hero {
  padding: 4.2rem 0 3.2rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 211, 238, 0.14), transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(79, 70, 229, 0.18), transparent 55%),
    radial-gradient(circle at bottom, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.98));
}

.audit-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  align-items: start;
}

.audit-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(2rem, 2.6vw + 1.1rem, 3rem);
  line-height: 1.1;
  margin: 0.35rem 0 0.75rem;
}

.audit-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 42rem;
  margin-bottom: 1.2rem;
}

.audit-points {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.4rem 0;
  padding: 0;
}

.audit-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.audit-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 0.52rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

.audit-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1.1rem 0 0.65rem;
}

.audit-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* Right hero card */
.audit-hero-card {
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.22), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 22px;
  padding: 1.35rem 1.35rem;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: calc(var(--nav-height) + 18px);
}

.audit-hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  font-weight: 600;
}

.audit-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.audit-hero-card li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.audit-hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 700;
}

.audit-badge {
  display: inline-flex;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-muted);
}

/* PROCESS */
.audit-process {
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.16), rgba(2, 6, 23, 0.98));
}

.audit-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.audit-step {
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
  position: relative;
  overflow: hidden;
}

.audit-step::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 60%);
  transform: rotate(20deg);
  pointer-events: none;
}

.step-num {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
  margin-bottom: 0.7rem;
}

.audit-step h3 {
  font-size: 0.98rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.audit-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* WHO IT'S FOR */
.audit-ideal .about-card h3 {
  color: var(--text-main);
  margin-bottom: 0.55rem;
}
 
/* FORM SECTION */
.audit-form {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), rgba(2, 6, 23, 0.98));
}

/* WPForms styling (matches your theme) */
.contact-form .wpforms-container {
  margin: 0 !important;
}

.contact-form .wpforms-field-label,
.contact-form label {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100% !important;
  background: rgba(15, 23, 42, 0.9) !important;
  border: 1px solid rgba(148, 163, 184, 0.45) !important;
  color: var(--text-main) !important;
  border-radius: 14px !important;
  padding: 0.75rem 0.85rem !important;
  outline: none !important;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent-2) !important;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.55) !important;
  background: rgba(15, 23, 42, 0.97) !important;
}

.contact-form .wpforms-submit {
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0.7rem 1.4rem !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.45) !important;
  cursor: pointer !important;
}

.contact-form .wpforms-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(79, 70, 229, 0.65) !important;
}

/* FAQ */
.audit-faq {
  background: radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.12), rgba(2, 6, 23, 0.98));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.78);
}

.faq-item h3 {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .audit-hero-inner {
    grid-template-columns: 1fr;
  }
  .audit-hero-card {
    position: relative;
    top: auto;
  }
  .audit-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .audit-title {
    font-size: 2rem;
  }
}






/* =========================
   SharePoint Developer Landing (scoped)
========================= */
.seo-landing-page.sp-landing .hero-inner{
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: 2.4rem;
}
.seo-landing-page.sp-landing .sp-hero-right{
  justify-self: end;
  width: 100%;
  max-width: 420px;
}
.seo-landing-page.sp-landing .sp-hero-card{
  max-width: 100%;
}
.seo-landing-page.sp-landing .sp-hero-bullets{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .55rem 1rem;
  margin: 1.1rem 0 1.1rem;
}
.seo-landing-page.sp-landing .sp-bullet{
  font-size: .86rem;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  padding: .55rem .75rem;
}
.seo-landing-page.sp-landing .sp-hero-card-title h2{
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.seo-landing-page.sp-landing .sp-hero-card-title p{
  color: var(--text-muted);
  font-size: .86rem;
  margin-bottom: .9rem;
}
.seo-landing-page.sp-landing .sp-mini-grid{
  display: grid;
  gap: .65rem;
  margin-bottom: 1rem;
}
.seo-landing-page.sp-landing .sp-mini{
  background: rgba(15,23,42,.65);
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 16px;
  padding: .75rem .85rem;
}
.seo-landing-page.sp-landing .sp-mini-k{
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .2rem;
}
.seo-landing-page.sp-landing .sp-mini-v{
  color: var(--text-main);
  font-size: .86rem;
}
.seo-landing-page.sp-landing .sp-hero-actions{
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin: .85rem 0 1rem;
}
.seo-landing-page.sp-landing .sp-proof{
  display: grid;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: .75rem;
}
.seo-landing-page.sp-landing .sp-card-footer{
  display:flex;
  justify-content: space-between;
  gap:.8rem;
  font-size:.85rem;
}
.seo-landing-page.sp-landing .sp-card-footer a{
  color: var(--accent-2);
}
.seo-landing-page.sp-landing .sp-trust{
  padding-top: 1.5rem;
}
.seo-landing-page.sp-landing .sp-stat-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:.6rem;
  margin-bottom:.35rem;
}
.seo-landing-page.sp-landing .sp-stat-badge{
  font-size:.7rem;
  padding:.22rem .6rem;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
  background: rgba(15,23,42,.8);
  color: var(--text-muted);
}
.seo-landing-page.sp-landing .sp-services-grid .card{
  min-height: 160px;
}

/* Process Steps */
.seo-landing-page.sp-landing .sp-steps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.seo-landing-page.sp-landing .sp-step{
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
  display:flex;
  gap: .85rem;
}
.seo-landing-page.sp-landing .sp-step-num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#fff;
  flex: 0 0 auto;
}
.seo-landing-page.sp-landing .sp-step h3{
  font-size: .98rem;
  color: var(--text-main);
  margin-bottom:.2rem;
}
.seo-landing-page.sp-landing .sp-step p{
  color: var(--text-muted);
  font-size: .9rem;
}

/* CTA strip consistent */
.seo-landing-page.sp-landing .cta-strip{
  padding: 2.4rem 0;
}
.seo-landing-page.sp-landing .cta-flex{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1.2rem;
  background: radial-gradient(circle at top left, rgba(79,70,229,.28), rgba(15,23,42,.92));
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}
.seo-landing-page.sp-landing .cta-flex h2{
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  margin-bottom: .25rem;
}
.seo-landing-page.sp-landing .cta-flex p{
  color: var(--text-muted);
  font-size: .92rem;
}
.seo-landing-page.sp-landing .cta-buttons{
  display:flex;
  flex-wrap: wrap;
  gap: .6rem;
}

/* FAQ accordion */
.seo-landing-page.sp-landing .sp-accordion{
  display:grid;
  gap:.6rem;
}
.seo-landing-page.sp-landing .sp-acc-item{
  width:100%;
  text-align:left;
  background: rgba(15,23,42,.75);
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 16px;
  padding: .85rem 1rem;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:1rem;
  color: var(--text-main);
  cursor:pointer;
}
.seo-landing-page.sp-landing .sp-acc-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(148,163,184,.25);
  background: rgba(15,23,42,.85);
  color: var(--accent-2);
}
.seo-landing-page.sp-landing .sp-acc-panel{
  overflow:hidden;
  max-height: 0;
  transition: max-height .25s ease;
  background: rgba(11,16,43,.7);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 16px;
  margin-top: -0.2rem;
  padding: 0 1rem;
}
.seo-landing-page.sp-landing .sp-acc-panel p{
  padding: .85rem 0;
  color: var(--text-muted);
  font-size: .92rem;
}

/* Mobile fixes */
@media (max-width: 960px){
  .seo-landing-page.sp-landing .hero-inner{
    grid-template-columns: minmax(0,1fr);
  }
  .seo-landing-page.sp-landing .sp-hero-right{
    max-width: 520px;
    justify-self: center;
  }
  .seo-landing-page.sp-landing .sp-hero-bullets{
    grid-template-columns: minmax(0,1fr);
  }
  .seo-landing-page.sp-landing .sp-steps{
    grid-template-columns: minmax(0,1fr);
  }
  .seo-landing-page.sp-landing .cta-flex{
    flex-direction: column;
    align-items: flex-start;
  }
}






/* =========================
   Power Platform Consultant Landing (scoped)
========================= */
.seo-landing-page.ppc-landing .hero-inner{
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: 2.4rem;
}
.seo-landing-page.ppc-landing .ppc-hero-right{
  justify-self: end;
  width: 100%;
  max-width: 420px;
}
.seo-landing-page.ppc-landing .ppc-hero-card{ max-width: 100%; }

.seo-landing-page.ppc-landing .ppc-hero-bullets{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .55rem 1rem;
  margin: 1.1rem 0 1.1rem;
}
.seo-landing-page.ppc-landing .ppc-bullet{
  font-size: .86rem;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  padding: .55rem .75rem;
}
.seo-landing-page.ppc-landing .ppc-hero-card-title h2{
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.seo-landing-page.ppc-landing .ppc-hero-card-title p{
  color: var(--text-muted);
  font-size: .86rem;
  margin-bottom: .9rem;
}

.seo-landing-page.ppc-landing .ppc-mini-grid{
  display: grid;
  gap: .65rem;
  margin-bottom: 1rem;
}
.seo-landing-page.ppc-landing .ppc-mini{
  background: rgba(15,23,42,.65);
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 16px;
  padding: .75rem .85rem;
}
.seo-landing-page.ppc-landing .ppc-mini-k{
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .2rem;
}
.seo-landing-page.ppc-landing .ppc-mini-v{
  color: var(--text-main);
  font-size: .86rem;
}
.seo-landing-page.ppc-landing .ppc-hero-actions{
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin: .85rem 0 1rem;
}
.seo-landing-page.ppc-landing .ppc-proof{
  display: grid;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: .75rem;
}
.seo-landing-page.ppc-landing .ppc-card-footer{
  display:flex;
  justify-content: space-between;
  gap:.8rem;
  font-size:.85rem;
}
.seo-landing-page.ppc-landing .ppc-card-footer a{ color: var(--accent-2); }

.seo-landing-page.ppc-landing .ppc-trust{ padding-top: 1.5rem; }
.seo-landing-page.ppc-landing .ppc-stat-top{
  display:flex; align-items:center; justify-content: space-between; gap:.6rem; margin-bottom:.35rem;
}
.seo-landing-page.ppc-landing .ppc-stat-badge{
  font-size:.7rem; padding:.22rem .6rem; border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
  background: rgba(15,23,42,.8);
  color: var(--text-muted);
}

/* Steps */
.seo-landing-page.ppc-landing .ppc-steps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.seo-landing-page.ppc-landing .ppc-step{
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
  display:flex;
  gap: .85rem;
}
.seo-landing-page.ppc-landing .ppc-step-num{
  width: 34px; height: 34px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#fff;
  flex: 0 0 auto;
}
.seo-landing-page.ppc-landing .ppc-step h3{
  font-size: .98rem;
  color: var(--text-main);
  margin-bottom:.2rem;
}
.seo-landing-page.ppc-landing .ppc-step p{
  color: var(--text-muted);
  font-size: .9rem;
}
.seo-landing-page.ppc-landing .ppc-process-cta{
  margin-top: 1rem;
  display:flex; gap:.6rem; flex-wrap:wrap;
}

/* CTA strip */
.seo-landing-page.ppc-landing .cta-strip{ padding: 2.4rem 0; }
.seo-landing-page.ppc-landing .ppc-cta-flex{
  display:flex; align-items:center; justify-content: space-between; gap: 1.2rem;
  background: radial-gradient(circle at top left, rgba(79,70,229,.28), rgba(15,23,42,.92));
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}
.seo-landing-page.ppc-landing .ppc-cta-flex h2{
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  margin-bottom: .25rem;
}
.seo-landing-page.ppc-landing .ppc-cta-flex p{
  color: var(--text-muted);
  font-size: .92rem;
}
.seo-landing-page.ppc-landing .ppc-cta-buttons{
  display:flex; flex-wrap:wrap; gap:.6rem;
}

/* FAQ accordion */
.seo-landing-page.ppc-landing .ppc-accordion{ display:grid; gap:.6rem; }
.seo-landing-page.ppc-landing .ppc-acc-item{
  width:100%;
  text-align:left;
  background: rgba(15,23,42,.75);
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 16px;
  padding: .85rem 1rem;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:1rem;
  color: var(--text-main);
  cursor:pointer;
}
.seo-landing-page.ppc-landing .ppc-acc-icon{
  width: 28px; height: 28px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(148,163,184,.25);
  background: rgba(15,23,42,.85);
  color: var(--accent-2);
}
.seo-landing-page.ppc-landing .ppc-acc-panel{
  overflow:hidden;
  max-height: 0;
  transition: max-height .25s ease;
  background: rgba(11,16,43,.7);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 16px;
  margin-top: -0.2rem;
  padding: 0 1rem;
}
.seo-landing-page.ppc-landing .ppc-acc-panel p{
  padding: .85rem 0;
  color: var(--text-muted);
  font-size: .92rem;
}

/* Responsive */
@media (max-width: 960px){
  .seo-landing-page.ppc-landing .hero-inner{ grid-template-columns: minmax(0,1fr); }
  .seo-landing-page.ppc-landing .ppc-hero-right{ max-width: 520px; justify-self: center; }
  .seo-landing-page.ppc-landing .ppc-hero-bullets{ grid-template-columns: minmax(0,1fr); }
  .seo-landing-page.ppc-landing .ppc-steps{ grid-template-columns: minmax(0,1fr); }
  .seo-landing-page.ppc-landing .ppc-cta-flex{ flex-direction: column; align-items: flex-start; }
}




/* =========================
   Power Apps Developer Landing (scoped)
========================= */
.seo-landing-page.pad-landing .hero-inner{
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: 2.4rem;
}
.seo-landing-page.pad-landing .pad-hero-right{
  justify-self: end;
  width: 100%;
  max-width: 420px;
}
.seo-landing-page.pad-landing .pad-hero-card{ max-width: 100%; }

.seo-landing-page.pad-landing .pad-hero-bullets{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .55rem 1rem;
  margin: 1.1rem 0 1.1rem;
}
.seo-landing-page.pad-landing .pad-bullet{
  font-size: .86rem;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  padding: .55rem .75rem;
}

.seo-landing-page.pad-landing .pad-hero-card-title h2{
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.seo-landing-page.pad-landing .pad-hero-card-title p{
  color: var(--text-muted);
  font-size: .86rem;
  margin-bottom: .9rem;
}

.seo-landing-page.pad-landing .pad-mini-grid{
  display: grid;
  gap: .65rem;
  margin-bottom: 1rem;
}
.seo-landing-page.pad-landing .pad-mini{
  background: rgba(15,23,42,.65);
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 16px;
  padding: .75rem .85rem;
}
.seo-landing-page.pad-landing .pad-mini-k{
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .2rem;
}
.seo-landing-page.pad-landing .pad-mini-v{
  color: var(--text-main);
  font-size: .86rem;
}
.seo-landing-page.pad-landing .pad-hero-actions{
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin: .85rem 0 1rem;
}
.seo-landing-page.pad-landing .pad-proof{
  display: grid;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: .75rem;
}
.seo-landing-page.pad-landing .pad-card-footer{
  display:flex;
  justify-content: space-between;
  gap:.8rem;
  font-size:.85rem;
}
.seo-landing-page.pad-landing .pad-card-footer a{ color: var(--accent-2); }

.seo-landing-page.pad-landing .pad-trust{ padding-top: 1.5rem; }
.seo-landing-page.pad-landing .pad-stat-top{
  display:flex; align-items:center; justify-content: space-between; gap:.6rem; margin-bottom:.35rem;
}
.seo-landing-page.pad-landing .pad-stat-badge{
  font-size:.7rem; padding:.22rem .6rem; border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
  background: rgba(15,23,42,.8);
  color: var(--text-muted);
}

/* Headings */
.seo-landing-page.pad-landing .pad-h3{
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: .35rem;
}
.seo-landing-page.pad-landing .pad-p{
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: .7rem;
}

/* FAQ accordion */
.seo-landing-page.pad-landing .pad-accordion{ display:grid; gap:.6rem; }
.seo-landing-page.pad-landing .pad-acc-item{
  width:100%;
  text-align:left;
  background: rgba(15,23,42,.75);
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 16px;
  padding: .85rem 1rem;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:1rem;
  color: var(--text-main);
  cursor:pointer;
}
.seo-landing-page.pad-landing .pad-acc-icon{
  width: 28px; height: 28px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(148,163,184,.25);
  background: rgba(15,23,42,.85);
  color: var(--accent-2);
}
.seo-landing-page.pad-landing .pad-acc-panel{
  overflow:hidden;
  max-height: 0;
  transition: max-height .25s ease;
  background: rgba(11,16,43,.7);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 16px;
  margin-top: -0.2rem;
  padding: 0 1rem;
}
.seo-landing-page.pad-landing .pad-acc-panel p{
  padding: .85rem 0;
  color: var(--text-muted);
  font-size: .92rem;
}

/* CTA strip */
.seo-landing-page.pad-landing .cta-strip{ padding: 2.4rem 0; }
.seo-landing-page.pad-landing .pad-cta-flex{
  display:flex; align-items:center; justify-content: space-between; gap: 1.2rem;
  background: radial-gradient(circle at top left, rgba(79,70,229,.28), rgba(15,23,42,.92));
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}
.seo-landing-page.pad-landing .pad-cta-flex h2{
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  margin-bottom: .25rem;
}
.seo-landing-page.pad-landing .pad-cta-flex p{
  color: var(--text-muted);
  font-size: .92rem;
}
.seo-landing-page.pad-landing .pad-cta-buttons{
  display:flex; flex-wrap:wrap; gap:.6rem;
}

/* Responsive */
@media (max-width: 960px){
  .seo-landing-page.pad-landing .hero-inner{ grid-template-columns: minmax(0,1fr); }
  .seo-landing-page.pad-landing .pad-hero-right{ max-width: 520px; justify-self: center; }
  .seo-landing-page.pad-landing .pad-hero-bullets{ grid-template-columns: minmax(0,1fr); }
  .seo-landing-page.pad-landing .pad-cta-flex{ flex-direction: column; align-items: flex-start; }
}
