/**
Theme Name: Syncify
Theme URI: https://pascalinesoft.com/
Author: PascalineSoft
Author URI: https://pascalinesoft.com/
Description: Standalone custom WordPress theme for Syncify marketing + pricing site. Converted from React/JSX landing page. No parent theme required.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: syncify
Tags: custom-menu, custom-logo, featured-images, e-commerce, one-column, custom-colors
*/

/* =========================================================
   SYNCIFY – Standalone Theme Styles
   ========================================================= */

:root {
  --syncify-purple: #A855F7;
  --syncify-purple-dark: #9333EA;
  --syncify-purple-light: #C084FC;
  --syncify-bg: #F4F7FC;
  --syncify-text: #0F172A;
  --syncify-muted: #64748B;
  --syncify-border: #E2E8F0;
  --syncify-white: #FFFFFF;
  --syncify-soft: #FAF5FF;
  --syncify-green: #10B981;
  --syncify-green-dark: #059669;
}

/* Base Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--syncify-text);
  background: var(--syncify-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.syncify-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ========== BUTTONS ========== */
.syncify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  line-height: 1.25;
  text-align: center;
}
.syncify-btn-primary {
  background: var(--syncify-purple);
  color: #fff !important;
  box-shadow: 0 1px 3px rgba(168,85,247,0.3);
}
.syncify-btn-primary:hover {
  background: var(--syncify-purple-dark);
  color: #fff !important;
  transform: translateY(-1px);
}
.syncify-btn-outline {
  background: #fff;
  color: var(--syncify-purple) !important;
  border: 1.5px solid rgba(168,85,247,0.4);
}
.syncify-btn-outline:hover {
  background: var(--syncify-soft);
}
.syncify-btn-green {
  background: var(--syncify-green);
  color: #fff !important;
}
.syncify-btn-green:hover {
  background: var(--syncify-green-dark);
  color: #fff !important;
}
.syncify-btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
.syncify-btn-block {
  width: 100%;
}

/* ========== HEADER ========== */
.syncify-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid var(--syncify-border);
  background: rgba(244,247,252,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.syncify-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.syncify-logo {
  display: block;
  height: 52px;
  width: 170px;
}
.syncify-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left;
}
.syncify-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .syncify-nav { display: flex; }
}
.syncify-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  transition: color 0.2s;
}
.syncify-nav a:hover { color: var(--syncify-purple); }

/* Mobile menu toggle */
.syncify-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--syncify-text);
}
@media (min-width: 768px) {
  .syncify-menu-toggle { display: none; }
}

/* ========== HERO ========== */
.syncify-hero {
  position: relative;
  overflow: hidden;
}
.syncify-hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, #F3E8FF 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, #E9D5FF 0%, transparent 50%);
}
.syncify-hero-inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 1024px) {
  .syncify-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 0;
  }
}
.syncify-hero-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--syncify-purple);
}
@media (min-width: 640px) {
  .syncify-hero-brand { font-size: 1.875rem; }
}
.syncify-hero-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .syncify-hero-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .syncify-hero-title { font-size: 2.75rem; line-height: 1.2; }
}
.syncify-gradient-text {
  background: linear-gradient(to right, #9333EA, #C084FC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.syncify-hero-desc {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--syncify-muted);
}
@media (min-width: 640px) {
  .syncify-hero-desc { font-size: 1.125rem; }
}
.syncify-hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Placeholder */
.syncify-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px dashed rgba(168,85,247,0.35);
  background: rgba(255,255,255,0.85);
  text-align: center;
  color: var(--syncify-muted);
  gap: 0.5rem;
  padding: 1.5rem;
}
.syncify-hero-placeholder { min-height: 280px; }
@media (min-width: 1024px) {
  .syncify-hero-placeholder { min-height: 360px; }
}
.syncify-placeholder svg {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--syncify-purple);
  stroke: currentColor;
  fill: none;
}
.syncify-placeholder-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--syncify-purple);
}
.syncify-placeholder-text {
  max-width: 18rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* ========== SECTIONS ========== */
.syncify-section {
  border-top: 1px solid var(--syncify-border);
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .syncify-section { padding: 5rem 0; }
}
.syncify-section-bg { background: var(--syncify-bg); }
.syncify-section-white { background: #fff; }
.syncify-section-soft { background: var(--syncify-soft); }

.syncify-section-header {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.syncify-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .syncify-section-title { font-size: 1.875rem; }
}
.syncify-section-desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--syncify-muted);
}

