/* ======================================
   1. VARIABLES
   ====================================== */

:root {
  --brand: #F47A20;        /* Exact aardwolf orange */
  --background: #ffffff;   /* Clean white */
  --text-main: #222222;    /* Neutral dark text */

  /* Header colors */
  --header-bg: #1A1A1A;    /* Soft black (logo-matched) */
  --header-text: #F47A20;  /* Exact aardwolf orange */
  --header-hover: #D96C1C; /* Slightly darker orange for hover */

  /* Legacy mappings */
  --dark-teal: var(--brand);
  --page-bg: var(--background);
  --light-bg: #f9f9f9;
  --text-dark: var(--text-main);
  --text: #444;
  --max-width: 1100px;
}





/* ======================================
   2. GLOBAL RESET
   ====================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 170px;
}









body {
  padding-bottom: 120px;
}




/* Images should never overflow their containers */
img {
  max-width: 100%;
  height: auto;
}

/* Form elements should inherit the site font */
button,
input,
textarea {
  font-family: inherit;
}


/* ======================================
   3. HEADER
   ====================================== */

header {
  width: 100%;
  padding: 40px 40px;   /* top/bottom 40px, left/right unchanged */


  display: flex;
  justify-content: space-between;
  align-items: center;

  background: var(--header-bg);
  color: var(--header-text);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* Header left side */

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}

/* Logo */

.portrait-box {
  width: 130px;
  height: 130px;
}



  background: var(--header-bg);
  border-radius: 12px;

  overflow: hidden;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Brand */

.brand-text {
  min-width: 0;
}

.brand-title a {
  color: var(--header-text);
  text-decoration: none;

  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
}
.brand-title {
  margin-top: -6px;
}

.brand-tagline {
  color: var(--header-text);
  font-size: 19px;
  opacity: 0.9;
  margin-top: 10px;
  line-height: 1.3;
}



/* ======================================
   4. NAVIGATION
   ====================================== */

nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

nav a {
  color: var(--header-text);
  text-decoration: none;

  margin-left: 26px;

  font-size: 20px;
  font-weight: 500;

  transition: color 0.3s ease;
}

nav a:last-child {
  margin-right: 32px;
}

nav a:hover {
  color: var(--header-hover);
}



/* Hamburger */

.menu-toggle {
  display: none;

  flex-direction: column;
  justify-content: center;

  cursor: pointer;

  width: 44px;
  height: 44px;

  flex-shrink: 0;
}

.menu-toggle span {
  height: 3px;
  width: 28px;

  background: var(--header-text);

  margin: 4px auto;

  border-radius: 2px;

  transition: 0.3s;
}


/* ======================================
   5. FOOTER
   ====================================== */

footer {
  background: #000;
  color: #fff;

  text-align: center;

  padding: 26px 20px;

  font-size: 0.85rem;

  border-top: 2px solid var(--header-hover);

  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-copy {
  margin: 0 0 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--header-hover);
}


/* ======================================
   6. HERO
   ====================================== */

.hero {
  background: #ffffff;

  padding: 80px 20px;

  text-align: center;

  /* Space for fixed header */
  margin-top: 130px;
}

.hero-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.15;

  font-weight: 700;

  color: var(--text-dark);

  margin: 0 0 20px;
}

.hero-subtext {
  font-size: clamp(17px, 2.5vw, 20px);

  color: var(--text);

  max-width: 750px;

  margin: 0 auto 40px;

  line-height: 1.6;
}
.page-content {
  background: #ffffff;
}

.suggested-uses-card {
    max-width: 700px;
    margin: 30px auto 50px auto; /* increased bottom spacing from 40px → 50px */
    padding: 25px 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
}


.suggested-uses-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.35rem;          /* same visual weight as “1 Submit Your Offer” */
    font-weight: 600;
}

.suggested-uses-card p {
    font-size: 1.1rem;
    line-height: 1.55;
    margin: 0;
}



/* ======================================
   7. BUTTONS
   ====================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;

  padding: 14px 28px;

  font-size: 18px;
  font-weight: 600;

  text-decoration: none;

  border-radius: 6px;

  transition: 0.25s ease;

  cursor: pointer;
}

.btn-primary {
  background: var(--header-bg);
  color: #fff;
}

.btn-primary:hover {
  background: var(--dark-teal);
  box-shadow: 0 0 12px rgba(0, 159, 175, 0.45);
}

.btn-secondary {
  background: transparent;

  border: 2px solid var(--header-hover);

  color: var(--header-bg);
}

.btn-secondary:hover {
  background: var(--header-hover);
  color: #000;
}


/* ======================================
   8. GLOBAL SECTION STYLES
   ====================================== */

