/* ==========================================================================
   JUST ASK DOUG - MAIN & ALL PAGES STYLESHEET (PIXEL ACCURATE)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-display: 'Lilita One', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Colors */
  --bg-page: #FFF9F0;
  --bg-cream-light: #FDF4E5;
  --bg-orange: #FFAA01;
  --bg-orange-dark: #FF8A00;
  --bg-orange-coral: #FF7843;
  --text-dark: #1E120A;
  --text-body: #3D291D;
  --text-muted: #6B5E55;
  --btn-dark: #23120B;
  --btn-dark-hover: #3E2114;
  --footer-bg: #FCEFD7;
  --border-subtle: #E6D8C8;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(45, 23, 11, 0.05);
  --shadow-md: 0 10px 28px rgba(45, 23, 11, 0.08);
  --shadow-lg: 0 18px 45px rgba(45, 23, 11, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 80% 12%, rgba(255, 234, 186, 0.7) 0%, transparent 45%),
    radial-gradient(circle at 10% 45%, rgba(255, 225, 160, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(255, 230, 175, 0.5) 0%, transparent 40%);
  background-repeat: no-repeat;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header / Navbar --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 249, 240, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 219, 206, 0.55);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 249, 240, 0.98);
  box-shadow: 0 6px 24px rgba(45, 23, 11, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E87A5D;
  border-radius: var(--radius-pill);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link.active {
  color: #E87A5D;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #E87A5D;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-get-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn-dark);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 14px rgba(38, 19, 11, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-get-app:hover {
  background-color: var(--bg-orange);
  color: var(--btn-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 170, 1, 0.4);
}

.canada-badge {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.canada-badge:hover {
  transform: rotate(10deg) scale(1.12);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  cursor: pointer;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 4px;
  transition: 0.3s;
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 86px;
  left: 0;
  width: 100%;
  background: var(--bg-page);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--border-subtle);
  transform: translateY(-150%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.mobile-nav.open {
  transform: translateY(0);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 70px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 470px;
}

.hero-logo-box {
  background: #FFFFFF;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 6px;
}

.hero-brand-graphic {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.hero-pill {
  background-color: var(--bg-orange);
  color: #FFFFFF;
  padding: 18px 24px;
  border-radius: 18px;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 6px 20px rgba(255, 170, 1, 0.28);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 170, 1, 0.42);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-img-card {
  width: 100%;
  max-width: 420px;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(255, 170, 1, 0.28);
  animation: heroFloat 5s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(-14px); }
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thinking-section {
  padding: 50px 0 90px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 38px;
  line-height: 1.6;
}

.thinking-card {
  background: #FFFFFF;
  border-radius: 36px;
  padding: 34px 50px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(60, 30, 10, 0.05);
  border: 1px solid #F0E2D0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.thinking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(60, 30, 10, 0.09);
}

.thinking-avatar-frame {
  width: 130px;
  height: 130px;
  border-radius: 28px;
  background: #FFF6E7;
  overflow: hidden;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.03);
}

.thinking-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  animation: avatarBreathe 4s ease-in-out infinite;
}

@keyframes avatarBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.thinking-text {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.thinking-text .orange {
  color: var(--bg-orange-coral);
  position: relative;
}

.thinking-text .cursor {
  display: inline-block;
  width: 3px;
  height: 34px;
  background-color: var(--bg-orange-coral);
  margin-left: 2px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ==========================================================================
   GET THE APP SECTION
   ========================================================================== */
.get-app-section {
  padding: 50px 0 90px;
}

.get-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.get-app-visuals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.doug-stand-img {
  width: 175px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(45, 23, 11, 0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.doug-stand-img:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.app-screen-mockup {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.app-screen-mockup:hover {
  transform: scale(1.04) translateY(-4px);
}

.get-app-info h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.get-app-info p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.download-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: block;
}

.download-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge {
  height: 42px;
  width: auto;
  border-radius: 6px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.05);
}

/* ==========================================================================
   KEY FEATURES SECTION
   ========================================================================== */
.features-section {
  padding: 50px 0 100px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.features-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 12px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-row:hover {
  background: rgba(253, 241, 221, 0.45);
  transform: translateX(8px);
}

.feature-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FCEFD8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
}

.feature-row:hover .feature-circle-icon {
  transform: scale(1.12) rotate(6deg);
  background-color: var(--bg-orange);
}

.feature-circle-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.feature-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.features-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-backdrop-box {
  background: #FDF1DD;
  border-radius: 36px;
  width: 340px;
  height: 250px;
  position: absolute;
  z-index: 1;
}

.features-phone-img {
  width: 205px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.12));
  transition: transform 0.4s ease;
}

.features-mockup-wrapper:hover .features-phone-img {
  transform: translateY(-6px) scale(1.02);
}

/* ==========================================================================
   PAGE: HOW TO USE JAD (YOUTUBE VIDEO FRAMES & PHONE MOCKUPS)
   ========================================================================== */
.how-to-section {
  padding-top: 40px;
}

.how-to-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  padding: 30px 0 80px;
}

.how-to-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-to-title {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 22px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.phone-video-frame {
  width: 100%;
  max-width: 300px;
  height: 570px;
  background-color: #0E0E0E;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(45, 23, 11, 0.15), inset 0 0 0 2px #262626;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.phone-video-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(45, 23, 11, 0.22);
}

.screen-content {
  background-color: #000000;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.youtube-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 30px;
  background-color: #000;
}

/* ==========================================================================
   PAGE: SUPPORT
   ========================================================================== */
.support-header-section {
  padding-top: 48px;
  padding-bottom: 20px;
}

.support-main-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.support-main-subtitle {
  font-size: 1.02rem;
  color: #665A52;
  margin-bottom: 32px;
}

.faq-section-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.faq-section {
  padding: 0 0 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: background-color 0.25s ease;
}

.faq-question {
  width: 100%;
  background: transparent;
  padding: 16px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #FF7843;
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-icon-toggle {
  font-size: 1.25rem;
  font-weight: 600;
  width: 16px;
  display: inline-block;
  color: inherit;
}

.faq-icon-arrow {
  font-size: 1.3rem;
  color: #55443B;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
  line-height: 1;
}

.faq-item.active .faq-question {
  color: #FFAA01;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(90deg);
  color: #FFAA01;
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  background-color: #30180E;
  color: #FFFFFF;
  padding: 22px 28px;
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 0;
  animation: answerSlide 0.3s ease;
}

@keyframes answerSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.support-form-section {
  padding: 10px 0 80px;
}

.support-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.support-form-subtitle {
  font-size: 0.98rem;
  color: #665A52;
  margin-bottom: 36px;
}

.support-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-col-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-row-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-row-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-row-desc {
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}

.contact-email-link {
  color: var(--text-dark);
  text-decoration: underline;
  font-weight: 600;
}

.contact-email-link:hover {
  color: #FF7843;
}

.support-form-card {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-input, .form-textarea {
  width: 100%;
  background-color: #FFF5E5;
  border: 1px solid #70635A;
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #7D6F66;
}

.form-input:focus, .form-textarea:focus {
  border-color: #FFAA01;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(255, 170, 1, 0.25);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  align-self: flex-start;
  background-color: #23120B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 9px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background-color: #FFAA01;
  color: #23120B;
}

/* ==========================================================================
   PAGE: DELETE ACCOUNT
   ========================================================================== */
.delete-account-section {
  padding-top: 48px;
  padding-bottom: 70px;
}

.warning-callout-card {
  margin: 30px 0;
  background-color: #FFFDF9;
  border: 1px solid rgba(234, 219, 206, 0.8);
  border-radius: 12px;
  padding: 24px 28px;
}

.warning-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.warning-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
}

/* ==========================================================================
   FOOTER & BACK TO TOP
   ========================================================================== */
.site-footer {
  background-color: var(--footer-bg);
  border-top: 1px solid rgba(220, 195, 160, 0.4);
  padding: 34px 0 20px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 22px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.92rem;
  color: #5C4E46;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #E87A5D;
}

.footer-bottom {
  border-top: 1px solid rgba(220, 195, 160, 0.35);
  padding-top: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: #88796F;
}

.btn-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--btn-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 990;
  font-size: 1.1rem;
}

.btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-scroll-top:hover {
  background-color: var(--bg-orange);
  color: var(--btn-dark);
  transform: translateY(-3px) scale(1.08);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .how-to-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid, .get-app-grid, .features-grid, .support-form-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    max-width: 100%;
  }

  .get-app-visuals {
    order: 2;
  }

  .get-app-info {
    order: 1;
  }

  .download-row {
    justify-content: center;
  }

  .features-items {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .how-to-grid {
    grid-template-columns: 1fr;
  }

  .thinking-card {
    flex-direction: column;
    padding: 24px;
    gap: 18px;
  }

  .thinking-text {
    font-size: 1.8rem;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}
