/* === ULTIMATE ARGUMENTATIVE ESSAY ORGANIZER - LANDING PAGE CSS === */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap');

html {
  scroll-behavior: smooth;
}

:root {
  --deep-teal: #004860;
  --bright-teal: #05C1B8;
  --light-teal: #84EBE6;
  --golden: #FFD466;
  --orange: #FF9900;
  --sun: #FFB800;
  --peach: #FF8F85;
  --light-pink: #FFA69E;
  --chalk-white: #F5FDFF;
}

body {
 font-family: "Poppins", sans-serif;  margin: 0;
  padding: 0;
  background: linear-gradient(90deg, #84EBE6, #FFD466, #FFA69E);
  color: #333;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
}


/* === HEADER === */
.header {
  background-color: var(--deep-teal);
  color: white;
  padding: 2rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
/* === Navigation Menu === */
.main-nav {
  background-color: #004860;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.5rem; /* match your current size */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo:hover {
  text-decoration: none;
  color:#FFD466; /* or whatever your original color is */
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FFD466;
}

/* Hide nav toggle on desktop */
@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }
}

/* === Mobile Navigation === */
@media (max-width: 768px) {


  .main-nav {
    padding: 0.5rem 1rem;
  }
  .nav-container {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .nav-logo {
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    background-color: #004860;
    display: none;
    text-align: center;
    transition: max-height 0.3s ease;
    overflow: hidden;
  }

  .nav-container.open .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 0.75rem 0;
  }
}


/* === HERO SECTION === */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

.hero-subtext {
  font-size: 1.125rem; /* or 1.25rem for even better readability */
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* === free version ===*/
  .demo-features {
    background-color: #f9f9f9;
    border-left: 6px solid #05C1B8;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    font-family: 'Segoe UI', sans-serif;
  }

  .demo-features h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2rem;
  }

  .demo-features ul {
    padding-left: 1.5rem;
    list-style: none;
  }

  .demo-features li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }

  .demo-features li strong {
    font-weight: 600;
  }

  .demo-features .upgrade-note {
    margin-top: 1rem;
    font-weight: bold;
    color: #c53c3c;
  }
/* === CTA BUTTON === */
.cta-button {
  background-color: #9c6ded;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: 	#0AD1CC;
  transform: scale(1.05);
}

.cta-free-trial {
  background-color: #fff;
  color: #3d3d3d;
  border: 2px solid #3d3d3d;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-free-trial:hover {
  background-color: #3d3d3d;
  color: #fff;
}

#tool-preview h2 {
  text-align: center; /* ⬅ Add this */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-teal);
}
#tool-preview p {
  font-size: 1.25rem
}
/* ====== General Video Styling ====== */
.video-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-teal);
}

.video-section {
  padding: 2rem;
  background-color: #05C1B8;
  text-align: center;
}

/* Standalone main overview video */
.video-section .video-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: #2a1933;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-card video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  object-fit: contain; /* Shows the entire video without cropping */
  background-color: #000; /* Optional: adds letterboxing instead of blank space */
}


.video-caption {
  text-align: center; /* ⬅ Add this */
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffff;
}

.info {
  font-weight: 600;
  font-size: 1.25rem;
  color: #FFA69E;
}
/* ====== Grid for Additional Videos ====== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-grid .video-card {
  background-color: #2a1933;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}


/* ====== Responsive Tweaks ====== */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .video-section .video-card {
    padding: 0.75rem;
  }

  .video-caption {
    font-size: 0.95rem;
  }
}

/* Responsive video wrapper */
.video-wrapper {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
}

/* Responsive iframe embed */
.responsive-video {
  width: 100%;
  max-width: 800px;
  height: 45vw; /* Makes height relative to screen width */
  max-height: 450px;
  border-radius: 12px;
  margin: 1rem auto 0;
  display: block;
}

/* Optional: refine paragraph text under video */
.video-wrapper p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 0.5rem auto;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .responsive-video {
    height: 56vw; /* Slightly taller on narrow screens */
  }

  .video-wrapper h3 {
    font-size: 1.2rem;
  }

  .video-wrapper p {
    font-size: 0.95rem;
  }
}

/* === FEATURES SECTION === */
.features {
  scroll-margin-top: 100px;
  padding: 3rem 1rem;
  background-color: white;
  text-align: center;
  border-top: 8px dashed var(--orange);
  border-bottom: 8px dashed var(--bright-teal);
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-teal);
}
.features h3 {
  font-size: 1.75rem;
}

.features p {
  font-size: 1.25rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.purchase-section {
  scroll-margin-top: 100px;
  background-color: #84EBE6;
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 3px solid #FF9900;
}

.purchase-box {
  max-width: 500px;
  margin: 2rem auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  font-size: 1.1rem;
}

#purchase p {
font-size: 1.25rem;
}

#purchase h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-teal);
}

.purchase-box h3 {
  margin-bottom: 1rem;
  color: #004860;
}

.purchase-box ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1rem;
}

.purchase-box ul li {
  padding: 0.3rem 0;
}

.price-tag {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #FF5D52;
}

.purchase-button {
  background-color: #9c6ded;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.purchase-button:hover {
  background-color: 	#0AD1CC;
}

.secure-note {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
}


@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* === FEATURE CARD === */
.feature-card {
  background-color: var(--chalk-white);
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 5px solid var(--bright-teal);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* === Testimonial Section === */
#testimonials {
  scroll-margin-top: 100px;
  background: linear-gradient(90deg, #84EBE6, #FFD466, #FFA69E);
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--sun);
}

#testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--deep-teal);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border-left: 6px solid var(--bright-teal);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.review {
  font-size: 1.2rem;
  font-style: italic;
  color: #444;
  margin-bottom: 0.5rem;
}

.reviewer {
  font-weight: bold;
  color: #222;
  font-size: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns:  auto;
  gap: 2rem;
  margin-top: 2rem;
}

/* === FAQ Section === */
#faq {
  background-color: #fdfdfd;
  padding: 3rem 1.5rem;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  border-top: 3px dashed var(--bright-teal);
  border-bottom: 3px dashed var(--orange);
}

#faq h2 {
  font-size: 2rem;
  color: var(--deep-teal);
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.25rem;
}

.faq-item p {
  font-size: 1.25rem;
  color: #555;
  margin: 0;
}


/* === ABOUT SECTION === */
.about {
  scroll-margin-top: 100px;
  background: linear-gradient(145deg, var(--peach), var(--light-pink));
  padding: 3rem 1rem;
  color: #000;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}


.about-photo img {
  width: 30em;
  border-radius: 16px;
  box-shadow: 0 6px 18px #9c6ded;
}

/* === WHAT'S INCLUDED === */
#included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

#included-grid p {
  font-size: 1.25rem;
}

@media (max-width: 1100px) {
  #included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #included-grid {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    width: 15rem;
  }
}


/* === contact ===*/
.contact-section {
  background: #fefefe;
  color: #2a1933;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--deep-teal, #05C1B8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.75rem 1.25rem;
  background-color: #FFA69E;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contact-form button:hover {
  background-color: #f58878;
}


/* === What's Included Section Enhancements === */

#included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.feature-card {
  background-color: #f5fdff;
  padding: 1.5rem;
  border-radius: 20px;
  border-left: 6px solid #05C1B8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-card h3 {
  color: #05C1B8;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* === Carousel Section === */
.carousel-section {
  scroll-margin-top: 100px;
  padding: 4rem 2rem;
  background: linear-gradient(90deg, #84EBE6, #FFD466, #FFA69E);
  text-align: center;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #004860;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.carousel-container {
  overflow: hidden;
  max-width: 800px;
  max-height: 700px;
  margin: 2rem auto 0 auto;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background-color: #2a1933;
  padding: 1.2rem;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  animation: scrollCarousel 60s linear infinite; /* ← was 15s or 20s */
}

.carousel-image {
  width: 40rem;         
  height: 37rem;  
  object-fit: cover;  
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  margin: 0 auto;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.carousel-caption {
  margin-top: 0.5rem;
  font-size: 2rem;
  color: #ffff;
  text-align: center;
}

@media (max-width: 768px) {
  .carousel-image {
    max-width: 95%;
  }
}


/* Animation */
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-300%); }
}

/* CTA Button (Access Code) */
.cta-button {
  background-color: #9c6ded;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: 	#0AD1CC;
  transform: scale(1.03);
}

.access-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.access-label {
  font-weight: bold;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.access-input {
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid #ffb800;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: 0.2s;
}

.access-input:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3);
}
@media (max-width: 768px) {
  .access-wrapper {
    width: 100%;
    padding: 0 1rem;
  }

  .access-input {
    max-width: 100%;
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
    padding: 14px;
  }
}


/* License link */
.license-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #6a1b9a;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.license-link:hover {
  color: #4a148c;
}

@media (max-width: 600px) {
  .feature-card {
    padding: 1rem;
  }
}
/* Sticky Banner */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #9c6ded;
  color: #FFD466;
  z-index: 999;
  font-family: 'Segoe UI', sans-serif;
  padding: .15rem;
  font-weight: bold;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

/* Banner Layout */
.banner-inner {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.banner-text {
  font-size: 0.85rem;
  line-height: 1.3;
  padding: 0 0.25rem;
}

/* Two-Button Layout: Left + Right */
.banner-buttons {
  display: flex;
  justify-content: space-between;
  width: 25%;
  gap: 0.5rem;
  padding-right: 2rem;
}

.banner-buttons a {
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  white-space: nowrap;
  width: 48%;
  text-align: center;
}

.demo-btn {
  background-color: #fff;
  color: #05C1B8;
}

.demo-btn:hover {
  background-color: #e0f9f7;
}

.buy-btn {
  background-color: #05C1B8;
  color: #fff;
}

.buy-btn:hover {
  background-color: #FFD466;
  color: #004860;
}

@media (max-width: 769px) {

   .banner-inner {
    justify-content: start;
  }

  .banner-text {

    font-size: 0.7rem;
  }

  .banner-buttons {
    flex: 0 0 auto;
    width: 25%;
  }

  .banner-buttons a {
    width: auto;
    font-size: 0.5rem;
  }
}

/* === FOOTER === */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  padding-bottom: 60px;
  font-size: 1.25rem;
  background-color: var(--deep-teal);
  color: #fff;
  font-weight: bold;
}

    /* Mobile tweaks */
    @media (max-width: 768px) {
  .main-footer {
    padding: 1rem;
  }
  .footer-text {
    font-size: 0.9rem;
  }
  .header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header-flex img {
    margin-bottom: 1rem;
  }

  .feature-grid,
   #included-grid {
    grid-template-columns: 1fr !important;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
  }
  .whats-included-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.included-card {
  flex: 1 1 300px;
  background-color: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.access-code-input {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 2px solid #00c6b8;
  font-size: 1rem;
  margin-right: 0.5rem;
  width: 180px;
}

.error-msg {
  color: red;
  display: none;
  margin-top: 0.5rem;
}

    }  #included-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .included-card {
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: white;
  }

  .included-image {
    width: 70%;
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 8px;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Mobile Typography Scaling */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

