/*
Theme Name: รับจ้างทำสไลด์ — Orange Pro
Theme URI: https://www.xn--72cb1blm7cs3b8cmc1t6b8bj.com/
Author: รับจ้างทำสไลด์.com
Author URI: https://www.xn--72cb1blm7cs3b8cmc1t6b8bj.com/
Description: WordPress Theme โทนสีส้ม ตัวอักษรขนาดใหญ่ สำหรับบริการรับทำ Presentation วิชาการ พร้อมระบบ Content Editor Plugin
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Private
Text Domain: slide-orange
*/

/* ============================================================
   CSS VARIABLES — Orange Pro System
   ============================================================ */
:root {
  /* Orange Palette */
  --orange-50:  #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;

  /* Dark Navy */
  --navy:       #0f1422;
  --navy-2:     #151d35;
  --navy-3:     #1c2645;

  /* Neutrals */
  --white:      #ffffff;
  --gray-50:    #fafaf9;
  --gray-100:   #f5f5f4;
  --gray-200:   #e7e5e4;
  --gray-300:   #d6d3d1;
  --gray-400:   #a8a29e;
  --gray-500:   #78716c;
  --gray-600:   #57534e;
  --gray-700:   #44403c;
  --gray-800:   #292524;

  /* Semantic */
  --accent:     var(--orange-500);
  --accent-2:   var(--orange-400);
  --accent-3:   var(--orange-300);
  --green:      #16a34a;
  --blue:       #2563eb;

  /* Typography — ใหญ่ขึ้น */
  --font-display: 'Kanit', sans-serif;
  --font-body:    'Sarabun', sans-serif;

  /* Sizing */
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow:    0 4px 28px rgba(249,115,22,0.12);
  --shadow-lg: 0 12px 56px rgba(249,115,22,0.18);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;          /* ใหญ่ขึ้นจาก 16px */
  line-height: 1.8;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { transition: all 0.25s; color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY — ขนาดใหญ่ขึ้นทุก Level
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.3rem; font-weight: 700; }
p  { font-size: 1.1rem; line-height: 1.85; }

/* Orange em */
em { font-style: normal; color: var(--accent); }

/* WP Core */
.aligncenter { display: block; margin: 0 auto; }
.alignleft   { float: left; margin-right: 1.5em; }
.alignright  { float: right; margin-left: 1.5em; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white); font-family: var(--font-body);
  font-weight: 800; font-size: 1.05rem; padding: 16px 36px;
  border-radius: 12px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(249,115,22,0.45);
  transition: all 0.25s; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(249,115,22,0.55); color: var(--white); }
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3);
  color: var(--white); font-weight: 700; font-size: 1.05rem;
  padding: 14px 30px; border-radius: 12px; text-decoration: none; transition: all 0.25s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); color: var(--white); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 2px solid var(--orange-500);
  color: var(--orange-600); font-weight: 700; font-size: 1rem;
  padding: 13px 28px; border-radius: 12px; text-decoration: none; transition: all 0.25s;
}
.btn-outline:hover { background: var(--orange-500); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,20,34,0.0);
  backdrop-filter: blur(0);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(15,20,34,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.nav-brand {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 900;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.nav-brand-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}
.nav-brand span { color: var(--orange-400); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.95rem; font-weight: 600; padding: 7px 14px; border-radius: 9px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700)) !important;
  color: var(--white) !important; font-weight: 800 !important;
  padding: 8px 20px !important; border-radius: 9px !important;
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(249,115,22,0.55) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.nav-mobile {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(15,20,34,0.98); backdrop-filter: blur(20px);
  padding: 20px; z-index: 999; flex-direction: column; gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: rgba(255,255,255,0.82); padding: 12px 18px; border-radius: 9px; font-size: 1rem; font-weight: 600; }
