/*
Theme Name: KTV Channels
Theme URI: https://www.ktvchannels.com
Author: KTV Channels
Author URI: https://www.ktvchannels.com
Description: Official WordPress theme for KTV Channels — Kingdom Message. Global Reach. A premium TV channel creation service for Roku and Apple TV.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ktv-channels
Tags: custom-theme, tv-channel, roku, apple-tv, stripe
*/

/* ============================================================
   KTV CHANNELS THEME — MASTER STYLESHEET
   Brand Colors:
     Royal Blue:   #0A1A5C
     Mid Blue:     #0D2680
     Gold:         #D4AF37
     Gold Light:   #F0D060
     White:        #FFFFFF
     Light Grey:   #F5F6FA
     Dark Text:    #1A1A2E
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --blue-deep:    #0A1A5C;
  --blue-mid:     #0D2680;
  --blue-light:   #1A3A8F;
  --gold:         #D4AF37;
  --gold-light:   #F0D060;
  --gold-dark:    #A88A1A;
  --white:        #FFFFFF;
  --off-white:    #F5F6FA;
  --text-dark:    #1A1A2E;
  --text-muted:   #6B7280;
  --border:       rgba(212,175,55,0.3);
  --shadow:       0 8px 32px rgba(10,26,92,0.18);
  --shadow-gold:  0 4px 24px rgba(212,175,55,0.25);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue-deep);
}

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

a:hover { color: var(--gold-light); }

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

ul { list-style: none; }

/* ---- Utility Classes ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-blue { background: var(--blue-deep); }
.bg-blue-mid { background: var(--blue-mid); }
.bg-off-white { background: var(--off-white); }
.bg-white { background: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--blue-deep);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.45);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-blue:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--blue-deep);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover { color: var(--gold); }

/* ---- Header / Navigation ---- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,26,92,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(10,26,92,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.site-logo img {
  height: 60px;
  width: auto;
}

.site-logo .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo .logo-text span {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
}

.nav-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0D2680 50%, #0A1A5C 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(13,38,128,0.6) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.hero-stat .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-logo-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(212,175,55,0.2);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--blue-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  text-align: center;
  line-height: 1.3;
}

/* ---- Platform Logos Strip ---- */
.platforms-strip {
  background: var(--blue-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.platforms-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.platform-item svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
}

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(10,26,92,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-deep);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- Platform Cards ---- */
.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}

.platform-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.platform-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(10,26,92,0.25); }

.platform-card-inner {
  padding: 48px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.platform-card.roku { background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%); }
.platform-card.apple { background: linear-gradient(135deg, #0A1A5C 0%, #1A3A8F 100%); }

.platform-card-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}

.platform-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.platform-card h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 16px;
}

.platform-card p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
}

.platform-features {
  margin-bottom: 32px;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.platform-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ---- Process Section ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 20px 40px;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--blue-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-deep);
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Pricing Section ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid rgba(10,26,92,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(10,26,92,0.35);
}

.pricing-card:hover:not(.featured) {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--gold);
  color: var(--blue-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
}

.pricing-platform {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.pricing-card.featured h3 { color: var(--white); }

.pricing-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.price-setup {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1;
}

.pricing-card.featured .price-setup { color: var(--gold); }

.price-setup sup {
  font-size: 22px;
  vertical-align: super;
}

.price-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card.featured .price-label { color: rgba(255,255,255,0.6); }

.price-monthly {
  margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-mid);
}

.pricing-card.featured .price-monthly { color: rgba(255,255,255,0.9); }

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(10,26,92,0.05);
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.08); }

.pricing-card.featured .ktv-urgency-banner,
.pricing-card.featured .ktv-urgency-banner strong,
.pricing-card.featured .ktv-urgency-banner i {
  color: #ffffff !important;
}

.pricing-features li .check {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(10,26,92,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- FAQ Section ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(10,26,92,0.1);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-gold); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-deep);
  background: var(--white);
  transition: var(--transition);
}

.faq-item.open .faq-question { background: var(--blue-deep); color: var(--white); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--gold); color: var(--blue-deep); transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 20px 24px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ---- Footer ---- */
#site-footer {
  background: #060E30;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 300px;
}

.footer-brand .tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

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

/* ---- Order / Checkout Page ---- */
.order-page {
  background: var(--off-white);
  min-height: 100vh;
  padding: 80px 0;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.order-summary {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}

.order-item .label { color: rgba(255,255,255,0.7); }
.order-item .value { font-weight: 700; color: var(--white); }
.order-item .value.gold { color: var(--gold); }

.order-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--gold);
}

.order-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.order-form-wrap h2 {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--blue-deep);
}

.order-form-wrap .subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(10,26,92,0.1);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

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

.stripe-element-wrap {
  padding: 14px 18px;
  border: 2px solid rgba(10,26,92,0.1);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
}

.stripe-element-wrap.focused {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

.secure-badge svg { width: 16px; height: 16px; fill: #22c55e; }

/* ---- Platform Detail Page ---- */
.platform-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.platform-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.15) 0%, transparent 60%);
}

.platform-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.platform-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 19px;
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  justify-content: center;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   Breakpoints: 1200px | 1024px | 768px | 480px | 360px
   ============================================================ */

