/*!
Theme Name: Snus Monitor Theme
Theme URI: http://pryvus.com/
Author: Pryvus
Author URI: http://pryvus.com/
Description: Custom light theme
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cassite-theme
*/

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

:root {
  --bg: #ffffff;
  --fg: #0d0d0d;
  --secondary: hsl(40, 6%, 96%);
  --muted: hsl(0, 0%, 45%);
  --border: hsl(0, 0%, 90%);
  --gold: hsl(43, 74%, 49%);
  --gold-light: hsl(43, 74%, 65%);
  --green: hsl(99, 70%, 42%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--fg);
  background-color: var(--bg);
  antialiased: true;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.container__page{
  max-width: 900px !important;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.content__wrap {
  padding-bottom: 64px;
  .wp-block-list {
    list-style: disc !important;
    padding: 10px;
  }
  p{
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.wp-block-heading {
  font-size: 20px !important;
  font-weight: 900;
}
.menu_page_title {
  padding-bottom: 24px !important;
  padding-top: 24px !important;
  margin-bottom: 24px;
  border-bottom: 1px solid;
  border-color: #44403f;
  font-size: 32px !important;
}
@media (max-width: 1024px) {
  .container__page {
      padding: 15px;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  max-width: 768px;
  margin: 0 auto;
}

/* Notification Bar */
.notification-bar {
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.notification-bar p {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  animation: slideDown 0.6s ease-out;
}

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

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}

.logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
      box-shadow: 0 0 20px hsla(43, 74%, 49%, 0.2);
  }
  50% {
      box-shadow: 0 0 40px hsla(43, 74%, 49%, 0.4);
  }
}

.navigation {
  display: flex;
  gap: 48px;
}

.navigation li {
  list-style: none;
}

.navigation li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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


/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 96px 0 128px;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, hsla(43, 74%, 49%, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: hsla(43, 74%, 49%, 0.1);
  border: 1px solid hsla(43, 74%, 49%, 0.2);
  border-radius: 999px;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeIn 0.5s 0.2s ease-out both;
}

@keyframes fadeIn {
  from { opacity: 0; scale: 0.9; }
  to { opacity: 1; scale: 1; }
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--fg) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px hsla(43, 74%, 49%, 0.4);
}

.btn-secondary {
  background: var(--bg);
  color: var(--fg);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--bg);
  color: var(--fg);
  border-color: var(--bg);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: var(--gold);
}

.hero-note img {
  color: var(--gold);
}


/* Value Proposition */
.value-proposition {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 96px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-card:hover .icon-container {
  transform: scale(1.1);
}

.icon-container {
  flex-shrink: 0;
  padding: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsla(43, 74%, 49%, 0.1) 0%, hsla(43, 74%, 49%, 0.05) 100%);
  border: 1px solid hsla(43, 74%, 49%, 0.2);
  transition: transform 0.3s ease;
}

.icon-container img {
  filter: invert(70%) sepia(32%) saturate(723%) hue-rotate(5deg) brightness(82%) contrast(136%);
  display: block;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}


/* Trust Block */
.trust-block {
  padding: 128px 0 176px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 96px;
  align-items: center;
}

.trust-image {
  position: relative;
  aspect-ratio: 1;
  max-width: 450px;
  margin: 0 auto;
}

.image-glow {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  animation: pulse-shadow 3s ease-in-out infinite;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-glow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes pulse-shadow {
  0%, 100% {
      box-shadow: 0 0 60px rgba(196, 158, 52, 0.2);
  }
  50% {
      box-shadow: 0 0 80px rgba(196, 158, 52, 0.3);
  }
}

.trust-content {
  max-width: 550px;
}

.trust-content h2 {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 48px;
  line-height: 1.1;
}

.trust-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: hsla(40, 6%, 96%, 0.5);
  border: 1px solid var(--border);
}

.info-banner img {
  filter: invert(70%) sepia(32%) saturate(723%) hue-rotate(5deg) brightness(82%) contrast(136%);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-banner p {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
}


/* How It Works */
.how-it-works {
  padding: 128px 0 160px;
  background: var(--secondary);
}

.how-it-works h2 {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 80px;
  line-height: 1.1;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-card {
  position: relative;
}

.step-line {
  position: absolute;
  left: 36px;
  top: 80px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, hsla(43, 74%, 49%, 0.4), transparent);
}

.step-header {
  display: flex;
  gap: 32px;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.step-header:hover {
  border-color: hsla(43, 74%, 49%, 0.3);
}

.step-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.step-header:hover h3 {
  color: var(--gold);
}

.step-header p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

.step-number {
  font-size: 60px;
  font-weight: 900;
  color: hsla(43, 74%, 49%, 0.1);
  transition: color 0.3s ease;
  margin-left: auto;
}

.step-header:hover .step-number {
  color: hsla(43, 74%, 49%, 0.2);
}


/* Notification Types */
.notification-types {
  padding: 128px 0;
}

.notification-types h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 80px;
}

.notification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.notification-card {
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.notification-card:hover {
  border-color: hsla(43, 74%, 49%, 0.3);
  transform: translateY(-4px);
}

.notification-card .icon-container {
  display: inline-flex;
  margin-bottom: 24px;
}

.notification-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.notification-card:hover h3 {
  color: var(--gold);
}

.notification-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 128px 0;
  background: #0d0d0d;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, rgba(196, 158, 52, 0.4) 30%, transparent 70%);
  opacity: 0.3;
  filter: blur(80px);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% {
      opacity: 0.25;
      transform: translate(-50%, -50%) scale(1);
  }
  50% {
      opacity: 0.4;
      transform: translate(-50%, -50%) scale(1.15);
  }
}

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

.cta-icon {
  margin-bottom: 40px;
  display: inline-block;
  animation: subtle-rotate 8s ease-in-out infinite;
}

.cta-icon img {
  width: 64px;
  height: 64px;
}

@keyframes subtle-rotate {
  0%, 100% {
      transform: rotate(0deg);
  }
  25% {
      transform: rotate(-5deg);
  }
  75% {
      transform: rotate(5deg);
  }
}

.cta-icon img {
  filter: invert(70%) sepia(32%) saturate(723%) hue-rotate(5deg) brightness(82%) contrast(136%);
}

.cta-content h2 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  font-weight: 300;
}

.btn-cta {
  background: #fff;
  color: #0d0d0d;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-service {
  padding: 128px 0 160px;
}

.about-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.about-service h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 80px;
}