.nav-mobile a:hover { background: rgba(255,255,255,0.08); }
.nav-mobile .nav-line-link { color: #06c755 !important; font-weight: 800 !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--navy) 0%, #1a1028 40%, #0d1a33 100%);
  display: flex; align-items: center;
  padding: 110px 32px 80px;
  position: relative; overflow: hidden;
}
.hero-orb-1 {
  position: absolute; top: -15%; right: -8%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.25) 0%, transparent 65%);
  pointer-events: none; animation: orb-float 9s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute; bottom: -20%; left: -10%;
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,0.15) 0%, transparent 65%);
  pointer-events: none; animation: orb-float 12s ease-in-out infinite reverse;
}
.hero-orb-3 {
  position: absolute; top: 50%; left: 25%;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,146,60,0.08) 0%, transparent 65%);
  pointer-events: none; animation: orb-float 15s ease-in-out infinite;
}
@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(15px,20px) scale(1.06); }
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black, transparent);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange-300); font-size: 0.85rem; font-weight: 700;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 26px;
  letter-spacing: 0.07em; text-transform: uppercase;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-400); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white); line-height: 1.15;
  margin-bottom: 26px; letter-spacing: -0.025em;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero h1 em { color: var(--orange-400); }
.hero-desc {
  color: rgba(255,255,255,0.68); font-size: 1.15rem; margin-bottom: 36px;
  max-width: 500px; line-height: 1.85; animation: fadeUp 0.6s 0.3s ease both;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; animation: fadeUp 0.6s 0.4s ease both; }
.pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600;
  padding: 6px 15px; border-radius: 100px;
}
.pill-check { color: var(--green); font-weight: 800; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.5s ease both; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(249,115,22,0.2); border-radius: 18px; overflow: hidden;
  background: rgba(249,115,22,0.04); margin-top: 28px;
  animation: fadeUp 0.6s 0.6s ease both;
}
.stat { padding: 24px 14px; text-align: center; border-right: 1px solid rgba(249,115,22,0.1); transition: background 0.2s; }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(249,115,22,0.07); }
.stat-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; color: var(--orange-400); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.4; }
/* Hero Visual */
.hero-visual { display: flex; flex-direction: column; gap: 14px; animation: fadeUp 0.8s 0.4s ease both; }
.slide-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(249,115,22,0.15);
  border-radius: 16px; padding: 20px 26px;
  display: flex; align-items: center; gap: 18px;
  backdrop-filter: blur(14px); transition: all 0.3s;
}
.slide-card:hover {
  background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.3);
  transform: translateX(7px); box-shadow: 0 8px 32px rgba(249,115,22,0.15);
}
.slide-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.slide-icon.orange { background: rgba(249,115,22,0.2); }
.slide-icon.amber  { background: rgba(251,191,36,0.18); }
.slide-icon.green  { background: rgba(22,163,74,0.18); }
.slide-icon.blue   { background: rgba(37,99,235,0.18); }
.slide-title { font-weight: 800; font-size: 0.95rem; color: var(--white); }
.slide-sub   { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 3px; }
.slide-price { margin-left: auto; font-family: var(--font-display); font-weight: 900; color: var(--orange-400); font-size: 0.95rem; white-space: nowrap; }

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

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 32px; }
.section-alt { background: var(--gray-50); }
.section-orange { background: linear-gradient(135deg, var(--orange-50), var(--white)); }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(249,115,22,0.1); color: var(--orange-700);
  font-size: 0.8rem; font-weight: 800; padding: 5px 16px; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.section-header { margin-bottom: 60px; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }
.section-title em { color: var(--orange-600); }
.section-desc { color: var(--gray-600); max-width: 600px; font-size: 1.1rem; line-height: 1.8; margin-top: 10px; }

/* ============================================================
   PACKAGES (3 แพ็กเกจหลัก)
   ============================================================ */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px,1fr)); gap: 28px; }