/* ---- Tablet Large (≤1200px) ---- */
@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .pricing-grid { gap: 20px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.featured { transform: scale(1); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Platform detail two-col */
  .platform-detail-grid { grid-template-columns: 1fr !important; }

  /* Hero */
  .hero-grid { gap: 40px; }

  /* Order */
  .order-grid { grid-template-columns: 1fr 1.4fr; gap: 32px; }

  /* Contact two-col */
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  /* Base */
  body { font-size: 15px; }
  .section-pad { padding: 70px 0; }
  .container { padding: 0 16px; }

  /* Top bar — hide on mobile */
  .top-bar { display: none; }

  /* Navigation */
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-deep);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
  }
  .nav-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .site-logo img { height: 48px; }
  .site-logo .logo-text { font-size: 18px; }

  /* Hero */
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-content h1 { font-size: clamp(30px, 8vw, 48px); }
  .hero-content p { font-size: 16px; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; flex-wrap: wrap; }
  .hero-visual { margin-top: 0; }
  .hero-logo-wrap { max-width: 300px; margin: 0 auto; }
  .hero-badge { right: -10px; bottom: -10px; font-size: 11px; padding: 12px 14px; }

  /* Platform strip */
  .platforms-strip .container { gap: 20px; }
  .platform-item { font-size: 13px; }

  /* Features grid */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 28px 22px; }

  /* Platform cards */
  .platform-cards { grid-template-columns: 1fr; gap: 24px; }
  .platform-card-inner { padding: 36px 28px; }

  /* Process steps */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-steps::before { display: none; }
  .process-step {
    padding: 0 16px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .pricing-card { padding: 32px 24px; }
  .pricing-card.featured { transform: none; }
  .price-setup { font-size: 34px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { font-size: 15px; padding: 16px 18px; }
  .faq-answer { font-size: 14px; }

  /* CTA Banner */
  .cta-banner h2 { font-size: clamp(24px, 6vw, 36px); }
  .cta-banner p { font-size: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Order page */
  .order-page { padding: 40px 0; }
  .order-grid { grid-template-columns: 1fr; gap: 24px; }
  .order-summary { position: static; padding: 28px 24px; }
  .order-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Platform detail pages */
  .platform-hero { padding: 60px 0; }
  .platform-hero h1 { font-size: clamp(28px, 7vw, 44px); }
  .platform-hero p { font-size: 16px; }

  /* Page hero (inner pages) */
  .page-hero { padding: 50px 0; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .page-hero p { font-size: 16px; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 15px; }

  /* Section headings */
  .section-title { font-size: clamp(24px, 6vw, 36px); }
  .section-subtitle { font-size: 15px; }
}

/* ---- Small Mobile (≤480px) ---- */
@media (max-width: 480px) {
  .section-pad { padding: 56px 0; }
  .container { padding: 0 14px; }

  /* Hero */
  .hero { padding: 48px 0 32px; }
  .hero-content h1 { font-size: clamp(26px, 9vw, 38px); }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .hero-stat .number { font-size: 26px; }

  /* Nav logo */
  .site-logo .logo-text { font-size: 16px; }
  .site-logo img { height: 40px; }

  /* Pricing */
  .price-setup { font-size: 30px; }
  .price-setup sup { font-size: 18px; }
  .price-monthly { font-size: 16px; }

  /* Platform strip — stack vertically */
  .platforms-strip .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .platforms-strip .container > div[style*="width:1px"] { display: none; }

  /* Feature cards */
  .feature-icon { width: 48px; height: 48px; font-size: 20px; }
  .feature-card h3 { font-size: 17px; }

  /* Order form */
  .order-summary { padding: 22px 18px; }
  .order-form-wrap { padding: 22px 16px; }
  .order-form-wrap h2 { font-size: 20px; }

  /* Process steps */
  .step-number { width: 60px; height: 60px; font-size: 20px; }

  /* Buttons full width on tiny screens */
  .btn { font-size: 14px; padding: 12px 20px; }

  /* Footer */
  #site-footer { padding: 48px 0 0; }
  .footer-col h4 { font-size: 13px; }

  /* TidyCal embed */
  .tidycal-section { padding: 40px 0; }
  .tidycal-embed { min-height: 500px; }
}

/* ---- Extra Small (≤360px) ---- */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-content h1 { font-size: 24px; }
  .btn { padding: 11px 16px; font-size: 13px; }
  .pricing-card { padding: 24px 16px; }
  .order-form-wrap { padding: 18px 14px; }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up {
  animation: fadeInUp 0.7s ease forwards;
}

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ---- WooCommerce / Stripe overrides ---- */
.woocommerce-page .woocommerce,
.woocommerce { max-width: 1200px; margin: 0 auto; padding: 60px 24px; }

/* ---- Accessibility ---- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- TidyCal Booking Section ---- */
.tidycal-section {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0D2680 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tidycal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.12) 0%, transparent 60%);
  pointer-events: none;
}

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

.tidycal-header {
  text-align: center;
  margin-bottom: 48px;
}

.tidycal-header h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 12px;
}

.tidycal-header p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

.tidycal-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,175,55,0.3);
  min-height: 600px;
}

.tidycal-embed {
  width: 100%;
  min-height: 600px;
}

/* ============================================================
   INTRODUCTORY OFFER — URGENCY BANNER
   ============================================================ */
.ktv-urgency-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #7B2D00 0%, #B84500 100%);
  border: 1px solid rgba(255, 120, 50, 0.5);
  color: #FFD6B0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 10px;
  line-height: 1.4;
}

.ktv-urgency-banner i.fa-clock {
  color: #FFB347;
  font-size: 15px;
  flex-shrink: 0;
}

.ktv-urgency-banner strong {
  color: #FFE8CC;
}

/* Dark-background variant (inside pricing card on dark sections) */
.pricing-card .ktv-urgency-banner,
.order-summary .ktv-urgency-banner {
  background: linear-gradient(135deg, rgba(180, 60, 0, 0.85) 0%, rgba(210, 90, 0, 0.85) 100%);
  border-color: rgba(255, 140, 60, 0.4);
}
