/*
Theme Name: MyTheme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A lightweight SaaS starter theme.
Version: 1.0
License: GPL v2 or later
Text Domain: mytheme
*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
  background: #fff;
}

a {
  color: inherit;
}

/* ===== SaaS Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-branding a {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration: none;
}
/* Admin bar offset for sticky header */
body.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* If a custom logo is used, keep it tidy */
.custom-logo {
  height: 28px;
  width: auto;
  display: block;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

/* ===== Nav ===== */
.site-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav .menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 560;
  color: rgba(17, 17, 17, 0.75);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 120ms ease, color 120ms ease;
}

.site-nav .menu a:hover,
.site-nav .menu a:focus-visible {
  color: #111;
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

/* Highlight the current page */
.site-nav .current-menu-item>a,
.site-nav .current_page_item>a {
  color: #111;
  background: rgba(0, 0, 0, 0.08);
}

.site-nav .menu li:last-child a {
  background: #111;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

.site-nav .menu li:last-child a:hover,
.site-nav .menu li:last-child a:focus-visible {
  background: #000;
  color: #fff;
}

/* ===== Layout ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-center {
  text-align: center;
}

/* ===== Typography ===== */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
  line-height: 1.6;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h2 {
  font-size: 32px;
  font-weight: 650;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

p {
  font-size: 18px;
  color: #555;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.btn:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.feature-grid {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  flex: 1;
  padding: 30px;
  border-radius: 12px;
  background: #f8f9fb;
}

/* ===== Hero two-column ===== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero p {
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  transition: all 0.15s ease;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.hero-card {
  border-radius: 16px;
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hero-mock {
  height: 320px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02));
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.kpi {
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px;
  text-align: left;
}

.kpi strong {
  display: block;
  font-size: 16px;
}

.kpi span {
  font-size: 13px;
  color: #666;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }
}

/* Footer */
.site-footer{
  background:#111;
  color:#fff;
  padding:64px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items:start;
}

.footer-logo .custom-logo{
  max-width: 160px;
  height: auto;
  display:block;
}

.footer-site-name{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:18px;
}

.footer-tagline{
  margin-top: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4{
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
}

.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.site-footer a{
  color: rgba(255,255,255,0.7);
  text-decoration:none;
}

.site-footer a:hover{
  color:#fff;
}

.footer-bottom{
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align:center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content h1 {
  font-size: 40px;
  letter-spacing: -0.02em;
}

.content h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
}

.content a {
  color: #111;
}

.content p {
  color: #555;
}


@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* ===== Footer: mobile polish ===== */
@media (max-width: 900px) {
  .site-footer {
    text-align: center;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center; /* centers each column block */
  }

  .site-footer .footer-brand,
  .site-footer .footer-col {
    width: 100%;
    max-width: 420px; /* keeps it from feeling too wide */
  }

  .site-footer .footer-logo,
  .site-footer .footer-logo .custom-logo-link {
    justify-content: center;
  }

  .site-footer .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer ul {
    justify-items: center; /* centers the <li> items in your grid-list */
  }

  .site-footer .footer-bottom {
    text-align: center;
  }
  .site-footer .footer-col {
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .site-footer .footer-col:first-of-type {
    border-top: 0;
    padding-top: 0;
  }
}






/* ===== Mobile (simple) ===== */
@media (max-width: 720px) {
  .site-header .container {
    padding: 12px 14px;
  }

  .site-nav .menu {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav .menu a {
    padding: 8px 8px;
  }
}

/* ===== Pro polish: section backgrounds + spacing ===== */
.section-wrap {
  padding: 70px 0;
}

.section-alt {
  background: #f6f7fb;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* tighten overall vertical rhythm a bit */
.section h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.section p {
  margin-top: 0;
}

/* ===== Make the hero feel more premium ===== */
.hero {
  padding-top: 110px;
  padding-bottom: 80px;
}

.hero h1 {
  margin-top: 0;
  line-height: 1.05;
}

.hero p {
  font-size: 18px;
  color: rgba(17, 17, 17, 0.7);
}

/* ===== Feature cards: more “SaaS” ===== */
.feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* better spacing inside feature cards */
.feature-card h3 {
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  font-size: 16px;
  color: rgba(17, 17, 17, 0.7);
}

/* ===== Testimonials: turn into a proper card ===== */
.testimonial{
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);

  display: flex;
  flex-direction: column;
  height: 100%;
}


.testimonial-quote{
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(17,17,17,0.85);

  flex-grow: 1;   /* pushes author down */
}

.testimonial-meta{
  margin-top: 16px;
  font-size: 14px;
  color: rgba(17,17,17,0.6);
}

.testimonial-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA band ===== */
.section-cta {
  background: #f6f7fb;
  color: #111;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.section-cta h2 {
  color: #111;
}

.section-cta p {
  color: rgba(17, 17, 17, 0.7);
}

.section-cta .btn {
  background: #111;
  color: #fff;
}

.section-cta .btn:hover {
  background: #000;
}



@media (max-width: 900px) {
  .section-wrap {
    padding: 70px 0;
  }

  .hero {
    padding-top: 70px;
  }
}
/* ===== Logo Cloud ===== */
.logos-label{
  color: rgba(17,17,17,0.6);
  font-size: 14px;
  margin-bottom: 18px;
}

.logo-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

.logo-item{
  text-align: center;
  padding: 14px;
  font-weight: 600;
  color: rgba(17,17,17,0.5);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px;
  background: #fff;
}

/* ===== Pricing ===== */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.pricing-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.pricing-card.featured{
  border: 2px solid #111;
  transform: scale(1.02);
}

.price{
  font-size: 36px;
  font-weight: 700;
  margin: 12px 0;
}

.pricing-card ul{
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  color: rgba(17,17,17,0.7);
}

.pricing-card li{
  margin-bottom: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .logo-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid{
    grid-template-columns: 1fr;
  }
}
