/*
Theme Name: WishlistSuite
Theme URI: https://www.simpleplanmedia.com/
Author: Anand Pandey
Author URI: https://www.simpleplanmedia.com/
Description: A lightweight dynamic WordPress theme based on the WishlistSuite design, with automatic page setup for home, blog, FAQ, contact, privacy policy, and thank you pages.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: wishlistsuite
*/

:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --text: #101828;
  --muted: #667085;
  --border: #e4e7ec;
  --primary: #f4d35e;
  --primary-dark: #1d2939;
  --green: #55b85f;
  --cream: #f8f5ec;
  --shadow: 0 12px 40px rgba(16, 24, 40, 0.08);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 600;
}

p {
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  min-height: 86px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  flex: 0 0 auto;
  min-width: 0;
  line-height: 1;
}

.brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand .custom-logo,
.brand img {
  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
  display: block;
  flex: 0 0 38px;
}

.brand .site-title,
.brand span {
  white-space: nowrap;
  display: inline-block;
  line-height: 1.1;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  list-style: none;
}

.nav .menu,
.site-footer nav .menu {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover,
.nav a.active,
.nav .current-menu-item > a,
.nav .current_page_item > a,
.nav .current_page_parent > a,
.nav .current-menu-ancestor > a {
  color: var(--text);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: hsl(48deg 100% 50%);
  color: #111;
}

a.btn.btn-outline.btn-outline-2 {
  background: hsl(48deg 100% 96.08%);
  border-radius: calc(var(--radius) - 10px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  
}

.btn-dark {
  background: hsl(145deg 63% 32% / 80%);
  color: #fff;
  border-radius: calc(var(--radius) - 10px);
}
a.btn.btn-outline.hover-green:hover {
    background-color: hsl(145 63% 32%);
    color: white;
}
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 999px;
}

/* Generic sections */
.page-wrap {
  padding: 72px 0;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--surface);
}

.section-header {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
}

.page-title {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  margin: 0 0 16px;
}

/* Hero */
.page-hero {
  padding: 92px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244, 211, 94, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1,
.page-title.hero-title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 18px 0;
}

.hero p.lead,
.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-card {
  position: relative;
}

.hero-card img.main-shot {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-stat {
  position: absolute;
  left: -18px;
  bottom: -18px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat strong {
  font-size: 28px;
  color: var(--green);
}

/* Hero ticker */
.hero-ticker-wrap {
  margin-top: 26px;
}

.hero-ticker {
  overflow: hidden;
  border: 1px solid #e5dfcf;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  padding: 12px 0;
}

.hero-ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: heroTickerScroll 26s linear infinite;
}

.hero-ticker-item {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: #6b7280;
  white-space: nowrap;
}

.hero-ticker-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #73c167;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes heroTickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Trust */
.trust {
  background: #f5f5f7;
  padding: 48px 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.trust-item.static {
  position: relative;
  padding-left: 16px;
  color: #667085;
  font-size: 15px;
  white-space: nowrap;
  gap: 6px;
}

.trust-item.static::before {
  content: none; /* removes the dot */
}
.trust-item svg {
  width: 16px;
  height: 16px;
}
/* Legacy marquee */
.trust-marquee {
  overflow: hidden;
  width: 100%;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: wishlistsuite-marquee 26s linear infinite;
  padding: 4px 0;
  will-change: transform;
}

.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

.trust-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  padding-left: 16px;
    gap: 8px;
    color: #6b7280; /* grey text like screenshot */
}
/* Star icon (yellow) */
.star-icon {
    color: #facc15;   /* soft yellow */
    fill: currentColor;
}

/* Shield icon (green) */
.shield-icon {
    color: #16a34a;   /* Shopify-like green */
}

/* Icon size */
.trust-item svg {
    width: 18px;
    height: 18px;
}
.text-brand-green {
    color: hsl(145 63% 32%);
}
.trust-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #88cb72;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes wishlistsuite-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Layout helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  font-size: 24px;
}

.card p {
  color: var(--muted);
}

.metric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  height: 180px;
  background: #f2f4f7;
  padding: 18px;
  border-radius: 18px;
}

.chart .bar {
  background: var(--green);
  border-radius: 10px 10px 6px 6px;
}