/* Features Grid */
.syncify-features-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .syncify-features-grid { grid-template-columns: repeat(3, 1fr); }
}
.syncify-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--syncify-border);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.syncify-feature-card .syncify-placeholder {
  min-height: 170px;
  border-radius: 0;
  border: none;
  border-bottom: 1px dashed rgba(168,85,247,0.3);
}
.syncify-feature-body { padding: 1.25rem; }
.syncify-feature-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.syncify-feature-body p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--syncify-muted);
}

/* Wide Feature */
.syncify-wide-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .syncify-wide-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.syncify-wide-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.syncify-wide-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #475569;
}
.syncify-wide-list li span {
  margin-top: 0.4rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: var(--syncify-purple);
  flex-shrink: 0;
}

/* Video */
.syncify-video-wrap {
  margin: 0 auto;
  max-width: 56rem;
  aspect-ratio: 16/9;
}

/* Docs */
.syncify-docs-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .syncify-docs-grid { grid-template-columns: repeat(2, 1fr); }
}
.syncify-doc-card {
  border-radius: 1rem;
  border: 1px solid var(--syncify-border);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.syncify-doc-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--syncify-purple);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.syncify-doc-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.syncify-doc-card p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--syncify-muted);
  min-height: 4rem;
}
.syncify-doc-optional {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #94A3B8;
}

/* CTA */
.syncify-cta { text-align: center; }
.syncify-cta .syncify-btn { margin-top: 1.75rem; }

/* ========== PRICING PAGE ========== */
.syncify-pricing-hero {
  text-align: center;
  padding: 3.5rem 0 2rem;
}
.syncify-pricing-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media (min-width: 640px) {
  .syncify-pricing-hero h1 { font-size: 2.5rem; }
}
.syncify-pricing-hero p {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--syncify-muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.syncify-pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}
@media (min-width: 900px) {
  .syncify-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.syncify-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  border: 1px solid var(--syncify-border);
  background: #fff;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.syncify-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(168,85,247,0.12);
}
.syncify-price-card.popular {
  border: 2px solid var(--syncify-purple);
  box-shadow: 0 8px 24px rgba(168,85,247,0.15);
}
.syncify-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--syncify-purple);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
}

.syncify-price-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.syncify-price-desc {
  font-size: 0.875rem;
  color: var(--syncify-muted);
  margin-bottom: 1.5rem;
  min-height: 2.6rem;
}
.syncify-price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.syncify-price-amount .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--syncify-muted);
}
.syncify-price-amount .value {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.syncify-price-amount .period {
  font-size: 0.9rem;
  color: var(--syncify-muted);
  font-weight: 500;
}
.syncify-price-note {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 1.75rem;
}

.syncify-price-features {
  flex: 1;
  margin-bottom: 1.75rem;
}
.syncify-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
  padding: 0.4rem 0;
}
.syncify-price-features li svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--syncify-green);
  flex-shrink: 0;
  margin-top: 0.15rem;
  stroke: currentColor;
  fill: none;
}
.syncify-price-features li.disabled {
  color: #94A3B8;
}
.syncify-price-features li.disabled svg {
  color: #CBD5E1;
}

/* ========== FOOTER ========== */
.syncify-footer {
  border-top: 1px solid var(--syncify-border);
  background: var(--syncify-bg);
  padding: 2rem 0;
}
.syncify-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--syncify-muted);
  text-align: center;
}
@media (min-width: 640px) {
  .syncify-footer-inner {
    flex-direction: row;
    text-align: left;
  }
}

/* Icons */
.syncify-icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
}

/* Screen reader */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ==========================================================================
   Pricing footnote (shared partial — template-parts/pricing-cards.php)
   ========================================================================== */