.section-info,
.section-steps,
.section-resources,
.section-about,
.section-newsletter,
.section-cta {
  padding: 80px 20px;
}

.section-info,
.section-resources,
.section-newsletter {
  background: #fff;
}

.section-steps,
.section-about {
  background: var(--light-bg);
}

.section-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(28px, 4vw, 36px);

  line-height: 1.2;

  font-weight: 700;

  color: var(--text-dark);

  margin: 0 0 25px;
}

.section-text {
  font-size: 18px;

  color: var(--text);

  line-height: 1.6;

  margin: 0 0 50px;
}


/* ======================================
   9. INFORMATION GRID
   ====================================== */

.info-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px;
}

.info-box {
  background: var(--light-bg);

  border: 1px solid #eee;

  padding: 25px;

  border-radius: 10px;

  text-align: left;

  min-width: 0;
}

.info-box h3 {
  font-size: 22px;
  color: var(--header-bg);

  margin-top: 0;
}

.info-box p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}


/* ======================================
   10. HOW IT WORKS
   ====================================== */

.steps-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px;
}

.step-box {
  background: #fff;

  border: 1px solid #eee;

  padding: 30px 25px;

  border-radius: 10px;

  text-align: left;

  min-width: 0;
}

.step-box h3 {
  line-height: 1.3;
}

.step-box p {
  line-height: 1.6;
}

.step-number {
  width: 48px;
  height: 48px;

  background: var(--header-bg);
  color: #fff;

  font-size: 22px;
  font-weight: 700;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* ======================================
   11. RESOURCES
   ====================================== */

.resources-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px;
}

.resource-box {
  background: var(--light-bg);

  border: 1px solid #eee;

  padding: 25px;

  border-radius: 10px;

  text-align: left;

  display: flex;
  flex-direction: column;

  min-width: 0;
}

.resource-box h3 {
  line-height: 1.3;
}

.resource-box p {
  line-height: 1.6;
  flex-grow: 1;
}

.resource-link {
  font-size: 16px;
  font-weight: 600;

  color: var(--header-bg);

  text-decoration: none;
}

.resource-link:hover {
  color: var(--dark-teal);
}

.popular-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-large {
  display: inline-block;

  padding: 18px 36px;

  font-size: 1.25rem;
  font-weight: 600;

  margin-top: 10px;

  max-width: 100%;
}

/* ======================================
   12. ABOUT
   ====================================== */

.section-about {
  background: var(--light-bg);
}

.about-inner {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto;

  display: flex;
  align-items: center;

  gap: 40px;
}



.about-text {
  min-width: 0;
}

.about-text p {
  font-size: 18px;

  color: var(--text);

  line-height: 1.6;
}

.about-btn {
  margin-top: 10px;
}


.about-image {
  width: 260px;
  height: 260px;
  background: inherit;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* ======================================
   13. NEWSLETTER
   ====================================== */

.newsletter-inner {
  width: 100%;
  max-width: 700px;

  margin: 0 auto;

  text-align: center;
}

.newsletter-text {
  font-size: 18px;

  color: var(--text);

  margin-bottom: 30px;

  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;

  gap: 15px;

  margin-bottom: 20px;

  animation: fadeIn 0.6s ease-out;
}

.newsletter-form input {
  width: 100%;

  padding: 14px;

  font-size: 16px;

  border: 1px solid #ccc;

  border-radius: 6px;

  min-height: 50px;
}

.newsletter-form input:focus {
  outline: 2px solid rgba(0, 159, 175, 0.3);
  border-color: var(--header-bg);
}

.newsletter-form button {
  width: 100%;

  padding: 14px;

  font-size: 18px;

  border-radius: 6px;

  border: 0;

  cursor: pointer;
}


/* Trust box */

.trust-box {
  margin-top: 20px;

  padding-top: 15px;

  border-top: 1px solid rgba(232, 220, 194, 0.4);

  text-align: center;

  color: var(--header-hover);
}

.lock-icon svg {
  width: 18px;
  height: 18px;

  fill: var(--header-hover);

  vertical-align: middle;

  transition: transform 0.25s ease;
}

.lock-icon:hover svg {
  transform: scale(1.15);
}

.trust-line {
  font-size: 15px;

  margin: 4px 0;

  color: var(--header-hover);
}

.trust-gdpr {
  font-size: 13px;

  opacity: 0.85;

  margin: 2px 0;

  color: var(--header-hover);
}


/* ======================================
   14. CTA
   ====================================== */

.section-cta {
  background: linear-gradient(
    180deg,
    var(--header-bg) 0%,
    var(--dark-teal) 100%
  );

  color: #fff;

  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 38px);

  line-height: 1.2;

  margin: 0 0 25px;
}

