/*
	Theme Name: AAS - Website Created by AAS - 2
	Theme URI:
	Author: AAS
	Author URI: https://aas-website-monitor.com/
	Description: AAS - Website Created by AAS
	Version: 10.0.0
	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

/* ==========================================================================
   AAS Website Monitor — Premium Dark Theme with Orange Accent
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  --bg: #0A0A0F;
  --bg-subtle: #0E0E15;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text: #F0F0F5;
  --text-secondary: #8A8A9A;
  --text-dim: #5A5A6A;
  --accent-blue: #1E3A5F;
  --accent-navy: #0F2744;
  --accent-navy-light: #2A5080;
  --accent-cyan: #06B6D4;
  --accent-green: #10B981;
  --accent-orange: #F97316;
  --accent-orange-light: #FB923C;

  --gradient: linear-gradient(135deg, #F97316, #1E3A5F);
  --gradient-orange: linear-gradient(135deg, #F97316, #FB923C);
  --gradient-navy: linear-gradient(135deg, #1E3A5F, #2A5080);
  --gradient-subtle: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(30,58,95,0.15));

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

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

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent-orange); }

ul { list-style: none; }

/* --- Utility Classes --- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: var(--gradient-navy);
}

.glass-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  border-color: var(--border-hover);
}

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 800px; }

.section {
  padding: 120px 0;
}

.section__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 64px;
  color: var(--text);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(249,115,22,0.3);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(249,115,22,0.5), 0 8px 24px rgba(249,115,22,0.3);
}

.btn--glow {
  box-shadow: 0 0 0 1px rgba(249,115,22,0.3), 0 0 20px rgba(249,115,22,0.2), 0 0 40px rgba(249,115,22,0.1);
}

.btn--glow:hover {
  box-shadow: 0 0 0 1px rgba(249,115,22,0.5), 0 0 30px rgba(249,115,22,0.3), 0 0 60px rgba(249,115,22,0.15);
}

.btn--glass {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-hover);
  color: var(--text);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 14px;
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
}

.btn--full { width: 100%; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 15, 0.9);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-img {
  border-radius: 10px;
  flex-shrink: 0;
}

.nav__logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.nav__logo-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-orange);
  letter-spacing: 0.5px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links li {
  list-style: none;
}

.nav__links li a,
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  text-decoration: none;
}

.nav__links li a:hover,
.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
}

.nav__cta {
  padding: 10px 22px;
  font-size: 14px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(30,58,95,0.4), transparent 70%);
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(249,115,22,0.2), transparent 70%);
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero__orb--3 {
  width: 400px;
  height: 400px;
  top: 30%;
  right: 10%;
  background: radial-gradient(circle, rgba(15,39,68,0.3), transparent 70%);
  animation: orbFloat1 18s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(60px, 40px); }
  66% { transform: translate(-30px, 60px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-50px, -30px); }
  66% { transform: translate(40px, -50px); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 8px var(--accent-orange);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.trust-badge:hover {
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 0 16px rgba(249,115,22,0.1);
}

.trust-badge svg { color: var(--accent-orange); flex-shrink: 0; }

/* --- Screenshot Presentation --- */
.screenshot-glow {
  position: relative;
}

.screenshot-glow::before {
  content: '';
  position: absolute;
  inset: -15%;
  background: radial-gradient(ellipse, rgba(249,115,22,0.1), rgba(30,58,95,0.08) 40%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  transition: opacity var(--transition);
}

.screenshot-glow:hover::before {
  opacity: 1.3;
}

.browser-frame {
  background: #111118;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.browser-frame:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 30px rgba(249,115,22,0.08);
  transform: scale(1.01);
}

.browser-frame--hero {
  animation: heroFloat 6s ease-in-out infinite;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}

.browser-frame--hero:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg) scale(1.01);
}

@keyframes heroFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) translateY(-10px); }
}