.about-text-content {
  margin-bottom: 80px;
}

.about-text-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.info-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: hsla(43, 74%, 49%, 0.1);
  border: 1px solid hsla(43, 74%, 49%, 0.2);
}

.info-notice img {
  filter: invert(70%) sepia(32%) saturate(723%) hue-rotate(5deg) brightness(82%) contrast(136%);
  flex-shrink: 0;
}

.info-notice p {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 32px;
}

.value-icon {
  display: inline-flex;
  padding: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsla(43, 74%, 49%, 0.1) 0%, hsla(43, 74%, 49%, 0.05) 100%);
  border: 1px solid hsla(43, 74%, 49%, 0.2);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon img {
  filter: invert(70%) sepia(32%) saturate(723%) hue-rotate(5deg) brightness(82%) contrast(136%);
  display: block;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  padding: 128px 0;
  background: var(--secondary);
}

.faq h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 80px;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0 32px;
  transition: border-color 0.3s ease;
}

.accordion-item.active {
  border-color: hsla(43, 74%, 49%, 0.3);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  transition: color 0.3s ease;
}

.accordion-trigger:hover {
  color: var(--gold);
}

.accordion-trigger span {
  flex: 1;
}

.accordion-icon {
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
  color: var(--muted);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  padding-bottom: 24px;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 128px 0 144px;
  background: var(--bg);
}

.contact-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.contact-icon {
  display: inline-flex;
  padding: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsla(43, 74%, 49%, 0.1) 0%, hsla(43, 74%, 49%, 0.05) 100%);
  border: 1px solid hsla(43, 74%, 49%, 0.2);
  margin-bottom: 32px;
  transition: transform 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.1);
}

.contact-icon img {
  filter: invert(70%) sepia(32%) saturate(723%) hue-rotate(5deg) brightness(82%) contrast(136%);
  display: block;
}

.contact h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.contact p {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.email-btn img {
  transition: transform 0.3s ease;
}

.email-btn:hover img {
  transform: translateX(4px);
}

/* Footer */
.footer {
  padding: 80px 0 96px;
  background: var(--fg);
  color: #fff;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 64px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-columns {
  display: flex;
  gap: 112px;
}

.footer-column h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 16px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
      min-height: 70vh;
      padding: 64px 0;
  }

  .hero h1 {
      font-size: 2.5rem;
  }

  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .navigation ul {
    gap: 23px;
}

  .nav {
      gap: 20px;
  }

  .nav-link {
      font-size: 12px;
  }

  .feature-grid-3,
  .trust-grid,
  .notification-grid,
  .about-values {
      grid-template-columns: 1fr;
      gap: 48px;
  }

  .trust-grid {
      grid-template-columns: 1fr;
  }

  .trust-image {
      order: 2;
  }

  .trust-content {
      order: 1;
  }

  .step-header {
      flex-direction: column;
  }

  .step-number {
      font-size: 40px;
  }

  .hero-buttons {
      flex-direction: column;
      width: 100%;
  }

  .btn {
      width: 100%;
  }

  .footer-main {
      flex-direction: column;
      gap: 48px;
  }

  .footer-columns {
      flex-direction: column;
      gap: 48px;
  }

  .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 16px;
  }

  .footer-bottom p {
      text-align: center;
  }

  .cta-section {
      padding: 96px 0;
  }

  .cta-content h2 {
      font-size: 2.5rem;
  }
}