.cta-text {
  font-size: 18px;

  line-height: 1.6;

  margin: 0 0 50px;
}

.cta-btn {
  background: #fff;

  color: var(--header-bg);

  padding: 14px 32px;

  font-size: 20px;

  font-weight: 700;

  border-radius: 6px;

  text-decoration: none;
}

.cta-btn:hover {
  background: var(--header-hover);
  color: #000;
}

.cta-center {
    text-align: center;
    margin-top: 25px;
}

/* ======================================
   15. SCROLL TO TOP
   ====================================== */

.scroll-top-btn {
  position: fixed;

  bottom: 25px;
  right: 25px;

  width: 48px;
  height: 48px;

  background: var(--header-bg);

  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.25s ease;

  z-index: 999;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  background: var(--dark-teal);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}


/* ======================================
   16. FADE ANIMATION
   ====================================== */

.fade-section {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ======================================
   17. INTERIOR PAGES
   ====================================== */

.page-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 130px 20px 40px; /* top, left/right, bottom */
  line-height: 1.6;
}


.about-section {
  margin-bottom: 60px;
}


/* ======================================
   18. CONTACT FORM
   ====================================== */

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 18px;

  margin: 40px 0;
}

.contact-form label {
  font-size: 18px;
  font-weight: 600;

  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 14px;

  font-size: 16px;

  border: 1px solid #ccc;

  border-radius: 6px;

  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form button {
  align-self: flex-start;

  padding: 14px 28px;

  font-size: 18px;
  font-weight: 600;

  border-radius: 6px;

  cursor: pointer;
}

.contact-logo-preview img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contact-logo-preview img {
    width: 120px;
    height: auto;
}



.preview-label {
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.contact-badge-preview img {
    width: 140px;
    height: auto;
}

.contact-logo-preview img {
    width: 120px;
    height: auto;
}

.contact-visuals {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers images */
    text-align: center;    /* centers labels */
    gap: 30px;
    margin: 40px 0;
}


.btn-primary {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}


/* ======================================
   19. TABLET
   ====================================== */

@media (max-width: 900px) {
  header {
    padding-left: 25px;
    padding-right: 25px;
  }

  .brand-title a {
    font-size: 36px;   /* was 32 */
  }

  .brand-tagline {
    font-size: 17px;   /* was 15 */
  }

  nav a {
    font-size: 19px;   /* was 18 */
    margin-left: 22px; /* was 15 */
  }



  .about-inner {
    gap: 30px;
  }

  .about-image {
    width: 220px;
    height: 220px;
    flex-basis: 220px;
  }
}

.featured-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-main);
}

#logo-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: -40px;
    margin-bottom: 30px;
}

#logo-row .feature-box {
    flex: 0 1 210px;
    max-width: 210px;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


#logo-row .feature-title {
    margin: 4px 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}


#logo-row .feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.feature-logo {
    width: 190px;
    height: auto;
    margin: 8px auto;
    display: block;
}


/* ======================================
   20. MOBILE
   ====================================== */