.package-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 40px 34px;
  position: relative; transition: all 0.35s; overflow: hidden;
}
.package-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.package-card:hover { border-color: var(--orange-300); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.package-card:hover::before { transform: scaleX(1); }
.package-card.featured {
  border-color: var(--orange-500);
  background: linear-gradient(160deg, var(--orange-50) 0%, var(--white) 50%);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.12), var(--shadow);
}
.package-card.featured::before { transform: scaleX(1); }
.package-card.featured:hover { box-shadow: 0 0 0 4px rgba(249,115,22,0.22), var(--shadow-lg); }
.package-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white); font-size: 0.75rem; font-weight: 800;
  padding: 6px 20px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(249,115,22,0.4); letter-spacing: 0.05em;
}
.package-icon { font-size: 3rem; margin-bottom: 20px; }
.package-name { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.package-target {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  background: rgba(249,115,22,0.1); color: var(--orange-700);
  padding: 4px 12px; border-radius: 8px; margin-bottom: 18px; letter-spacing: 0.04em;
}
.package-desc { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; min-height: 80px; }
.package-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gray-100); border: 1.5px solid var(--gray-200);
  border-radius: 10px; padding: 10px 16px; margin-bottom: 28px;
  font-size: 0.84rem; color: var(--gray-600); font-family: monospace;
  word-break: break-all;
}
.package-cta {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white); font-weight: 800; font-size: 1rem;
  padding: 15px 24px; border-radius: 12px; text-decoration: none; transition: all 0.25s;
  box-shadow: 0 5px 20px rgba(249,115,22,0.35); width: 100%; text-align: center;
}
.package-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.5); color: var(--white); text-decoration: none; }
.package-cta-alt {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--white); color: var(--orange-600);
  border: 2px solid var(--orange-400); font-weight: 800; font-size: 1rem;
  padding: 14px 24px; border-radius: 12px; text-decoration: none; transition: all 0.25s;
  width: 100%; text-align: center;
}
.package-cta-alt:hover { background: var(--orange-500); color: var(--white); transform: translateY(-2px); text-decoration: none; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  text-decoration: none; color: inherit; transition: all 0.3s;
  display: block; position: relative; overflow: hidden;
}
.service-card-top { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange-400), var(--orange-600)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.service-card:hover { border-color: var(--orange-300); box-shadow: var(--shadow-lg); transform: translateY(-6px); text-decoration: none; color: inherit; }
.service-card:hover .service-card-top { transform: scaleX(1); }
.service-emoji { font-size: 2.5rem; margin-bottom: 18px; display: block; transition: transform 0.3s; }
.service-card:hover .service-emoji { transform: scale(1.12); }
.service-name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 18px; }
.service-price { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--orange-600); display: flex; align-items: center; gap: 6px; }
.service-arrow { color: var(--gray-400); margin-left: auto; transition: transform 0.2s; }
.service-card:hover .service-arrow { transform: translateX(5px); color: var(--orange-500); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px,1fr)); gap: 22px; }
.why-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; transition: all 0.3s; }
.why-card:hover { border-color: var(--orange-300); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon { width: 58px; height: 58px; border-radius: 15px; background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(234,88,12,0.07)); border: 2px solid rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; transition: all 0.3s; }
.why-card:hover .why-icon { background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(234,88,12,0.12)); transform: scale(1.06); }
.why-title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.why-desc { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.price-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-xl); padding: 40px 32px; position: relative; transition: all 0.3s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--orange-500); background: linear-gradient(160deg, var(--orange-50) 0%, var(--white) 55%); box-shadow: 0 0 0 4px rgba(249,115,22,0.12), var(--shadow); }
.price-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); color: var(--white); font-size: 0.75rem; font-weight: 800; padding: 6px 20px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 14px rgba(249,115,22,0.4); }
.price-name { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; color: var(--navy); margin-bottom: 6px; }
.price-slides { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 24px; }
.price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 6px; letter-spacing: -0.03em; }
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-amount.custom { font-size: 1.8rem; }
.price-note { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 30px; }
.price-divider { height: 1px; background: var(--gray-200); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--gray-700); }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }
.pricing-note { margin-top: 32px; background: rgba(249,115,22,0.08); border: 2px solid rgba(249,115,22,0.2); border-radius: var(--radius); padding: 20px 24px; font-size: 0.95rem; color: var(--gray-700); display: flex; align-items: center; gap: 14px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; position: relative; }
.steps-connector { position: absolute; top: 38px; left: calc(16.67% + 30px); right: calc(16.67% + 30px); height: 2px; background: linear-gradient(90deg, var(--orange-400), var(--orange-600)); z-index: 0; border-radius: 2px; }
.step { text-align: center; position: relative; z-index: 1; background: var(--white); border-radius: var(--radius-lg); padding: 38px 26px; border: 2px solid var(--gray-200); transition: all 0.3s; }
.step:hover { border-color: var(--orange-300); box-shadow: var(--shadow); transform: translateY(-5px); }
.step-num { width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); color: var(--white); font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; box-shadow: 0 6px 24px rgba(249,115,22,0.45); transition: all 0.3s; }
.step:hover .step-num { transform: scale(1.1); box-shadow: 0 10px 32px rgba(249,115,22,0.55); }
.step-title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; }