.browser-frame__bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.browser-frame__dot:first-child { background: #EF4444; opacity: 0.7; }
.browser-frame__dot:nth-child(2) { background: #F59E0B; opacity: 0.7; }
.browser-frame__dot:nth-child(3) { background: #10B981; opacity: 0.7; }

.browser-frame img {
  width: 100%;
  height: auto;
}

/* --- Pain Points --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pain-card {
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
}

.pain-card:hover {
  box-shadow: 0 0 20px rgba(249,115,22,0.08);
}

.pain-card__icon {
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.pain-card__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.feat {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 140px;
}

.feat:last-of-type { margin-bottom: 80px; }

.feat--reverse {
  grid-template-columns: 1.2fr 1fr;
}

.feat--reverse .feat__text { order: 2; }
.feat--reverse .feat__visual { order: 1; }

.feat__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.feat__title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.feat__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
}

.feat__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feat__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat__highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat__highlight-icon--orange {
  background: rgba(249,115,22,0.12);
  color: var(--accent-orange);
}

.feat__highlight-icon--navy {
  background: rgba(30,58,95,0.3);
  color: var(--accent-navy-light);
}

.feat__highlight strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.feat__highlight span {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.4;
}

.feat__visual {
  position: relative;
}

/* --- Capabilities Strip --- */
.capabilities {
  text-align: center;
  padding-top: 20px;
}

.capabilities__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.capabilities__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
  transition: all var(--transition);
}

.cap svg { color: var(--accent-orange); flex-shrink: 0; }

.cap:hover {
  border-color: rgba(249,115,22,0.25);
  color: var(--text);
  box-shadow: 0 0 16px rgba(249,115,22,0.06);
}

/* --- Stats --- */
.stats {
  padding: 80px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  padding: 48px 56px;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px;
}

.stats__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.stats__number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats__number--navy {
  background-image: linear-gradient(135deg, #2A5080, #4A7AB5);
}

.stats__number--orange {
  background-image: linear-gradient(135deg, #F97316, #FB923C);
}

.stats__number--navy-light {
  background-image: linear-gradient(135deg, #1E3A5F, #2A5080);
}

.stats__number--orange-light {
  background-image: linear-gradient(135deg, #FB923C, #FDBA74);
}

.stats__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Steps (How It Works) --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps__line {
  position: absolute;
  top: 48px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 2px;
  background: var(--gradient);
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 40px 28px;
  position: relative;
}

.step:hover {
  box-shadow: 0 0 30px rgba(249,115,22,0.06);
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(30,58,95,0.3);
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Section Subtitle --- */
.section__subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: -40px auto 64px;
  line-height: 1.6;
}

/* --- Pricing Layout --- */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pricing-value {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-value__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pricing-value__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.15);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-value__item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-value__item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.pricing-cta-note {
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: var(--text-dim);
}

.pricing-cta-note a {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(249,115,22,0.3);
}

/* --- Pricing Card --- */
.pricing {
  display: flex;
  justify-content: center;
}

.pricing__card {
  max-width: 460px;
  width: 100%;
  position: relative;
  padding: 2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, #1E3A5F, #F97316, #1E3A5F);
  background-size: 200% 200%;
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow: 0 0 20px rgba(30,58,95,0.2), 0 0 40px rgba(249,115,22,0.08);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 0 30px rgba(249,115,22,0.15), 0 0 60px rgba(30,58,95,0.12);
  }
}

.pricing__card-inner {
  padding: 48px 40px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: rgba(14, 14, 21, 0.95);
}

.pricing__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gradient-orange);
  color: #fff;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pricing__header {
  margin-bottom: 36px;
}

.pricing__amount {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing__currency {
  font-size: 32px;
  vertical-align: top;
  position: relative;
  top: 10px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing__cents {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing__period {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 500;
}

.pricing__features {
  text-align: left;
  margin-bottom: 36px;
}

.pricing__features li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing__features li:last-child { border-bottom: none; }

.pricing__features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 6l2.5 2.5L9.5 4' stroke='%23F97316' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing__card-inner .btn--ghost {
  margin-top: 12px;
}

.pricing__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

/* --- Testimonial --- */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  border-color: rgba(249,115,22,0.15);
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.03), rgba(30,58,95,0.03));
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.testimonial:hover {
  border-color: rgba(249,115,22,0.25);
  box-shadow: 0 0 40px rgba(249,115,22,0.06);
}

.testimonial__icon {
  color: var(--accent-orange);
  opacity: 0.4;
  margin-bottom: 24px;
}

.testimonial__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
  border: none;
  padding: 0;
}

.testimonial__author {
  display: flex;
  justify-content: center;
}

.testimonial__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-orange);
}

.testimonial__role {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

/* --- FAQ --- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  overflow: hidden;
  border-radius: var(--radius);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--accent-orange); }

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.35s ease;
  color: var(--text-dim);
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq__answer a {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(249, 115, 22, 0.3);
}

.faq__answer a:hover { color: var(--accent-orange-light); }

/* --- Final CTA --- */
.cta-final {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.1), rgba(30,58,95,0.1) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-final__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.cta-final__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand .nav__logo {
  justify-content: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--text-secondary); }