.donut {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 12px auto 0;
  background: conic-gradient(var(--green) 0 72%, #eaecf0 72% 100%);
  position: relative;
}

.donut:after {
  content: "3.5x";
  position: absolute;
  inset: 18px;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 700;
}

.image-card {
  padding: 20px;
}

.image-card img {
  border-radius: 18px;
}

.review {
  background: #fff9e6;
  border-color: #f1e3a1;
}

/* Journey tabs */
.journey-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-header h2 {
  max-width: 1320px;
}

.journey-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 26px;
}

.journey-tab {
  appearance: none;
  border: 1px solid #d5d7da;
  background: #fff;
  color: #111827;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.03);
}

.journey-tab.is-active,
.journey-tab:hover {
  background: #f1c51f;
  border-color: #f1c51f;
}

.journey-panels {
  width: 100%;
  max-width: 930px;
}

.journey-panel {
  width: 100%;
}

.journey-panel img {
  width: 100%;
  border-radius: 28px;
  display: block;
}

/* Highlight section */
.highlight-section {
  background: #f4f4f6;
  padding: 84px 0;
}

.highlight-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.intent-card {
  background: #fff;
  border: 1px solid #dedfe3;
  border-radius: 24px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.05);
}

.intent-card-large {
  grid-column: 1 / -1;
  padding: 18px 18px 14px;
}

.intent-card-copy h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.intent-card-copy p {
  margin: 0 0 18px;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}