/* ============================================================
   ARTICLE / BLOG PAGE
   ============================================================ */
.article-hero { background: linear-gradient(140deg, var(--navy) 0%, #1a1028 50%, #0d1a33 100%); padding: 140px 32px 80px; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 65%); pointer-events: none; }
.article-hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.article-cat { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); color: var(--orange-300); font-size: 0.82rem; font-weight: 700; padding: 6px 16px; border-radius: 100px; margin-bottom: 22px; letter-spacing: 0.07em; text-transform: uppercase; }
.article-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--white); margin-bottom: 20px; }
.article-hero h1 em { color: var(--orange-400); }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.article-body { max-width: 860px; margin: 0 auto; padding: 60px 32px 40px; }
.article-body h2 { font-size: clamp(1.5rem,2.5vw,2rem); margin: 40px 0 14px; padding-left: 14px; border-left: 5px solid var(--orange-500); }
.article-body h3 { font-size: 1.3rem; margin: 28px 0 10px; color: var(--orange-700); }
.article-body p  { font-size: 1.1rem; margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { font-size: 1.05rem; margin-bottom: 8px; }
.article-body strong { color: var(--navy); }
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 0.95rem; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.article-body th { background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); color: var(--white); padding: 14px 18px; text-align: left; font-weight: 800; font-size: 1rem; }
.article-body td { padding: 12px 18px; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.article-body tr:nth-child(even) td { background: var(--orange-50); }
.article-body .faq-item { border: 2px solid var(--gray-200); border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.article-body .faq-item.open { border-color: var(--orange-300); }
.article-body .faq-q { width: 100%; text-align: left; padding: 20px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; font-size: 1rem; color: var(--navy); background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: background 0.2s; }
.article-body .faq-q:hover { background: var(--orange-50); }
.article-body .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(249,115,22,0.1); color: var(--orange-600); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: all 0.3s; }
.article-body .faq-item.open .faq-icon { background: var(--orange-500); color: var(--white); transform: rotate(45deg); }
.article-body .faq-a { padding: 0 26px; max-height: 0; overflow: hidden; font-size: 0.98rem; color: var(--gray-600); line-height: 1.8; transition: max-height 0.38s ease, padding 0.38s; }
.article-body .faq-item.open .faq-a { max-height: 300px; padding: 0 26px 22px; }
.article-cta-box { background: linear-gradient(135deg, var(--navy), #1a1028); color: var(--white); border-radius: var(--radius-lg); padding: 36px; margin: 36px 0; text-align: center; position: relative; overflow: hidden; }
.article-cta-box::before { content: ''; position: absolute; top: -30%; right: -10%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%); pointer-events: none; }
.article-cta-box h3 { font-size: 1.4rem; margin-bottom: 10px; position: relative; z-index: 1; }
.article-cta-box p { font-size: 0.95rem; color: rgba(255,255,255,0.72); margin-bottom: 20px; position: relative; z-index: 1; }
.related-articles { padding: 60px 32px; background: var(--gray-50); }
.related-articles h2 { font-size: 1.6rem; text-align: center; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 18px; max-width: 860px; margin: 0 auto; }
.related-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 22px; text-decoration: none; color: inherit; transition: all 0.25s; display: block; }
.related-card:hover { border-color: var(--orange-300); box-shadow: var(--shadow); transform: translateY(-3px); text-decoration: none; color: inherit; }
.related-cat { font-size: 0.75rem; font-weight: 700; color: var(--orange-600); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.related-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); line-height: 1.45; }

/* ============================================================
   CLUSTER (internal links)
   ============================================================ */