.footer__copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* --- Inner Pages --- */
.inner-page-aas {
  padding: 50px 0;
  min-height: 60vh;
}

.inner-page-aas .container {
  color: var(--text);
}

.inner-page-aas h1,
.inner-page-aas h2,
.inner-page-aas h3,
.inner-page-aas h4 {
  color: var(--text);
}

.inner-page-aas p {
  color: var(--text-secondary);
}

.inner-page-aas a {
  color: var(--accent-orange);
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- WordPress Admin Bar Offset --- */
.admin-bar .nav {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .nav {
    top: 46px;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }

  .hero__title { font-size: 38px; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }

  .browser-frame--hero {
    transform: none;
    animation: heroFloatSimple 6s ease-in-out infinite;
  }

  .browser-frame--hero:hover { transform: scale(1.01); }

  @keyframes heroFloatSimple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .pain-grid { grid-template-columns: repeat(2, 1fr); }

  .feat,
  .feat--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .feat--reverse .feat__text { order: 1; }
  .feat--reverse .feat__visual { order: 2; }
  .feat { margin-bottom: 100px; }
  .feat__title { font-size: 32px; }
  .feat__desc { margin-left: auto; margin-right: auto; }
  .feat__highlights { align-items: center; }
  .feat__highlight { text-align: left; }

  .steps__line { display: none; }

  .section__title { font-size: 34px; }

  .stats__grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    padding: 40px 32px;
    row-gap: 32px;
  }

  .stats__divider:nth-child(4) { display: none; }
  .stats__item:nth-child(5) { grid-column: 1; }
  .stats__divider:nth-child(6) { display: block; }
  .stats__item:nth-child(7) { grid-column: 3; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .section__title {
    font-size: 28px;
    margin-bottom: 48px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__subtitle { font-size: 16px; }

  /* Nav mobile */
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links li a,
  .nav__link { font-size: 20px; color: var(--text); }
  .nav__cta { font-size: 16px; padding: 14px 32px; }
  .nav__hamburger { display: flex; }

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

  .feat__title { font-size: 28px; }
  .feat { margin-bottom: 80px; }
  .capabilities__grid { gap: 8px; }
  .cap { font-size: 13px; padding: 8px 16px; }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding: 36px 28px;
  }

  .stats__divider { display: none; }
  .stats__number { font-size: 36px; }

  .steps { grid-template-columns: 1fr; gap: 20px; }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section__subtitle { margin: -32px auto 48px; font-size: 16px; }
  .pricing__card-inner { padding: 36px 24px; }
  .pricing__amount { font-size: 52px; }

  .cta-final { padding: 80px 0; }
  .cta-final__title { font-size: 28px; }
  .cta-final__subtitle { font-size: 16px; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }

  .footer__links { gap: 16px; }

  .hero__orb--1 { width: 300px; height: 300px; }
  .hero__orb--2 { width: 250px; height: 250px; }
  .hero__orb--3 { width: 200px; height: 200px; }

  .testimonial { padding: 32px 24px; }
  .testimonial__text { font-size: 17px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 30px; }
  .hero__badge { font-size: 12px; padding: 6px 12px; }
  .trust-badge { font-size: 12px; padding: 6px 12px; }
  .stats__number { font-size: 30px; }
  .step { padding: 28px 20px; }
  .feat__title { font-size: 24px; }
  .feat__desc { font-size: 15px; }
  .cap { font-size: 12px; padding: 7px 14px; }
}

/* --- Login Form (keep for WP login page) --- */
form#loginform label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--text);
}

form#loginform input[type="text"],
form#loginform input[type="password"] {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

form#loginform input[type="submit"] {
  background: var(--gradient-orange);
  color: #fff;
  height: 45px;
  width: 250px;
  border: 0px;
  border-radius: 10px;
}

/* --- Contact Form Styles --- */
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 10px;
}

.wpcf7 input[type="submit"] {
  background: var(--gradient-orange);
  color: #fff;
  border: 0;
  height: 45px;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 200px;
  cursor: pointer;
  border-radius: 10px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: var(--surface);
  text-align: center;
  padding: 20px;
  border-width: 1px;
  color: var(--text);
}

/* --- Spacer for fixed nav on inner pages --- */
.spacer {
  height: 72px;
}