@media (max-width: 768px) {

  header {
    min-height: 100px;   /* was 90 */
    height: 100px;
    padding: 12px 18px;  /* was 8px 15px */
  }

  .header-left {
    gap: 14px;           /* was 10 */
    max-width: calc(100% - 60px);
  }

  .portrait-box {
    width: 82px;         /* was 70 */
    height: 84px;        /* was 72 */
  }

  .brand-title a {
    font-size: 24px;     /* was 21 */
  }

  .brand-tagline {
    font-size: 13px;     /* was 11 */
    margin-top: 6px;     /* was 4 */
  }

  nav a {
    padding: 16px 18px;  /* was 14px 10px */
    font-size: 19px;     /* was 18 */
  }



  /* ------------------------------
     MOBILE MENU
     ------------------------------ */

  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;

    top: 90px;
    left: 0;

    width: 100%;

    display: none;

    flex-direction: column;

    align-items: stretch;

    background: var(--header-bg);

    padding: 10px 20px 20px;

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  nav.active {
    display: flex;
  }

  nav a {
    width: 100%;

    margin: 0;

    padding: 14px 10px;

    text-align: center;

    font-size: 18px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  nav a:last-child {
    border-bottom: 0;
  }


  /* ------------------------------
     HERO
     ------------------------------ */

  .hero {
    margin-top: 90px;

    padding: 55px 18px 60px;
  }

  .hero-title {
    font-size: clamp(29px, 9vw, 38px);

    line-height: 1.12;
  }

  .hero-subtext {
    font-size: 17px;

    line-height: 1.55;

    margin-bottom: 30px;
  }


  /* ------------------------------
     BUTTONS
     ------------------------------ */

  .btn-primary,
  .btn-secondary {
    font-size: 17px;

    padding: 14px 20px;
  }

  .hero-buttons .btn-primary {
    display: block;

    width: 100%;

    max-width: 420px;

    margin: 0 auto;
  }


  /* ------------------------------
     SECTIONS
     ------------------------------ */

  .section-info,
  .section-steps,
  .section-resources,
  .section-about,
  .section-newsletter,
  .section-cta {
    padding: 60px 18px;
  }

  .section-title {
    font-size: clamp(27px, 8vw, 34px);

    line-height: 1.2;
  }

  .section-text {
    font-size: 17px;

    line-height: 1.6;

    margin-bottom: 35px;
  }


  /* ------------------------------
     GRIDS
     ------------------------------ */

  .info-grid,
  .steps-grid,
  .resources-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .info-box,
  .step-box,
  .resource-box {
    padding: 22px;

    text-align: left;
  }


  /* ------------------------------
     RESOURCE CTA
     ------------------------------ */

  .popular-cta {
    margin-top: 30px;
  }

  .btn-large {
    display: block;

    width: 100%;

    padding: 16px 18px;

    font-size: 18px;

    line-height: 1.4;
  }


  /* ------------------------------
     ABOUT
     ------------------------------ */

  .about-inner {
    flex-direction: column;

    text-align: center;

    gap: 30px;
  }

  .about-image {
    width: 190px;
    height: 190px;

    flex: 0 0 190px;
  }


  .about-text p {
    font-size: 17px;

    line-height: 1.6;
  }

  .about-btn {
    width: 100%;

    max-width: 350px;
  }


  /* ------------------------------
     NEWSLETTER
     ------------------------------ */

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    min-height: 52px;
  }

  .trust-gdpr {
    line-height: 1.5;
  }


  /* ------------------------------
     CTA
     ------------------------------ */

  .cta-title {
    font-size: clamp(28px, 8vw, 34px);
  }

  .cta-text {
    font-size: 17px;

    line-height: 1.6;

    margin-bottom: 40px;
  }

  .cta-btn {
    display: block;

    width: 100%;

    max-width: 380px;

    margin: 0 auto;

    font-size: 18px;
  }


  /* ------------------------------
     FOOTER
     ------------------------------ */

  footer {
    position: static;

    padding: 25px 15px;
  }

  .footer-links {
    flex-direction: column;

    gap: 12px;
  }

  .footer-copy {
    line-height: 1.5;
  }


  /* ------------------------------
     SCROLL BUTTON
     ------------------------------ */

  .scroll-top-btn {
    right: 15px;
    bottom: 20px;

    width: 44px;
    height: 44px;

    font-size: 23px;
  }


  /* ------------------------------
     INTERIOR PAGES
     ------------------------------ */

  .page-content {
    max-width: 100%;

    padding: 35px 18px;
  }

  .contact-form {
    margin: 30px 0;
  }

  .contact-form button {
    width: 100%;
  }
}


/* ======================================
   21. VERY SMALL PHONES
   ====================================== */

@media (max-width: 380px) {

  /* TINY-PHONE HEADER */
  header {
    min-height: 95px;
    height: 95px;
    padding: 12px 14px;
  }

  .header-left {
    gap: 12px;
  }

  .portrait-box {
    width: 78px;
    height: 82px;
    border-radius: 10px;
  }

  .brand-title a {
    font-size: 22px;
    line-height: 1.15;
  }

  .brand-tagline {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 5px;
  }

  /* TINY-PHONE NAV */
  nav a {
    padding: 15px 16px;
    font-size: 18px;
  }
}


/* ======================================
   22. REDUCED MOTION
   ====================================== */


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ======================================
   23. ANIMATIONS
   ====================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBubble {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes arrowBounce {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes footerGlow {
  0% {
    text-shadow:
      0 0 15px rgba(255, 0, 0, 0.7),
      0 0 30px rgba(255, 0, 0, 0.5),
      0 0 45px rgba(255, 0, 0, 0.3);

    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    text-shadow:
      0 0 30px rgba(255, 0, 0, 1),
      0 0 60px rgba(255, 0, 0, 0.9),
      0 0 90px rgba(255, 0, 0, 0.7);

    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    text-shadow:
      0 0 15px rgba(255, 0, 0, 0.7),
      0 0 30px rgba(255, 0, 0, 0.5),
      0 0 45px rgba(255, 0, 0, 0.3);

    transform: scale(1);
    opacity: 0.85;
  }
}

@keyframes arrowDown {
  0% {
    transform: translateY(0);
    opacity: 0.85;
  }

  50% {
    transform: translateY(12px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
}