.syncify-pricing-footnote {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.syncify-pricing-footnote p {
  font-size: 0.9rem;
  color: var(--syncify-muted);
  line-height: 1.6;
}
.syncify-pricing-footnote a {
  color: var(--syncify-purple);
  font-weight: 600;
}

/* ==========================================================================
   Elementor full-width canvas template
   ========================================================================== */
.syncify-elementor-canvas { width: 100%; }
.syncify-elementor-canvas .elementor { max-width: none; }

/* ==========================================================================
   WooCommerce — My Account login / register (woocommerce/myaccount/form-login.php)
   ========================================================================== */
.syncify-account-container { padding-block: 3rem; }
.syncify-auth-wrap { padding-block: 1rem; }
.syncify-auth-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .syncify-auth-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.syncify-auth-card {
  background: #fff;
  border: 1px solid var(--syncify-border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.syncify-auth-card--register {
  background: var(--syncify-soft);
  border-color: rgba(168, 85, 247, 0.25);
}
.syncify-auth-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--syncify-text);
}
.syncify-auth-subtitle {
  font-size: 0.875rem;
  color: var(--syncify-muted);
  margin-bottom: 1.5rem;
}
.syncify-auth-form .form-row,
.syncify-auth-form p.woocommerce-form-row {
  margin: 0 0 1.1rem;
}
.syncify-auth-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}
.syncify-auth-form label .required {
  color: #DC2626;
}
.syncify-auth-form input.input-text {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid var(--syncify-border);
  font-size: 0.9375rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.syncify-auth-form input.input-text:focus {
  outline: none;
  border-color: var(--syncify-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}
.syncify-auth-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.syncify-auth-form .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--syncify-muted);
}
.syncify-auth-lost {
  text-align: center;
  margin-top: 1rem;
}
.syncify-auth-lost a {
  font-size: 0.8125rem;
  color: var(--syncify-purple);
  font-weight: 600;
}
.syncify-auth-note {
  font-size: 0.8125rem;
  color: var(--syncify-muted);
  margin-bottom: 1.1rem;
}
.syncify-auth-form button[type="submit"] {
  margin-top: 0.25rem;
}
/* WooCommerce prints its own error/notice list above the form — keep it on-brand */
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-NoticeGroup ul.woocommerce-error {
  border-radius: 0.75rem;
  border: 1px solid #FCA5A5;
  background: #FEF2F2;
  color: #B91C1C;
  padding: 0.9rem 1.1rem;
  font-size: 0.875rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Polish pass — small touches that make the landing page feel finished
   ========================================================================== */

/* Icon accent circle behind feature/doc icons instead of a flat dashed box */
.syncify-feature-card .syncify-placeholder svg,
.syncify-doc-label svg {
  filter: drop-shadow(0 1px 1px rgba(168, 85, 247, 0.15));
}

/* Lift + shadow on hover for feature and doc cards, matching the pricing cards */
.syncify-feature-card,
.syncify-doc-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.syncify-feature-card:hover,
.syncify-doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* Underline sweep on nav links */
.syncify-nav a {
  position: relative;
  padding-bottom: 2px;
}
.syncify-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--syncify-purple);
  transition: width 0.2s ease;
}
.syncify-nav a:hover::after { width: 100%; }

/* Slightly richer hero background + eyebrow weight */
.syncify-hero-brand { letter-spacing: -0.01em; }
.syncify-hero-title { letter-spacing: -0.03em; }

/* Buttons: subtle press feedback */
.syncify-btn:active { transform: translateY(0); }
.syncify-btn-primary:active { box-shadow: 0 1px 2px rgba(168,85,247,0.3); }

/* CTA section: soften the background transition into it */
.syncify-cta {
  background: linear-gradient(180deg, var(--syncify-bg) 0%, var(--syncify-soft) 100%);
}

/* Section title gradient accent underline for extra polish */
.syncify-section-header .syncify-section-title,
.syncify-pricing-hero h1 {
  position: relative;
  display: inline-block;
}

/* Price card popular badge: soft glow */
.syncify-price-card.popular {
  position: relative;
}
.syncify-price-card.popular::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(192,132,252,0.05));
  z-index: -1;
  filter: blur(6px);
}