.cluster-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(215px,1fr)); gap: 14px; }
.cluster-item { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 18px 22px; text-decoration: none; color: inherit; transition: all 0.25s; display: flex; align-items: center; gap: 14px; }
.cluster-item:hover { border-color: var(--orange-300); box-shadow: var(--shadow); transform: translateY(-2px); text-decoration: none; color: inherit; }
.cluster-emoji { font-size: 1.6rem; flex-shrink: 0; transition: transform 0.25s; }
.cluster-item:hover .cluster-emoji { transform: scale(1.15); }
.cluster-text-title { font-weight: 800; font-size: 0.9rem; color: var(--navy); }
.cluster-text-sub { font-size: 0.77rem; color: var(--gray-600); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s; }
.faq-item.open { border-color: var(--orange-300); }
.faq-q { width: 100%; text-align: left; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; font-size: 1rem; color: var(--navy); background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: background 0.2s; }
.faq-q:hover { background: var(--orange-50); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(249,115,22,0.1); color: var(--orange-600); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--orange-500); color: var(--white); transform: rotate(45deg); }
.faq-a { padding: 0 28px; max-height: 0; overflow: hidden; font-size: 0.98rem; color: var(--gray-600); line-height: 1.8; transition: max-height 0.38s ease, padding 0.38s; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 22px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; max-width: 900px; margin: 0 auto; }
.contact-box { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 4px 28px rgba(0,0,0,0.06); }
.contact-row { display: flex; align-items: flex-start; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.contact-row:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.75rem; font-weight: 800; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.contact-info-value { font-weight: 700; font-size: 1rem; color: var(--navy); text-decoration: none; display: block; transition: color 0.2s; }
.contact-info-value:hover { color: var(--orange-600); }
.contact-cta-side { display: flex; flex-direction: column; gap: 18px; }
.line-cta-card { background: linear-gradient(135deg, #06c755, #04a844); border-radius: var(--radius-lg); padding: 34px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.line-cta-card::before { content: ''; position: absolute; top: -40%; right: -20%; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.12); pointer-events: none; }
.line-cta-icon { font-size: 2.8rem; margin-bottom: 12px; }
.line-cta-title { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 7px; }
.line-cta-id { font-size: 1.4rem; font-weight: 900; font-family: var(--font-display); margin-bottom: 18px; }
.btn-line { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--white); color: #06c755; font-weight: 800; font-size: 0.95rem; padding: 12px 24px; border-radius: 10px; text-decoration: none; transition: all 0.25s; width: 100%; font-family: var(--font-body); }
.btn-line:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); color: #059641; text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.online-badge { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 18px 22px; display: flex; align-items: center; gap: 14px; font-size: 0.9rem; }
.online-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: pulse-dot 2s infinite; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(140deg, var(--navy) 0%, #1a1028 50%, #0d1a33 100%); padding: 96px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-banner-orb1 { position: absolute; top: -30%; right: -5%; width: 550px; height: 550px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 65%); pointer-events: none; }
.cta-banner-orb2 { position: absolute; bottom: -30%; left: -5%; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgba(234,88,12,0.12) 0%, transparent 65%); pointer-events: none; }
.cta-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.25; letter-spacing: -0.02em; }
.cta-title em { color: var(--orange-400); }
.cta-desc { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.8; }
.cta-checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 40px; }
.cta-check { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 600; }
.cta-check-icon { color: var(--green); }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-2); color: rgba(255,255,255,0.62); padding: 64px 32px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2.5fr 1fr 1fr; gap: 56px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: var(--orange-400); }
.footer-tagline { font-size: 0.88rem; line-height: 1.8; max-width: 320px; }
.footer-col-title { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange-400); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   STICKY BAR
   ============================================================ */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: rgba(15,20,34,0.97); backdrop-filter: blur(16px); border-top: 1px solid rgba(249,115,22,0.2); padding: 12px 24px; display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.sticky-bar.show { transform: translateY(0); }
.sticky-bar-text { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.sticky-bar-text strong { color: var(--white); }
.sticky-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 9px; font-weight: 800; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; font-family: var(--font-body); }
.sticky-line { background: #06c755; color: var(--white); }
.sticky-line:hover { background: #05b34b; color: var(--white); text-decoration: none; transform: translateY(-2px); }
.sticky-orange { background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); color: var(--white); box-shadow: 0 4px 14px rgba(249,115,22,0.4); }
.sticky-orange:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.55); color: var(--white); text-decoration: none; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .section { padding: 72px 22px; }
  .steps-row { grid-template-columns: 1fr; gap: 18px; }
  .steps-connector { display: none; }
  body { font-size: 17px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .sticky-bar-text { display: none; }
  .hero { padding: 100px 22px 70px; }
}

/* WP Admin Bar */
.admin-bar .navbar { top: 32px; }
.admin-bar .nav-mobile { top: calc(70px + 32px); }
@media (max-width: 782px) { .admin-bar .navbar { top: 46px; } .admin-bar .nav-mobile { top: calc(70px + 46px); } }
body.home .site-main { padding-top: 0; }
