.elementor-3363 .elementor-element.elementor-element-87f95cb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3363 .elementor-element.elementor-element-87f95cb:not(.elementor-motion-effects-element-type-background), .elementor-3363 .elementor-element.elementor-element-87f95cb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0A1628;}.elementor-3363 .elementor-element.elementor-element-0d0f993{margin:-21px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-3363 .elementor-element.elementor-element-cbe38b1{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-3363 .elementor-element.elementor-element-334d733{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + -20px) 0px;}.elementor-3363 .elementor-element.elementor-global-3657{margin:-24px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS */<!-- ═══ SECTION 01: SHARED STYLES ═══ -->
<!-- WordPress: Custom HTML block. Place this ONCE at the very top of the page,  -->
<!-- above all other section blocks. Contains all CSS needed by every section.   -->

<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">

<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #B5C60C;
  --blue: #0057B8;
  --dark: #0D1117;
  --dark2: #161B22;
  --dark3: #1C2128;
  --light: #F4F6F8;
  --light2: #E8ECF0;
  --white: #FFFFFF;
  --gray: #8B949E;
  --text-light: #C9D1D9;
  --color-text-primary: #C9D1D9;
  --color-text-secondary: #8B949E;
  --color-text-tertiary: #555;
  --color-background-secondary: #1C2128;
  --color-border-tertiary: rgba(255,255,255,0.08);
  --border-radius-lg: 14px;
  --border-radius-md: 10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ── HERO ── */
.hero {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 40px 80px; text-align: center;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,87,184,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(181,198,12,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,87,184,0.1);
  border: 1px solid rgba(0,87,184,0.2);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--blue); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero h1 .green { color: var(--green); }
.hero h1 .blue { color: var(--blue); }
.hero .hero-sub {
  font-size: 20px; color: var(--text-light);
  font-weight: 600; margin-bottom: 12px;
}
.hero .hero-desc {
  font-size: 16px; color: var(--gray);
  max-width: 640px; margin: 0 auto 40px; line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green); color: var(--dark);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #c8da0e; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(181,198,12,0.25); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.btn-blue {
  background: var(--blue); color: var(--white);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-blue:hover { background: #0066d6; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,87,184,0.3); }
.btn-outline-blue {
  background: transparent; color: var(--blue);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  border: 2px solid var(--blue); cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-blue:hover { background: rgba(0,87,184,0.1); }
.btn-white {
  background: var(--white); color: var(--dark);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.15); }

/* ── SECTIONS ── */
.section { padding: 100px 40px; }
.section-white { background: var(--white); color: var(--dark); }
.section-dark { background: var(--dark); }
.section-dark2 { background: var(--dark2); }
.section-dark3 { background: var(--dark3); }
.section-light { background: var(--light); color: var(--dark); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: ''; width: 24px; height: 1px; background: currentColor;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--gray);
  max-width: 700px; margin: 0 auto; line-height: 1.7;
}
.section-white .section-title { color: var(--dark); }
.section-white .section-subtitle { color: #555; }
.section-white .section-label { color: var(--blue); }
.section-light .section-label { color: var(--blue); }

/* ── HEATMAP ── */
.heatmap-wrapper {
  max-width: 1100px; margin: 0 auto;
  background: var(--dark3); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px 36px 36px;
}
#map svg { border-radius: var(--border-radius-lg); overflow: hidden; display: block; }
#panel::-webkit-scrollbar { width: 4px; }
#panel::-webkit-scrollbar-track { background: transparent; }
#panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
.stat-box {
  background: var(--color-background-secondary);
  border-radius: var(--border-radius-md);
  padding: 10px 18px; text-align: center;
}
.stat-box p:first-child { font-size: 11px; color: var(--color-text-secondary); margin: 0 0 2px; }
.stat-box p:last-child { font-size: 22px; font-weight: 600; margin: 0; color: var(--color-text-primary); }

/* ── POSITIVE RESPONSE LOOP ── */
.pr-loop-container {
  position: relative; width: 420px; height: 420px; margin: 0 auto 60px;
}
.pr-orb {
  position: absolute; width: 100px; height: 100px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; text-align: center;
  background: rgba(0,87,184,0.15);
  border: 2px solid var(--blue);
  color: var(--white);
  transition: all 0.6s ease;
  z-index: 2;
}
.pr-orb.active {
  background: rgba(181,198,12,0.2);
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(181,198,12,0.4), 0 0 60px rgba(181,198,12,0.15);
}
.pr-orb-top { top: 0; left: 50%; transform: translateX(-50%); }
.pr-orb-right { top: 50%; right: 0; transform: translateY(-50%); }
.pr-orb-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.pr-orb-left { top: 50%; left: 0; transform: translateY(-50%); }
.pr-arrow { position: absolute; z-index: 1; }
.pr-arrow svg { overflow: visible; }
.pr-arrow svg path.arrow-track { fill: none; stroke: rgba(0,87,184,0.2); stroke-width: 2; }
.pr-arrow svg path.arrow-glow {
  fill: none; stroke: var(--green); stroke-width: 3;
  stroke-dasharray: 40 200; stroke-dashoffset: 0;
  stroke-linecap: round; opacity: 0;
  filter: drop-shadow(0 0 6px rgba(181,198,12,0.6));
}
.pr-arrow svg polygon { fill: rgba(0,87,184,0.3); transition: fill 0.4s; }
.pr-arrow.active svg polygon {
  fill: var(--green);
  filter: drop-shadow(0 0 6px rgba(181,198,12,0.6));
}
.pr-descriptions { max-width: 800px; margin: 0 auto; }
.pr-desc-item {
  background: rgba(0,87,184,0.05);
  border: 1px solid rgba(0,87,184,0.1);
  border-radius: 14px; padding: 28px 32px;
  margin-bottom: 16px; transition: all 0.4s;
}
.pr-desc-item.active {
  border-color: rgba(181,198,12,0.3);
  background: rgba(181,198,12,0.04);
}
.pr-desc-item h4 {
  font-size: 16px; font-weight: 700; color: var(--blue);
  margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.pr-desc-item h4 .step-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.pr-desc-item.active h4 { color: var(--green); }
.pr-desc-item.active h4 .step-dot { background: var(--green); box-shadow: 0 0 10px rgba(181,198,12,0.5); }
.pr-desc-item p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-left: 18px; }

/* ── SETUP CARDS ── */
.setup-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-bottom: 40px;
}
.setup-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 32px;
  transition: all 0.3s;
}
.setup-card:hover { border-color: rgba(0,87,184,0.2); transform: translateY(-2px); }
.setup-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.setup-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.setup-card a.email-link {
  color: var(--green); font-weight: 600; font-size: 14px;
  text-decoration: underline; text-underline-offset: 3px;
}
.setup-card a.email-link:hover { color: #c8da0e; }

/* ── BENEFIT CARDS ── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: var(--light); border: 1px solid var(--light2);
  border-radius: 14px; padding: 28px; transition: all 0.3s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: var(--blue);
}
.benefit-icon {
  width: 48px; height: 48px; margin-bottom: 16px;
  background: rgba(0,87,184,0.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.benefit-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* ── TIMELINE ── */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; max-width: 1000px; margin: 0 auto 48px;
}
.timeline::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px; background: rgba(255,255,255,0.1);
}
.timeline-step { text-align: center; position: relative; padding: 0 16px; }
.timeline-num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: rgba(181,198,12,0.1); border: 2px solid var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--green);
  position: relative; z-index: 2;
}
.timeline-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.timeline-step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── UPDATE CARDS ── */
.update-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.update-card {
  background: var(--light); border: 1px solid var(--light2);
  border-radius: 12px; padding: 24px; text-align: center;
  cursor: pointer; transition: all 0.3s;
}
.update-card:hover {
  border-color: var(--blue); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.update-card-icon {
  width: 44px; height: 44px; margin: 0 auto 12px;
  background: rgba(0,87,184,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.update-card h4 { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.4; }

/* ── CONTACT CARDS ── */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto 40px;
}
.contact-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 32px; text-align: center; transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(181,198,12,0.2); transform: translateY(-2px); }
.contact-card-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: rgba(181,198,12,0.08); border: 1px solid rgba(181,198,12,0.15);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.contact-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.contact-card a { color: var(--green); font-weight: 600; }

/* ── FINAL BANNER ── */
.final-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #003d80 100%);
  padding: 80px 40px; text-align: center;
}
.final-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.final-banner p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.final-banner-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--white); border-radius: 20px;
  max-width: 640px; width: 100%; max-height: 90vh;
  overflow-y: auto; color: var(--dark); position: relative;
}
.modal-header {
  padding: 28px 32px 20px; border-bottom: 1px solid var(--light2);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; background: var(--white);
  border-radius: 20px 20px 0 0; z-index: 2;
}
.modal-header h3 { font-size: 20px; font-weight: 800; }
.modal-close {
  width: 36px; height: 36px; background: var(--light);
  border: none; border-radius: 50%; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.modal-close:hover { background: var(--light2); }
.modal-body { padding: 24px 32px 32px; }
.pr-code-item { padding: 14px 0; border-bottom: 1px solid var(--light2); }
.pr-code-item:last-child { border-bottom: none; }
.pr-code-num { font-size: 14px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.pr-code-title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.pr-code-desc { font-size: 13px; color: #666; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-group label .req { color: #e74c3c; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--light2); border-radius: 10px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  background: var(--white); color: var(--dark);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all 0.25s; margin-top: 8px;
}
.form-submit:hover { background: #0066d6; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success svg { width: 64px; height: 64px; margin-bottom: 16px; }
.form-success h4 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: #666; }

/* ── TICKET TOOLTIP ── */
.ticket-tooltip-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.ticket-tooltip-overlay.visible { opacity: 1; pointer-events: auto; }
.ticket-tooltip-box {
  background: #fff; border-radius: 14px; padding: 40px 44px 36px;
  text-align: center; max-width: 560px; width: 92%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.06);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0; position: relative;
}
.ticket-tooltip-overlay.visible .ticket-tooltip-box { transform: translateY(0) scale(1); opacity: 1; }
.ticket-tooltip-close {
  position: absolute; top: 14px; right: 16px; width: 28px; height: 28px;
  border: none; background: rgba(0,0,0,0.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #888; font-size: 16px; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.ticket-tooltip-close:hover { background: rgba(0,0,0,0.12); color: #333; }
.ticket-tooltip-box h3 {
  font-size: 1.1rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: #1a1a1a; margin-bottom: 28px; line-height: 1.4;
}
.ticket-tooltip-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ticket-tooltip-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 8px; cursor: pointer;
  transition: all 0.25s; white-space: nowrap; min-width: 160px;
}
.ticket-tooltip-btn-pro { background: #B5C60C; color: #111; box-shadow: 0 4px 14px rgba(181,198,12,0.3); }
.ticket-tooltip-btn-pro:hover { background: #a3b20a; box-shadow: 0 6px 22px rgba(181,198,12,0.5); transform: translateY(-2px); }
.ticket-tooltip-btn-home { background: transparent; color: #1a1a1a; border: 2px solid #1a1a1a; }
.ticket-tooltip-btn-home:hover { border-color: #B5C60C; color: #B5C60C; transform: translateY(-2px); }
.ticket-weather-section { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(0,87,184,0.12); }
.ticket-weather-header { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.ticket-weather-header svg { width: 18px; height: 18px; color: #0057B8; }
.ticket-weather-header h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #0057B8; margin: 0; }
.ticket-weather-location { font-size: 11px; color: #666; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.ticket-weather-location svg { width: 12px; height: 12px; color: #B5C60C; }
.ticket-weather-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.weather-day-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 4px 8px; border-radius: 10px;
  background: linear-gradient(180deg, rgba(0,87,184,0.06) 0%, rgba(181,198,12,0.04) 100%);
  border: 1px solid rgba(0,87,184,0.08); transition: all 0.25s ease;
}
.weather-day-card:hover { background: linear-gradient(180deg, rgba(0,87,184,0.12) 0%, rgba(181,198,12,0.08) 100%); border-color: rgba(0,87,184,0.2); transform: translateY(-2px); }
.weather-day-card.today { background: linear-gradient(180deg, rgba(0,87,184,0.14) 0%, rgba(181,198,12,0.08) 100%); border-color: #0057B8; box-shadow: 0 2px 8px rgba(0,87,184,0.15); }
.weather-day-name { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #0057B8; margin-bottom: 6px; }
.weather-day-card.today .weather-day-name { color: #B5C60C; }
.weather-day-icon { font-size: 22px; line-height: 1; margin-bottom: 6px; }
.weather-day-temps { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.weather-day-high { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.weather-day-low { font-size: 11px; font-weight: 500; color: #888; }
.weather-day-desc { font-size: 8px; font-weight: 500; color: #666; text-align: center; margin-top: 4px; line-height: 1.3; }
.ticket-weather-loading { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 0; color: #888; font-size: 12px; }
.ticket-weather-loading .weather-spinner { width: 24px; height: 24px; border: 2.5px solid rgba(0,87,184,0.15); border-top-color: #0057B8; border-radius: 50%; animation: weatherSpin 0.8s linear infinite; }
@keyframes weatherSpin { to { transform: rotate(360deg); } }
.ticket-weather-error { font-size: 11px; color: #999; text-align: center; padding: 16px 0; line-height: 1.5; }
.ticket-dig-tip { margin-top: 14px; padding: 10px 14px; border-radius: 8px; font-size: 11px; font-weight: 600; line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; text-align: left; }
.ticket-dig-tip .dig-tip-icon { flex-shrink: 0; font-size: 16px; line-height: 1; margin-top: 1px; }
.ticket-dig-tip.tip-good { background: linear-gradient(135deg, rgba(181,198,12,0.12) 0%, rgba(0,87,184,0.06) 100%); border: 1px solid rgba(181,198,12,0.25); color: #4a6608; }
.ticket-dig-tip.tip-caution { background: linear-gradient(135deg, rgba(255,193,7,0.12) 0%, rgba(255,152,0,0.08) 100%); border: 1px solid rgba(255,193,7,0.3); color: #8a6d00; }
.ticket-dig-tip.tip-bad { background: linear-gradient(135deg, rgba(220,53,69,0.1) 0%, rgba(255,87,34,0.06) 100%); border: 1px solid rgba(220,53,69,0.25); color: #9a2a2a; }
.ticket-weather-credit { font-size: 9px; color: #aaa; text-align: center; margin-top: 10px; }
.ticket-weather-credit a { color: #0057B8; text-decoration: none; }

/* ── FEEDBACK POPUP ── */
.feedback-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.feedback-overlay.visible { opacity: 1; pointer-events: auto; }
.feedback-box {
  background: #fff; border-radius: 16px; padding: 40px 44px 36px;
  max-width: 580px; width: 94%; max-height: 92vh; overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,0,0,0.06);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0; position: relative; color: #1a1a1a;
}
.feedback-overlay.visible .feedback-box { transform: translateY(0) scale(1); opacity: 1; }
.feedback-close {
  position: absolute; top: 14px; right: 16px; width: 32px; height: 32px;
  border: none; background: rgba(0,0,0,0.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #888; font-size: 18px; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.feedback-close:hover { background: rgba(0,0,0,0.12); color: #333; }
.feedback-box h3 {
  font-size: 1.25rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.5px; color: #1a1a1a; margin-bottom: 12px;
  line-height: 1.35; text-align: center;
}
.feedback-box .feedback-intro { font-size: 13.5px; color: #555; line-height: 1.7; margin-bottom: 28px; text-align: center; }
.feedback-form { display: flex; flex-direction: column; gap: 18px; }
.feedback-row { display: flex; gap: 14px; }
.feedback-field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.feedback-field label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #444; }
.feedback-field label .required { color: #e74c3c; margin-left: 2px; }
.feedback-field input, .feedback-field select {
  padding: 11px 14px; border: 1.5px solid #ddd; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #1a1a1a;
  background: #fafafa; transition: border-color 0.25s, box-shadow 0.25s;
  outline: none; width: 100%; -webkit-appearance: none; appearance: none;
}
.feedback-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.feedback-field input:focus, .feedback-field select:focus { border-color: #B5C60C; box-shadow: 0 0 0 3px rgba(181,198,12,0.15); }
.feedback-field input.error, .feedback-field select.error { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,0.12); }
.feedback-radio-group { display: flex; flex-direction: column; gap: 6px; }
.feedback-radio-group label.group-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #444; margin-bottom: 4px; }
.feedback-radio-options { display: flex; gap: 10px; flex-wrap: wrap; }
.feedback-radio-option { position: relative; }
.feedback-radio-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.feedback-radio-option label {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 22px; border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: #555; background: #fafafa;
  cursor: pointer; transition: all 0.25s; text-transform: none; letter-spacing: 0;
}
.feedback-radio-option input[type="radio"]:checked + label { border-color: #B5C60C; background: rgba(181,198,12,0.1); color: #5a6808; box-shadow: 0 0 0 3px rgba(181,198,12,0.15); }
.feedback-radio-option label:hover { border-color: #B5C60C; color: #5a6808; }
.feedback-radio-group.error .feedback-radio-options label { border-color: #e74c3c; }
.feedback-field textarea {
  padding: 11px 14px; border: 1.5px solid #ddd; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #1a1a1a;
  background: #fafafa; transition: border-color 0.25s, box-shadow 0.25s;
  outline: none; width: 100%; resize: vertical; min-height: 100px; line-height: 1.55;
}
.feedback-field textarea:focus { border-color: #B5C60C; box-shadow: 0 0 0 3px rgba(181,198,12,0.15); }
.feedback-field textarea::placeholder { color: #aaa; }
.feedback-submit {
  margin-top: 8px; padding: 15px 36px; background: #B5C60C; color: #111;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; border: none; border-radius: 8px;
  cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 14px rgba(181,198,12,0.3);
  align-self: center;
}
.feedback-submit:hover { background: #a3b20a; box-shadow: 0 6px 22px rgba(181,198,12,0.5); transform: translateY(-2px); }
.feedback-error-msg { font-size: 12px; color: #e74c3c; text-align: center; min-height: 18px; margin-top: 4px; }

/* ── FADE UP ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  .hero { padding: 80px 20px 60px; min-height: 50vh; }
  .pr-loop-container { width: 300px; height: 300px; }
  .pr-orb { width: 76px; height: 76px; font-size: 9px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .setup-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .update-grid { grid-template-columns: 1fr 1fr; }
  .final-banner-buttons { flex-direction: column; align-items: center; }
  .ticket-tooltip-box { padding: 32px 24px 28px; max-height: 90vh; overflow-y: auto; }
  .ticket-tooltip-buttons { flex-direction: column; }
  .ticket-tooltip-btn { width: 100%; }
  .feedback-box { padding: 32px 22px 28px; }
  .feedback-row { flex-direction: column; gap: 18px; }
  .feedback-radio-options { flex-direction: column; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .update-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .pr-loop-container { width: 260px; height: 260px; }
  .pr-orb { width: 68px; height: 68px; font-size: 8px; }
}
</style>/* End custom CSS */