/* Desktop‑first blog styles for WordPress content */

/* Content wrapper */
.entry-content,
.post-content,
.wp-site-blocks .wp-block-post-content,
.single-post .content,
.blog-content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  color: #161616;
  line-height: 1.7;
  font-size: 18px;
}

/* Headings */
.entry-content h1,
.post-content h1,
.entry-content h2,
.post-content h2,
.entry-content h3,
.post-content h3,
.entry-content h4,
.post-content h4,
.entry-content h5,
.post-content h5,
.entry-content h6,
.post-content h6 {
  color: #161616;
  line-height: 1.25;
  margin: 1.6em 0 0.6em;
  font-weight: 700;
}

.entry-content h1,
.post-content h1 { font-size: 2rem; }
.entry-content h2,
.post-content h2 { font-size: 1.6rem; }
.entry-content h3,
.post-content h3 { font-size: 1.35rem; }
.entry-content h4,
.post-content h4 { font-size: 1.15rem; }

/* Paragraphs & lists */
.entry-content p,
.post-content p { margin: 0 0 1.1em; }

.entry-content ul,
.entry-content ol,
.post-content ul,
.post-content ol {
  margin: 0 0 1.2em 1.4em;
  padding: 0;
}

.entry-content li + li,
.post-content li + li { margin-top: 0.35em; }

/* Links */
.entry-content a,
.post-content a {
  color: #fd557e;
  text-decoration: none;
}
.entry-content a:hover,
.post-content a:hover { text-decoration: underline; }

/* Images & figures */
.entry-content img,
.post-content img,
.entry-content figure img,
.post-content figure img {
  max-width: 100%;
  height: auto;
  display: block;
}

.entry-content figure,
.post-content figure {
  margin: 1.4em 0;
}

.entry-content figcaption,
.post-content figcaption {
  color: #555;
  font-size: 0.9em;
  text-align: center;
  margin-top: 0.5em;
}

/* Gutenberg image/gallery helpers */
.wp-block-image { margin: 1.4em 0; }
.wp-block-gallery { gap: 12px; }
.wp-block-gallery .blocks-gallery-item { margin: 0; }

/* Alignment helpers */
.alignleft { float: left; margin: 0.2em 1em 0.6em 0; }
.alignright { float: right; margin: 0.2em 0 0.6em 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Blockquote */
.entry-content blockquote,
.post-content blockquote {
  border-left: 4px solid #e0e0e0;
  margin: 1.4em 0;
  padding: 0.6em 1em;
  color: #444;
  background: #fafafa;
}

/* Code */
.entry-content code,
.post-content code {
  background: #f4f4f4;
  padding: 0.15em 0.35em;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

.entry-content pre,
.post-content pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 16px;
  border-radius: 8px;
  overflow: auto;
  font-size: 0.95em;
}

/* Tables */
.entry-content table,
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
}

.entry-content th,
.post-content th,
.entry-content td,
.post-content td {
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  text-align: left;
}