.intent-card-media {
  margin-top: auto;
  border: 1px solid #e8d7b7;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.intent-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Brand style section */
.brand-style-section {
  background: #f4f0df;
  padding: 90px 0 100px;
}

.brand-style-wrap {
  max-width: 1100px;
}

.brand-style-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.brand-style-badge {
  display: inline-block;
  background: #f3e3a6;
  color: #1f2937;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.brand-style-header h2 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.1;
  color: #111827;
}

.brand-style-header p {
  margin: 0 auto;
  max-width: 680px;
  color: #667085;
  font-size: 18px;
  line-height: 1.7;
}

.brand-style-visual-single {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-style-visual-single img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-card img,
.blog-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img,
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card .tag {
  display: inline-block;
  align-self: flex-start;
  background: #fff3bf;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 10px 0;
}

.blog-card p {
  font-size: 14px;
  color: #667085;
  line-height: 1.6;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  margin-top: auto;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.filter-pill {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

/* Blog single */
.breadcrumbs {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--muted);
}

.single-blog-page .breadcrumbs {
  margin-bottom: 18px;
  font-size: 14px;
  color: #667085;
}

.single-blog-page .breadcrumbs a {
  color: #667085;
  text-decoration: none;
}

.single-blog-page .breadcrumbs a:hover {
  color: #111827;
}

.single-blog-page .breadcrumbs span {
  margin: 0 6px;
}

.blog-post {
  max-width: 860px;
  margin: 0 auto;
}

.blog-post h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.blog-post .intro {
  font-size: 20px;
  color: var(--muted);
}

.blog-post-single {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
}

.blog-post-single .tag {
  display: inline-block;
  background: #f4e5a3;
  color: #111827;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-post-single h1 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.12;
  margin: 0 0 16px;
  color: #111827;
  letter-spacing: -0.02em;
}

.blog-post-single .intro {
  font-size: 17px;
  line-height: 1.75;
  color: #667085;
  margin: 0 0 18px;
  max-width: 860px;
}

/* Posted date below title */
.blog-posted-date {
  font-size: 14px;
  color: #98a2b3;
  margin-bottom: 18px;
}

/* Reading time above content */
.blog-reading-time {
  font-size: 14px;
  color: #667085;
  margin-bottom: 20px;
}

.blog-reading-time strong {
  color: #111827;
  font-weight: 600;
  margin-right: 4px;
}

.blog-post-single .blog-meta {
  display: flex;
  flex-direction: column; /* stack date + reading time */
  align-items: flex-start;
  gap: 6px;
  color: #98a2b3;
  font-size: 13px;
  margin-bottom: 20px;
}

.single-blog-image {
  margin-top: 10px;
  margin-bottom: 28px;
}

.single-blog-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.blog-body h2 {
  margin-top: 38px;
  font-size: 32px;
}

.blog-body p,
.blog-body li,
.entry-content p,
.entry-content li,
.blog-post-single .entry-content p,
.blog-post-single .entry-content li {
  color: #344054;
  font-size: 18px;
  line-height: 1.85;
}

.blog-body ul,
.entry-content ul {
  padding-left: 20px;
}

.blog-post-single .entry-content h2,
.blog-post-single .entry-content h3 {
  color: #111827;
  margin-top: 32px;
  line-height: 1.2;
}

/* Blog archive */
.blog-archive-page {
  padding: 72px 0;
}

.blog-archive-panel {
  padding: 34px;
  border-radius: 32px;
}

.blog-archive-header {
  margin-bottom: 28px;
}

.blog-archive-header h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.blog-archive-header p {
  margin: 0;
  font-size: 18px;
  color: #667085;
}

.blog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 140px;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.blog-search-wrap,
.blog-filter-wrap {
  width: 100%;
}

.blog-search-input,
.blog-sort-select {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #d0d5dd;
  border-radius: 16px;
  background: #fff;
  font: inherit;
  color: #101828;
}

.blog-search-input:focus,
.blog-sort-select:focus {
  outline: none;
  border-color: #111827;
}

.blog-search-btn {
  height: 54px;
  border-radius: 16px;
  padding: 0 22px;
}

.blog-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.blog-grid-archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  margin: 0 4px;
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
}

.blog-pagination .page-numbers.current {
  background: #f4d35e;
  border-color: #f4d35e;
}

.blog-pagination .page-numbers:hover {
  border-color: #111827;
}

.blog-empty-state {
  text-align: center;
  padding: 48px 20px 20px;
}

.blog-empty-state h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.blog-empty-state p {
  margin: 0;
  color: #667085;
}

/* Forms and content pages */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #d0d5dd;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.notice {
  padding: 14px 16px;
  background: #fff3cd;
  border: 1px solid #f1d37a;
  border-radius: 16px;
  color: #7a5c00;
  margin-bottom: 20px;
}

.thankyou-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.policy section + section {
  margin-top: 32px;
}

.policy h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.policy p,
.policy li {
  color: #344054;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

/* FAQ */
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
}

.faq-list details + details {
  margin-top: 14px;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

/* CTA band */
.cta-band {
  padding: 80px 0;
  background: hsl(48deg 100% 50%);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 18px;
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: var(--cream);
  padding: 28px 0;
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  color: rgba(248, 245, 236, 0.75);
}

.site-footer nav a {
  color: rgba(248, 245, 236, 0.75);
}

.site-footer nav a:hover {
  color: #fff;
}

.footer-brand .site-title {
  color: #fff;
}


/* Blog content links */
.blog-body a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: underline;
}

.blog-body a:hover,
.blog-body a:focus {
  color: #1d4ed8; /* darker blue */
}

.blog-body a:visited {
  color: #4f46e5; /* optional visited state */
}


.blog-navigation a:hover {
  background: #000;
  color: #fff;
}

.nav-previous {
  text-align: left;
}

.nav-next {
  text-align: right;
}

.blog-navigation span {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}

.blog-navigation strong {
  font-size: 16px;
}

.blog-navigation-outer {
  max-width: 920px;     /* same as blog */
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  width: 100%;
}

/* ============================= */
/* BLOG NAVIGATION FINAL */
/* ============================= */

.blog-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.nav-card a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  text-decoration: none;
  color: #111827;
  transition: all 0.3s ease;
  min-height: 120px;
}

.nav-card a:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.1);
}

.nav-card span {
  display: block;
  font-size: 12px;
  color: #98a2b3;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.nav-card strong {
  font-size: 18px;
  line-height: 1.4;
}

.nav-previous {
  text-align: left;
}

.nav-next {
  text-align: right;
}

@media (max-width: 600px) {
  .blog-navigation {
    grid-template-columns: 1fr;
  }

  .nav-next {
    text-align: left;
  }
}