.entry-content thead th,
.post-content thead th { background: #fafafa; }

/* Embeds */
.wp-block-embed, .wp-block-video, .wp-block-audio { margin: 1.4em 0; }
.wp-block-embed iframe,
.wp-block-video video { width: 100%; height: auto; display: block; }

/* Captions */
.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; font-size: 0.9em; color: #555; }

/* Make sure base styles apply on desktop too; only tweaks go under mobile media query */
@media (max-width: 768px) {
  .entry-content,
  .post-content,
  .wp-site-blocks .wp-block-post-content,
  .single-post .content,
  .blog-content {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
  }

  .alignleft,
  .alignright { float: none; margin: 0.8em auto; }

  .entry-content h1,
  .post-content h1 { font-size: 1.7rem; }
  .entry-content h2,
  .post-content h2 { font-size: 1.4rem; }
  .entry-content h3,
  .post-content h3 { font-size: 1.2rem; }
}

/* ==========================================================================
   SPROW THEME - CONSOLIDATED CSS
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #FF93AD;
    --background-color: #FFF8E2;
    --white: #FFFFFF;
    --text-color: #161616;
    --text-muted: #A29F95;
    --max-width: 1440px;
    --nav-height: 70px;
    --border-radius: 20px;
    --border-radius-lg: 30px;
    --font-family: 'Chakra Petch', system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.5;
    font-size: 16px;
    overflow-x: hidden;
}

/* Background Image */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://sprow.co/wp-content/uploads/2025/07/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 { font-size: 60px; line-height: 78px; }
h2 { font-size: 40px; line-height: 52px; }
h3 { font-size: 30px; line-height: 39px; }
h4 { font-size: 24px; line-height: 31px; }
h5 { font-size: 20px; line-height: 26px; }
h6 { font-size: 16px; line-height: 21px; }

p {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Images */
img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    min-height: 41px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    min-width: 100px;
}

.btn-primary:hover {
    background-color: #ff7a9c;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-outline {
    background-color: var(--white);
    border: 2px solid var(--text-muted);
    color: var(--text-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
    min-width: 150px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(22, 22, 22, 0.06);
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(255, 147, 173, 0.15);
    transform: translateY(-5px);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    transition: all 0.3s ease;
}

.nav-floating .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
    padding: 0 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

/* Scrolled state */
.nav-floating.scrolled {
    padding: 0.5rem 1rem;
}

.nav-floating.scrolled .nav-container {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
}

/* Logo */
.site-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Desktop Navigation */
.desktop-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-divider {
    width: 2px;
    height: 20px;
    background-color: var(--text-muted);
    opacity: 0.5;
}

/* Mobile Menu */
.mobile-menu-button-container {
    display: none;
}

.mobile-menu-button {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    color: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: rgba(255, 248, 226, 0.95);
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    backdrop-filter: blur(8px);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-bg-wrap {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100px 25%;
}

.hero-section {
    text-align: center;
    padding: calc(var(--nav-height) + 3rem) 0 4rem;
    position: relative;
    background-size: cover; 
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-left: 25%;
    margin-top: 10rem;
    animation: fadeIn 0.8s ease-out forwards;
    width: 50%;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 11rem;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* ==========================================================================
   WHY SPROW SECTION
   ========================================================================== */

.whysprow-section {
    padding: 5rem 0;
}

.whysprow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-bottom: 10rem;
}

.whysprow-box {
    background: var(--white, #fff);
    border-radius: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform .3s ease, box-shadow .3s ease;
}

.whysprow-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.whysprow-box img {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.whysprow-box h3 {
    font-family: var(--font-family, sans-serif);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text-color, #111);
    margin: 0 0 1rem;
}

.whysprow-box p {
    font-family: var(--font-family, sans-serif);
    font-size: 1rem;
    line-height: 20px;
    color: var(--text-color, #111);
    margin: 0;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.howworks-section {
    padding: 5rem 0;
    background-color: transparent;
}

.section-title {
    font-size: 30px;
    line-height: 39px;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
}

/* Tab Controls */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 30px;
    border-radius: 20px;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--text-muted);
    background: var(--white);
    color: var(--text-color);
}

.tab-btn.active {
    background: var(--primary-color);
    border: none;
    color: var(--text-color);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Tab Content */
.tabs-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* How It Works Grid */
.howworks-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.howworks-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.howworks-box {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 40%;
    min-width: 400px;
}

.howworks-box-center {
    max-width: 500px;
    margin: 0 auto;
}

.howworks-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.howworks-box-left {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    min-width: 200px;
}

.howworks-box-left h3 {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    min-height: auto;
}

.howworks-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.howworks-image img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.howworks-box-right {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    background-color: var(--white);
    min-width: 200px;
}

.howworks-box-right p {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 20px;
    color: var(--text-color);
    margin: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    padding: 100px 150px 60px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Main testimonial container (horizontal layout) */
.testimonial-container {
    display: flex;
    align-items: center;
    gap: 37px;
    max-width: 1140px;
    margin: 0 auto;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-content {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-color);
    max-width: 80%;
    padding: 2rem;
    flex: 1;
}

/* Alternative testimonials grid layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Slider Layout */
.testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: hidden;
}

.testimonials-track,
.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Horizontal testimonial card */
.testimonial-card-horizontal {
    display: flex;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.testimonial-person {
    flex: 0 0 300px;
    position: relative;
    background-color: #F8F8F8;
}

.testimonial-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.person-image,
.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content-horizontal {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Quote styling */
.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-quote::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    color: rgba(255, 147, 173, 0.2);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-quote blockquote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
    padding: 0;
    border: none;
}

/* Author info */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-person-info {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    margin-top: auto;
}

.author-image-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-details {
    text-align: left;
}

.author-name,
.person-name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.author-position,
.person-position {
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

/* Stars */
.testimonial-stars {
    margin-bottom: 20px;
    text-align: center;
}

.star {
    color: #FEECA9;
    font-size: 24px;
    margin: 0 2px;
}

/* Slider controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.slider-arrow {
    background: var(--white);
    border: none;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    padding: 5rem 0;
    margin: 5rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://sprow.co/wp-content/uploads/2025/07/signupbg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #161616;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #161616;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 2px solid #161616;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #F5F5F5;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   BLOG STYLES
   ========================================================================== */

/* Blog Landing */
.blog-landing {
    background-color: transparent;
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 2rem);
}

/* Blog Hero */
.blog-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 1rem;
}

.blog-title {
    font-size: clamp(3rem, 8vw, 4rem);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.blog-description {
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Blog Categories */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.category-btn.active {
    background: #FF93AD;
    border-color: #FF93AD;
    color: white;
}

.category-btn:hover:not(.active) {
    border-color: #FF93AD;
    color: #FF93AD;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    align-items: start;
}

/* Featured Post */
.featured-post {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.featured-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-post .post-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.5rem;
}

/* Regular Posts */
.regular-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
}

.regular-post {
    display: flex;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    height: fit-content;
}

.regular-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.regular-post .post-image {
    width: 160px;
    min-width: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem;
}

/* Read Time Badge */
.read-time {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Post Content */
.post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    justify-content: flex-start;
}

.featured-post .post-content {
    padding: 2rem 2.5rem 2.5rem;
    text-align: center;
    justify-content: flex-end;
    min-height: 200px;
}

.regular-post .post-content {
    padding: 1.5rem;
    justify-content: center;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    order: 1;
}

.featured-post .post-tags {
    justify-content: center;
    order: 1;
}

.post-tag {
    padding: 0.5rem 1rem;
    background: #ffc8d5;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-color);
    white-space: nowrap;
}

/* ==========================================================================
   PRICING STYLES
   ========================================================================== */

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    gap: 150px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 100vh;
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Header Section */
.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 737px;
    text-align: center;
    margin: auto;
}

.pricing-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 737px;
    text-align: center;
    margin: 5em auto;
}

.pricing-title {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    color: #161616;
    margin: 0;
}

.pricing-description {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #161616;
    margin: 0;
}

/* Plans Container */
.pricing-plans-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1054px;
}

/* Plans Header */
.plans-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.plans-title {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 39px;
    color: #000000;
    margin: 0;
    text-align: center;
}

/* Toggle Buttons */
.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 265px;
    height: 46px;
    margin-bottom: 2em;
}

.pricing-toggle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    gap: 10px;
    height: 46px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    background: #FFFFFF;
    border: 2px solid #A29F95;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-toggle-btn.active {
    background: #FF93AD;
    border: none;
}

.pricing-toggle-btn:first-child {
    width: 119px;
}

.pricing-toggle-btn:last-child {
    width: 136px;
}

/* Pricing Plans Grid */
.pricing-plans {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    justify-content: center;
    margin-bottom: 10em;
}

/* Individual Plan Cards */
.pricing-plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 30px;
    background: #FFFFFF;
    border: 2px solid #A29F95;
    border-radius: 30px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.basic-plan,
.enterprise-plan {
    width: 297px;
    min-height: 687px;
}

.pricing-plan.popular {
    width: 400px !important;
    min-height: 718px !important;
    background: #FEECA9 !important;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05) !important;
}

/* Plan Header */
.plan-title {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    color: #000000;
    text-align: center;
    margin: 0;
}

/* Plan Images - Using actual illustrations */
.plan-image {
    width: 100%;
    height: 239px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.plan-image-pro {
    height: 312px;
}

/* Background images for each plan */
.plan-image-basic {
    background-image: url('https://sprow.co/wp-content/uploads/2025/08/Basic.png');
}

.plan-image-pro {
    background-image: url('https://sprow.co/wp-content/uploads/2025/08/Professional.png');
}

.plan-image-enterprise {
    background-image: url('https://sprow.co/wp-content/uploads/2025/08/Enterprise.png');
}

/* Plan Features */
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    text-align: left;
}

.feature-item {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #000000;
    position: relative;
    padding-left: 15px;
}

.feature-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF93AD;
    font-weight: bold;
}

/* CTA Button */
.plan-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 20px;
    width: 150px;
    min-width: 150px;
    height: 41px;
    background: #FF93AD;
    border-radius: 10px;
    border: none;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #161616;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 40px 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

/* Left Section */
.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    flex: 1;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-logo .site-title {
    font-size: 24px;
    font-weight: 600;
    color: #FF93AD;
}

/* Menu Grid */
.footer-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 60px;
    flex: 1;
    max-width: 600px;
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-column a {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-menu-column a:hover {
    color: #FF93AD;
}

/* Right Section */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    color: #6b7280;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #374151;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.footer-heart {
    display: flex;
    align-items: center;
}

.footer-heart svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   JETPACK SUBSCRIPTION WIDGET
   ========================================================================== */

/* Main subscription container */
.wp-block-jetpack-subscriptions,
.jetpack_subscription_widget,
.blog-subscription {
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
    margin: 4rem auto;
    padding: 3rem;
    max-width: 800px;
    text-align: center;
    font-family: var(--font-family);
}

/* Subscription heading */
.wp-block-jetpack-subscriptions h3,
.jetpack_subscription_widget h3,
.blog-subscription h3,
.wp-block-jetpack-subscriptions .wp-block-jetpack-subscriptions__title {
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 39px;
    color: #161616;
    margin: 0 0 1rem 0;
    text-align: center;
}

/* Subscription description */
.wp-block-jetpack-subscriptions p,
.jetpack_subscription_widget p,
.blog-subscription p {
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #161616;
    margin: 0 0 2rem 0;
    text-align: center;
}

/* Email input and subscribe button container */
.wp-block-jetpack-subscriptions .wp-block-jetpack-subscriptions__form,
.jetpack_subscription_widget form,
.blog-subscription form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

/* Email input field */
.wp-block-jetpack-subscriptions input[type="email"],
.jetpack_subscription_widget input[type="email"],
.blog-subscription input[type="email"] {
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 21px;
    padding: 12px 20px;
    border: 2px solid #A29F95;
    border-radius: 15px;
    background: #FFFFFF;
    color: #161616;
    min-width: 250px;
    flex: 1;
    max-width: 400px;
    transition: border-color 0.3s ease;
}

.wp-block-jetpack-subscriptions input[type="email"]:focus,
.jetpack_subscription_widget input[type="email"]:focus,
.blog-subscription input[type="email"]:focus {
    border-color: #FF93AD;
    outline: none;
}

/* Subscribe button */
.wp-block-jetpack-subscriptions input[type="submit"],
.wp-block-jetpack-subscriptions button,
.jetpack_subscription_widget input[type="submit"],
.jetpack_subscription_widget button,
.blog-subscription input[type="submit"],
.blog-subscription button {
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    padding: 12px 30px;
    background: #FF93AD;
    color: #161616;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.wp-block-jetpack-subscriptions input[type="submit"]:hover,
.wp-block-jetpack-subscriptions button:hover,
.jetpack_subscription_widget input[type="submit"]:hover,
.jetpack_subscription_widget button:hover,
.blog-subscription input[type="submit"]:hover,
.blog-subscription button:hover {
    background: #ff7a9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 147, 173, 0.3);
}

/* Continue reading link */
.subscription-content .continue-reading,
.wp-block-jetpack-subscriptions .continue-reading {
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #161616;
    text-decoration: none;
    margin-top: 1.5rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.subscription-content .continue-reading:hover,
.wp-block-jetpack-subscriptions .continue-reading:hover {
    color: #FF93AD;
}

/* Remove Jetpack branding/styling conflicts */
.wp-block-jetpack-subscriptions .wp-block-jetpack-subscriptions__use-newline {
    display: none;
}

/* Error and success messages */
.wp-block-jetpack-subscriptions .success,
.jetpack_subscription_widget .success,
.wp-block-jetpack-subscriptions .error,
.jetpack_subscription_widget .error {
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.wp-block-jetpack-subscriptions .success,
.jetpack_subscription_widget .success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wp-block-jetpack-subscriptions .error,
.jetpack_subscription_widget .error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 8rem 0;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display */
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Spacing */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ==========================================================================
   FORMS & INPUT ELEMENTS
   ========================================================================== */

input, textarea, select {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 21px;
    padding: 10px 15px;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    width: 100%;
    background-color: var(--white);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
    outline: none;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* ==========================================================================
   WORDPRESS SPECIFIC STYLES
   ========================================================================== */

/* WordPress Blocks */
.wp-block {
    max-width: var(--max-width);
}

.alignwide {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
}

.alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: 100vw;
}

/* Search Results */
.search-results {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.search-result {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.search-result:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.search-content {
    padding: 1.5rem;
}

.search-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-title a:hover {
    color: var(--primary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary-color);
    color: var(--white);
}

/* Sidebar Widgets */
.sidebar {
    width: 100%;
    margin-bottom: 2rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ==========================================================================
   ACCESSIBILITY & PERFORMANCE
   ========================================================================== */

/* Focus States */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 5px;
}

a:focus{
    outline: 2px solid var(--primary-color);
    outline-offset: 10px;
    border-radius: 5px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF7A9C;
}

/* Selection */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Mobile Footer Fix */
@media (max-width: 768px) {
    .footer {
        padding: 32px 0;
    }
    
    .footer .container {
        padding: 0 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }
    
    .footer-menu-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-credits {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-left {
        gap: 24px;
    }
    
    .footer-menu-grid {
        gap: 20px;
    }
    
    .footer-menu-column {
        gap: 10px;
    }
}

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .container {
        max-width: var(--max-width);
    }
}

/* Desktop (1200px to 1439px) */
@media (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .desktop-nav, .nav-actions {
        display: none;
    }
    
    .mobile-menu-button-container {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .howworks-row {
        flex-direction: column;
        align-items: center;
    }
    
    .howworks-box {
        max-width: 100%;
        width: 100%;
        min-width: auto;
    }
    
    .tabs-nav {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .testimonials-section {
        padding: 60px 20px 40px;
    }
    
    .testimonial-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonial-image {
        width: 100%;
        height: 300px;
        max-width: 400px;
    }
    
    .testimonial-content {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }
    
    .testimonial-card-horizontal {
        flex-direction: column;
    }
    
    .testimonial-person {
        flex: 0 0 250px;
        width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        margin: 3rem 0;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .testimonial-slider {
        padding: 0 20px;
    }
    
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-plan {
        max-width: 400px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .regular-posts {
        gap: 1.5rem;
    }
    
    .regular-post .post-image {
        width: 150px;
        min-width: 150px;
    }
    
    .featured-post .post-image {
        height: 280px;
    }
    
    .posts-grid-frame {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 90%;
    }
    
    .widget-featured-post,
    .widget-regular-posts {
        width: 100%;
        max-width: 600px;
    }
    
    .widget-featured-image {
        width: 100%;
        height: 400px;
    }
    
    .widget-featured-content {
        width: 100%;
        height: auto;
        padding: 20px 30px 30px;
    }
    
    .widget-featured-title {
        width: 100%;
        font-size: 26px;
        line-height: 34px;
    }
    
    .widget-regular-post {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    
    .widget-regular-image {
        width: 100%;
        height: 250px;
        border-radius: 30px 30px 0px 0px;
    }
    
    .widget-regular-content {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .widget-regular-title {
        width: 100%;
        font-size: 20px;
        line-height: 26px;
    }
    
    .post-container {
        max-width: 90%;
    }
    
    .content-frame {
        padding: 40px 60px;
    }
    
    .heading-image {
        height: 350px;
    }
    
    .wp-block-jetpack-subscriptions,
    .jetpack_subscription_widget,
    .blog-subscription {
        margin: 2rem 1rem;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .wp-block-jetpack-subscriptions h3,
    .jetpack_subscription_widget h3,
    .blog-subscription h3 {
        font-size: 24px;
        line-height: 31px;
    }
    
    .wp-block-jetpack-subscriptions .wp-block-jetpack-subscriptions__form,
    .jetpack_subscription_widget form,
    .blog-subscription form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wp-block-jetpack-subscriptions input[type="email"],
    .jetpack_subscription_widget input[type="email"],
    .blog-subscription input[type="email"] {
        width: 100%;
        min-width: auto;
        max-width: none;
    }
    
    .wp-block-jetpack-subscriptions input[type="submit"],
    .wp-block-jetpack-subscriptions button,
    .jetpack_subscription_widget input[type="submit"],
    .jetpack_subscription_widget button,
    .blog-subscription input[type="submit"],
    .blog-subscription button {
        width: 100%;
        max-width: 200px;
    }
}

/* Mobile Large (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    /* Typography */
    h1, .hero-title, .blog-title {
        font-size: 40px;
        line-height: 52px;
    }
    
    h2 {
        font-size: 30px;
        line-height: 39px;
    }
    
    .hero-description, .blog-description {
        font-size: 16px;
        line-height: 21px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 31px;
    }
    
    /* Layout */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .howworks-box {
        flex-direction: column;
        min-width: auto;
    }
    
    .howworks-box-left,
    .howworks-box-right {
        width: 100%;
        padding: 1.5rem;
        min-width: auto;
    }
    
    .howworks-box-left h3 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .howworks-box-right p {
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .blog-landing {
        padding-top: calc(var(--nav-height) + 1rem);
    }
    
    .blog-hero {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .blog-categories {
        margin-bottom: 2rem;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .blog-posts-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .featured-post .post-image {
        height: 220px;
        padding: 1rem;
    }
    
    .regular-post {
        flex-direction: column;
        min-height: auto;
    }
    
    .regular-post .post-image {
        width: 100%;
        height: 180px;
        padding: 1rem;
        border-radius: 30px 30px 0 0;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .featured-post .post-content {
        padding: 1.5rem;
        text-align: left;
        min-height: auto;
    }
    
    .regular-post .post-content {
        padding: 1rem;
    }
    
    .post-tags {
        margin-bottom: 0.75rem;
    }
    
    .featured-post .post-tags {
        justify-content: flex-start;
    }
    
    .post-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .testimonials-section {
        padding: 40px 15px 30px;
    }
    
    .testimonial-content {
        font-size: 18px;
        line-height: 24px;
    }
    
    .cta-section {
        padding: 3rem 1rem;
        margin: 3rem 0;
        border-radius: 15px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .single-post-page {
        padding-top: calc(var(--nav-height) + 1rem);
        padding-bottom: 2rem;
    }
    
    .single-post-page .post-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .post-container {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .heading-image {
        height: 280px;
        padding: 15px;
        border-radius: 20px 20px 0px 0px;
    }
    
    .read-time-badge {
        padding: 8px;
        min-width: 80px;
        height: 35px;
        font-size: 14px;
        line-height: 18px;
    }
    
    .content-frame {
        padding: 30px 40px;
        gap: 15px;
    }
    
    .post-main-title {
        font-size: 24px;
        line-height: 31px;
    }
    
    .post-main-content {
        font-size: 15px;
        line-height: 20px;
    }
    
    .tags-container {
        gap: 8px;
    }
    
    .tag-frame {
        padding: 8px 15px;
        height: 32px;
    }
    
    .tag-text {
        font-size: 11px;
        line-height: 14px;
    }
    
    .latest-posts-widget {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .posts-grid-frame {
        gap: 15px;
        padding: 0 1rem;
    }
    
    .widget-featured-image {
        height: 300px;
        padding: 15px;
    }
    
    .widget-featured-content {
        padding: 15px 20px 20px;
    }
    
    .widget-featured-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .widget-regular-image {
        height: 200px;
        padding: 15px;
    }
    
    .widget-regular-content {
        padding: 15px;
    }
    
    .widget-regular-title {
        font-size: 18px;
        line-height: 23px;
    }
    
    .widget-read-time-badge {
        width: 80px;
        height: 35px;
        padding: 8px;
        font-size: 14px;
        line-height: 18px;
    }
    
    .widget-tag-frame {
        padding: 8px 15px;
        height: 32px;
    }
    
    .widget-tag-text {
        font-size: 11px;
        line-height: 14px;
    }
    
    .pricing-container {
        gap: 80px;
        padding: 40px 20px;
    }
    
    .pricing-title {
        font-size: 48px;
        line-height: 62px;
    }
    
    .pricing-description {
        font-size: 18px;
        line-height: 24px;
    }
    
    .pricing-toggle {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-toggle-btn {
        flex: 1;
    }
    
    .pricing-plan {
        width: 100%;
        max-width: 350px;
        min-height: auto;
    }
    
    .basic-plan,
    .enterprise-plan,
    .pro-plan {
        width: 100%;
        max-width: 350px;
    }
    
    .wp-block-jetpack-subscriptions,
    .jetpack_subscription_widget,
    .blog-subscription {
        margin: 1.5rem 0.5rem;
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .wp-block-jetpack-subscriptions h3,
    .jetpack_subscription_widget h3,
    .blog-subscription h3 {
        font-size: 20px;
        line-height: 26px;
    }
    
    .wp-block-jetpack-subscriptions p,
    .jetpack_subscription_widget p,
    .blog-subscription p {
        font-size: 14px;
        line-height: 19px;
    }
}

@media (max-width: 360px) {
    .whysprow-box {
        padding: 2rem 1.5rem;
    }
}

/* Mobile Small (576px and below) */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Typography */
    h1, .hero-title, .blog-title {
        font-size: 30px;
        line-height: 39px;
    }
    
    h2 {
        font-size: 24px;
        line-height: 31px;
    }
    
    .section-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Sections */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-lg {
        padding: 4rem 0;
    }
    
    /* Cards */
    .card, .feature-card, .testimonial-card {
        padding: 1.5rem;
    }
    
    /* How It Works */
    .howworks-section {
        padding: 3rem 0;
    }
    
    .howworks-box-left,
    .howworks-box-right {
        padding: 1rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .blog-hero {
        padding: 0 0.5rem;
    }
    
    .blog-categories {
        padding: 0 0.5rem;
    }
    
    .blog-posts-grid {
        padding: 0 0.5rem;
    }
    
    .category-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .featured-post .post-image {
        height: 200px;
        padding: 0.75rem;
    }
    
    .regular-post .post-image {
        height: 160px;
        padding: 0.75rem;
    }
    
    .single-post-page .post-wrapper {
        padding: 0.5rem 0.25rem;
    }
    
    .post-container {
        border-radius: 15px;
    }
    
    .heading-image {
        height: 220px;
        padding: 10px;
        border-radius: 15px 15px 0px 0px;
    }
    
    .read-time-badge {
        padding: 6px;
        min-width: 70px;
        height: 30px;
        font-size: 12px;
        line-height: 16px;
    }
    
    .content-frame {
        padding: 20px 25px;
        gap: 12px;
    }
    
    .post-main-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .post-main-content {
        font-size: 14px;
        line-height: 19px;
    }
    
    .post-main-content h1 {
        font-size: 22px;
    }
    
    .post-main-content h2 {
        font-size: 20px;
    }
}

/* Post Titles */
.post-title {
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
    order: 2;
}

.featured-post .post-title {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
}

.regular-post .post-title {
    font-size: clamp(1rem, 3vw, 1.1rem);
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #FF93AD;
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.load-more {
    padding: 1rem 2rem;
    background: #FF93AD;
    color: white;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more:hover {
    background: #e55aa0;
    transform: translateY(-2px);
}

/* No Posts Message */
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-color);
    opacity: 0.6;
}

/* ==========================================================================
   SINGLE POST STYLES
   ========================================================================== */

main.single-post-page,
.single-post-page {
    background-color: transparent;
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 4rem;
}

main.single-post-page .post-wrapper,
.single-post-page .post-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

/* Post Container - More specific */
main.single-post-page .post-container,
.single-post-page article.post-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 1000px !important;
    background: #FFFFFF !important;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05) !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
}

/* Heading Image - More specific */
main.single-post-page .heading-image,
.single-post-page .post-container .heading-image {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 20px !important;
    gap: 20px !important;
    width: 100% !important;
    height: 411px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 30px 30px 0px 0px !important;
    position: relative !important;
}

/* Read Time Badge - More specific */
main.single-post-page .read-time-badge,
.single-post-page .heading-image .read-time-badge {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
    gap: 10px !important;
    width: fit-content !important;
    min-width: 99px !important;
    height: 41px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 10px !important;
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 21px !important;
    color: #000000 !important;
    white-space: nowrap !important;
    backdrop-filter: blur(10px) !important;
}

/* Content Frame - More specific */
main.single-post-page .content-frame,
.single-post-page .post-container .content-frame {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 50px 100px !important;
    gap: 20px !important;
    width: 100% !important;
    min-height: 600px !important;
    background: #FFFFFF !important;
}

/* Tags Container - More specific */
main.single-post-page .tags-container,
.single-post-page .content-frame .tags-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 5px 0px !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 800px !important;
    height: fit-content !important;
    min-height: 46px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* Individual Tag Frame - More specific */
main.single-post-page .tag-frame,
.single-post-page .tags-container .tag-frame {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    align-content: center !important;
    padding: 10px 20px !important;
    gap: 20px !important;
    height: 36px !important;
    background: #FFC8D5 !important;
    border-radius: 20px !important;
    width: fit-content !important;
}

/* Tag Text - More specific */
main.single-post-page .tag-text,
.single-post-page .tag-frame .tag-text {
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    color: #000000 !important;
    white-space: nowrap !important;
}

/* Post Main Title - More specific */
main.single-post-page .post-main-title,
.single-post-page .content-frame .post-main-title,
.single-post-page h1.post-main-title {
    width: 100% !important;
    max-width: 800px !important;
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 30px !important;
    line-height: 39px !important;
    color: #161616 !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Post Main Content - More specific */
main.single-post-page .post-main-content,
.single-post-page .content-frame .post-main-content {
    width: 100% !important;
    max-width: 800px !important;
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 21px !important;
    color: #161616 !important;
    text-align: left !important;
}

/* Content Typography */
.post-main-content h1,
.post-main-content h2,
.post-main-content h3,
.post-main-content h4,
.post-main-content h5,
.post-main-content h6 {
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    color: #161616;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.post-main-content h1 {
    font-size: 28px;
}

.post-main-content h2 {
    font-size: 24px;
}

.post-main-content h3 {
    font-size: 20px;
}

.post-main-content p {
    margin: 1rem 0;
    font-size: 16px;
    line-height: 21px;
    color: #161616;
}

.post-main-content ul,
.post-main-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-main-content li {
    margin: 0.5rem 0;
    font-size: 16px;
    line-height: 21px;
    color: #161616;
}

.post-main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.post-main-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #FFC8D5;
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    font-style: italic;
    border-radius: 10px;
}

/* ==========================================================================
   LATEST POSTS WIDGET
   ========================================================================== */

.latest-posts-widget {
    margin-top: 0;
    padding: 2rem 0;
    width: 100%;
}

/* Posts Grid Frame */
.posts-grid-frame {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 30px;
    width: 100%;
    max-width: 1274px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Featured Post */
.widget-featured-post {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 536px;
    max-width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    overflow: hidden;
}

.widget-featured-image {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 20px;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px 30px 0px 0px;
}

.widget-featured-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 50px 50px;
    gap: 20px;
    width: 100%;
    border-radius: 30px;
}

.widget-featured-title {
    width: 436px;
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 39px;
    color: #161616;
    text-align: center;
    margin: 0;
}

.widget-featured-title a {
    color: #161616;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-featured-title a:hover {
    color: #FF93AD;
}
/* Regular Posts Column */
.widget-regular-posts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 30px;
    width: 708px;
    max-width: 100%;
}

.widget-regular-post {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0px;
    width: 100%;
    min-height: 200px;
    background: #FFFFFF;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    overflow: hidden;
}

.widget-regular-image {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    width: 225px;
    min-width: 225px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px 0px 0px 30px;
}

.widget-regular-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 20px;
    flex: 1;
    border-radius: 30px;
}

.widget-regular-title {
    width: 100%;
    max-width: 423px;
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
    color: #161616;
    text-align: center;
    margin: 0;
}

.widget-regular-title a {
    color: #161616;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-regular-title a:hover {
    color: #FF93AD;
}

/* Read Time Badge for Widget */
.widget-read-time-badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 99px;
    height: 41px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #000000;
    white-space: nowrap;
}

/* Tags for Widget */
.widget-tags-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 5px 0px;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    justify-content: center;
}

.widget-tag-frame {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 10px 20px;
    gap: 20px;
    height: 36px;
    background: #FFC8D5;
    border-radius: 20px;
    width: fit-content;
}

.widget-tag-text {
    font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    white-space: nowrap;
}