/* Responsive */
@media (max-width: 1024px) {
  .hero,
  .grid-2,
  .blog-grid,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .site-header .inner {
    gap: 18px;
  }

  .nav,
  .nav .menu {
    gap: 18px;
  }

  .blog-grid-archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-toolbar {
    grid-template-columns: 1fr 220px;
  }

  .blog-search-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .brand-style-section {
    padding: 60px 0 70px;
  }

  .brand-style-header h2 {
    font-size: 34px;
  }

  .brand-style-header p {
    font-size: 16px;
  }

  .brand-style-visual-single img {
    max-width: 90%;
  }
}

@media (max-width: 760px) {
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-header .inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    display: none;
    order: 10;
    width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav .menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .grid-2,
  .blog-grid,
  .grid-3,
  .form-grid,
  .blog-grid-archive,
  .intent-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 18px;
  }

  .hero-stat {
    position: static;
    margin-top: 16px;
  }

  .page-hero {
    padding-top: 56px;
  }

  .brand {
    font-size: 18px;
  }

  .brand .custom-logo,
  .brand img {
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
    flex-basis: 34px;
  }

  .site-footer .inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .trust-track {
    gap: 20px;
    animation-duration: 18s;
  }

  .journey-tabs {
    gap: 10px;
  }

  .journey-tab {
    padding: 11px 16px;
    font-size: 13px;
  }

  .intent-card-large {
    grid-column: auto;
  }

  .blog-card-image img {
    height: 220px;
  }

  .blog-card h3 {
    font-size: 24px;
  }

  .blog-archive-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .blog-toolbar {
    grid-template-columns: 1fr;
  }

  .blog-archive-header h1 {
    font-size: 34px;
  }

  .blog-archive-header p {
    font-size: 16px;
  }

  .blog-post-single {
    padding: 22px;
    border-radius: 22px;
  }

  .blog-post-single h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .blog-post-single .intro {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }

  .hero-ticker-track {
    animation: none;
  }
}

/* 09.04.2026 */
.testimonial-section {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.testimonial-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #e9e3d3;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    height: 100%;
}

.testimonial-card .stars {
    color: #f4b400;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 15px;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    margin: 0;
    font-size: 16px;
}

.testimonial-card span {
    font-size: 13px;
    color: #666;
}

/* Swiper spacing */
.swiper {
    padding-bottom: 40px;
}


/* Section background */
.blog-hero-new {
    padding: 60px 0;
    background: #f5f5f5;
}

/* Card */
.blog-card-new {
    background: linear-gradient(135deg, #efe2b8, #cfe2db);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Badge */
.badge-blog {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    width: 60px;
    text-align: center;
}

/* Heading */
.blog-card-new h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

/* Paragraph */
.blog-card-new p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Primary button */
.btn.primary {
    background: #facc15;
    color: #000;
    font-weight: 600;
}

/* Secondary button */
.btn.secondary {
    border: 1px solid #d1d5db;
    color: #111;
    background: #f9fafb;
}

/* Hover */
.btn.primary:hover {
    background: #fbbf24;
}

.btn.secondary:hover {
    background: #f3f4f6;
}

/* ✅ Responsive */
@media (max-width: 1024px) {
    .blog-card-new {
        padding: 40px;
    }

    .blog-card-new h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .blog-card-new {
        padding: 30px;
        border-radius: 20px;
    }

    .blog-card-new h1 {
        font-size: 28px;
    }

    .blog-card-new p {
        font-size: 14px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

.section-header.journey-header h3 {
font-size: 2.25rem;
        line-height: 2.5rem;
}

@media (max-width: 768px) {
    .section-header.journey-header h3 {
font-size: 24px;
    line-height: 30px;
} 
}
.svg-circul {
 width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d1f5e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
} 
.chart {
  background: #f5f3ee;
  border-radius: 16px;
  padding: 24px 32px 36px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 180px;
  box-sizing: border-box;
}

.bar {
  flex: 1;
  background: #2e8b4e;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bar span {
  position: absolute;
  bottom: -22px;
  font-size: 12px;
  color: #888;
  font-family: sans-serif;
}

/* 13.04.2026 */

.section-header.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Button styling (yellow like your screenshot) */
.button-faq a {
  background-color: #f4c400; /* yellow */
  color: #000;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}


@media (max-width: 768px) {
  .section-header.d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-faq {
    margin-top: 10px;
  }
}
.faq-category-title {
  margin: 30px 0 10px;
  font-size: 20px;
  font-weight: 600;
}
