/* =====================================================
   AMBER GREENE VOICEOVER — Styles
   Script/handwritten font : Grape Nuts
   Body/heading font       : Google Sans Flex
   (Google Sans Flex is not part of the public Google
   Fonts CDN, so it falls back to Google Sans / Roboto /
   system sans-serif on machines that don't have it
   installed locally.)
   ===================================================== */

/* If you obtain the actual "Google Sans Flex" font files, add them
   here, e.g.:
   @font-face{
     font-family: 'Google Sans Flex';
     src: url('assets/fonts/GoogleSansFlex-Regular.woff2') format('woff2');
     font-weight: 400;
   }
   It is not on the public Google Fonts CDN, so the stylesheet below
   falls back to Google Sans / Roboto / system sans-serif until then. */

:root{
  --green:        #039431;
  --green-dark:   #027a28;
  --orange:       #F65C0C;
  --dark:         #0A0C10;
  --gray-text:    #4B4F58;
  --gray-bg:      #F7F7F7;
  --border:       #E6E6E6;
  --footer-bg:    #1D1E22;

  --font-script: 'Grape Nuts', cursive;
  --font-body: 'Google Sans Flex', 'Google Sans', 'Product Sans', 'Segoe UI', Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}


img{ max-width: 100%; display: block; }

.container{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

a{ text-decoration: none; color: inherit; }

.script-text{
  font-family: var(--font-script);
  font-size: 46px;
  color: #039431;
  margin: 0 0 4px 0;
  font-weight: 400;
}

/* .section-label{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green);
  margin: 0 0 40px 0;
} */

.section-label {
    color: var(--green);
    font-weight: 500;
    /* letter-spacing: 0.4px; */
    font-size: 22px;
    /* white-space: nowrap; */
    margin-bottom: 25px;
}
.section-label.center{ text-align: center; }

.underline{
  display: block;
  width: 80px;
  height: 3px;
  border-radius: 2px;
  margin: 8px auto 14px;
}
.underline.left{ margin-left: 0; }
.underline-green{ background: var(--green); }
.underline-orange{ background: var(--orange); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: var(--green);
  color: #fff;
}
.btn-primary:hover{ background: var(--green-dark); box-shadow: 0 8px 20px rgba(3,148,49,.3); }
.btn-primary .play-ico{
  display:inline-flex; align-items:center; justify-content:center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  font-size: 9px;
}

.btn-outline{
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn-outline:hover{ background: var(--orange); color: #fff; }

/* ===================== HEADER ===================== */
.site-header {
    margin-top: 77px;
    padding: 10px  0;
    /* position: fixed; */
    position: absolute;
    /* background: white; */
    z-index: 999;
    width: 100%;
}
.header-inner{ display:flex; align-items:center; }


/* ===================== HERO ===================== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 130px 0 70px;
    margin-top: -77px;
}

.hero-copy {
    padding-top: 60px;
}

.hero-bg-dots{
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 260px;
  height: auto;
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-arcs{
  position: absolute;
  top: 0;
  right: -20px;
  width: 480px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}



.hero-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-title{
  font-size: 90px;
  line-height: 0.98;
  font-weight: bold;
  letter-spacing: 4px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
.hero-title .dot{ color: var(--orange); }

.eyebrow{
  color: var(--green);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 24px;
  margin: 0 0 18px 0;
}

.hero-desc{
  font-size: 24px;
  line-height: 1.35;
  color: var(--dark);
  margin: 0 0 34px 0;
}

.hero-buttons{ display:flex; gap: 18px; flex-wrap: wrap; }

.hero-photo-wrap{ position: relative; z-index: 1; }
.hero-photo{
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
}

/* ===================== AS SEEN ON ===================== */
.seen-on{ padding: 50px 0 60px; }

.seen-on-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 24px;
  margin-bottom: 46px;
}
.rule{ flex:1; max-width: 100%; height:1px; background: var(--green); }
.seen-on-label {
    color: var(--green);
    font-weight: 600;
    /* letter-spacing: 0.4px; */
    font-size: 22px;
    white-space: nowrap;
}

.logo-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 28px;
}
/* .logo-row img{
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: .9;
} */

/* ===================== VOICE STYLES ===================== */
.voice-styles{ padding: 30px 0 70px; }

.styles-row{
  display:flex;
  align-items:flex-start;
  justify-content: center;
  gap: 50px;
}
.style-divider {
    width: 1.2px;
    align-self: stretch;
    background: var(--border);
}

.style-item {
    display: flex;
    flex: 1;
    gap: 30px;
    max-width: 300px;
    text-align: left;
}

.style-icon{ width: 72px; height: 72px; margin-bottom: 18px; }
.style-item h3{
  font-size: 20px;
  letter-spacing: .5px;
  margin: 0 0 8px 0;
}
.style-item .underline{ margin-left: 0; }
.style-item p{
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0 0 0;
}

/* ===================== DEMO REEL ===================== */
.demo-reel{ padding: 20px 0 70px; }

.demo-grid{
  display:grid;
  grid-template-columns: 440px 1fr;
  gap: 40px;
  align-items: center;
}

.demo-side{ text-align:center; }
.take-a-listen-img{
  width: 280px;
  margin: 0 auto;
}

.demo-list{ display:flex; flex-direction:column; gap: 16px; }

.demo-row{
  display:flex;
  align-items:center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 22px;
}

.play-btn{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color:#fff;
  font-size: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex: 0 0 auto;
}

.demo-title{
  font-weight: 700;
  font-size: 16px;
  flex: 0 0 160px;
}

.waveform{
  display:flex;
  align-items:center;
  gap: 2px;
  flex: 1 1 auto;
  height: 22px;
  overflow: hidden;
}
.waveform span{
  display:block;
  width: 2px;
  border-radius: 2px;
}
.waveform-green span{ background: var(--green); }
.waveform-orange span{ background: var(--orange); }
.waveform span:nth-child(odd){ height: 60%; }
.waveform span:nth-child(even){ height: 100%; }
.waveform span:nth-child(3n){ height: 40%; }

.demo-time{
  font-size: 14px;
  color: var(--gray-text);
  flex: 0 0 auto;
}

.download-ico{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  color: var(--orange);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 14px;
  flex: 0 0 auto;
}

/* ===================== FEATURE STRIP ===================== */

.feature-row{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  text-align:center;
   background: var(--gray-bg);
    padding: 40px 0;
}


.feature-item{ flex: 1 1 150px; }
.feature-item img{ width: 40px; height: 40px; margin: 0 auto 12px; }
.feature-item p{
  margin:0;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials{ padding: 70px 0 40px; }
/* 
.testimonial-slider{
  display:flex;
  align-items:center;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
} */


.testimonial-slider{
    max-width:100%;
    margin:0 auto;
    position:relative;
}

.testimonial-item{
    padding:10px;
}

.testimonial-card{
  display: flex;
  gap: 20px;
    background:#fff;
    border:1px solid #E6E6E6;
    border-radius:14px;
    padding:34px 36px;
}

.quote-ico{
    width:30px;
    margin-bottom:15px;
}

.testimonial-card p{
    font-size:17px;
    line-height:1.7;
    margin-bottom:18px;
}

.testimonial-author{
    color:#777;
    font-size:15px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border-color: #039431;
    /* border: none; */
    background: #ffffff;
    color: #039431;
    font-size: 23px;
    cursor: pointer;
    z-index: 20;
    transition: .3s;
}

.slider-arrow:hover{
    background:#039431;
    color: #fff;
    border: none;
}

.prev{
    left:-70px;
}

.next{
    right:-70px;
}

.slick-dots{
    bottom:-45px;
}

.slick-dots li button:before{
    font-size:12px;
    color:#ccc;
    opacity:1;
}

.slick-dots li.slick-active button:before{
    color:#039431;
}

.slick-slide{
    height:inherit;
}

.slick-track{
    display:flex;
}

.slick-slide > div{
    height:100%;
}




.testimonial-card{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 36px;
  position: relative;
  background: #fff;
}
.quote-ico{ width: 30px; height: 30px; margin-bottom: 14px; opacity: .85; }
.testimonial-card p{
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark);
  margin: 0 0 18px 0;
}
.testimonial-author{
  font-size: 14px;
  color: var(--gray-text);
}




/* ===================== GREENIE ROOM ===================== */
.greenie{
  position: relative;
  padding: 90px 0 40px;
  overflow: hidden;
}
/* .greenie-deco{
  position:absolute;
  right: 60px;
  bottom: -10px;
  width: 200px;
  z-index: 0;
} */
.greenie-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;

}
.greenie-copy {
    width: 32%;
}
.greenie-copy h2{
  font-size: 50px;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.green-text{ color: var(--green); }
.greenie-copy p {
    color: var(--gray-text);
    font-size: 19px;
    line-height: 1.6;
    max-width: 380px;
    margin-top: 16px;
}

.greenie-form{ display:flex; flex-direction:column; gap: 16px; width: 35%; max-width: 460px; }
.greenie-form input{
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
}
.greenie-form input:focus{ outline: 2px solid var(--green); outline-offset: 1px; }
.greenie-form .btn.full{ width: 100%; padding: 16px; border-radius: 8px; }

/* ===================== FOOTER ===================== */
.site-footer{ padding-top: 40px; }
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  /* padding-bottom: 30px; */
}

img.footer-logo {
    width: 220px;
    padding-bottom: 15px;
}
/* .footer-logo{ height: 54px; width: auto; filter: brightness(0) invert(1); } */
.footer-contact{ display:flex; align-items:center; gap: 10px; }
/* .footer-contact img{ width: 20px; height: 20px; filter: brightness(0) invert(1); } */
.footer-social{ display:flex; gap: 14px; }
/* .footer-social img{ width: 20px; height: 20px; filter: brightness(0) invert(1); } */
.footer-social a{
  width: 38px; height: 38px;
  display:flex; align-items:center; justify-content:center;
}
.footer-bottom{
  /* border-top: 1px solid rgba(255,255,255,.12); */
  text-align:center;
  font-size: 16px;
  padding: 18px 0;
  color: #fff;
  background: #0A0C10;
}

.style-divider2 {
    width: 1.6px;
    align-self: center;
    height: 30px;
    background: var(--border);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-photo-wrap{ order: -1; }
  .hero-title{ font-size: 58px; }
  .styles-row{ flex-direction: column; align-items:stretch; gap: 34px; }
  .style-divider{ display:none; }
  .demo-grid{ grid-template-columns: 1fr; }
  .demo-row{ flex-wrap: wrap; }
  .demo-title{ flex: 1 1 auto; }
  .waveform{ order: 4; flex-basis: 100%; }
  .testimonial-slider{ gap: 8px; }
  .slider-arrow{ width: 32px; height: 32px; font-size: 11px; }
  .testimonial-card{ padding: 26px 22px; }
  .greenie-inner{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction: column; text-align:center; }
}

@media (max-width: 560px){
  .hero-title{ font-size: 44px; }
  .logo-row{ justify-content:center; }
  .logo-row img{ height: 26px; }
}


/* =======================================================
   TABLET
======================================================= */

@media (max-width:1024px){

.container{
    padding:0 20px;
}

.site-header{
    margin-top:30px;
}

.hero{
    padding:120px 0 60px;
}

.hero-inner{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-copy{
    order:2;
    padding-top:20px;
}

.hero-photo-wrap{
    order:1;
}

.hero-photo{
    max-width:420px;
}

.hero-title{
    font-size:60px;
}

.hero-desc{
    font-size:20px;
}

.hero-buttons{
    justify-content:center;
}

.logo-row{
    justify-content:center;
    gap:35px;
}

.styles-row{
    gap:25px;
}

.style-item{
    flex-direction:column;
    text-align:center;
    align-items:center;
}

.style-item .underline{
    margin:auto;
}

.demo-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.demo-side{
    order:1;
}

.demo-list{
    order:2;
}

.feature-row{
    justify-content:center;
    gap:30px;
}

.feature-item{
    flex:0 0 calc(33.33% - 20px);
}

.greenie-inner{
    flex-direction:column;
    gap:40px;
}

.greenie-copy,
.greenie-form{
    width:100%;
    max-width:100%;
}

.greenie-copy{
    text-align:center;
}

.greenie-copy p{
    margin:auto;
}

.slider-arrow.prev{
    left:-15px;
}

.slider-arrow.next{
    right:-15px;
}

}


/* =======================================================
   MOBILE
======================================================= */

@media (max-width:1024px){
  .site-header {
    margin-top: 80px;
}
.hero-bg-arcs, .hero-bg-dots{
  display: none;
}
.feature-row {
    padding: 40px 0;
}

.underline.left {
    margin-left: 32%;
}
img.greenie-deco {
    display: none;
}

}

@media (max-width:767px){


.logo{
    width:180px;
}

.hero{
    padding:90px 0 40px;
}

.hero-bg-arcs,
.hero-bg-dots{
    display:none;
}

.hero-title{
    font-size:42px;
    letter-spacing:1px;
}

.script-text{
    font-size:34px;
}

.eyebrow{
    font-size:18px;
}

.hero-desc{
    font-size:17px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.hero-buttons .btn{
    width:100%;
    max-width:320px;
}

.hero-photo{
    max-width:300px;
}

.section-label,
.seen-on-label{
    font-size:18px;
}

.logo-row{
    gap:20px;
}

.logo-row img{
    max-width:120px;
}

.styles-row{
    flex-direction:column;
}

.style-divider{
    display:none;
}

.style-item{
    max-width:100%;
}

.demo-row{
    flex-wrap:wrap;
    gap:12px;
    padding:18px;
}

.demo-title{
    flex:1;
}
.take-a-listen-img {
    width: 180px;
    margin: 0 auto;
}

.waveform{
    flex-basis:100%;
}

.feature-item{
    flex:0 0 100%;
}

.feature-row .style-divider{
    display:none;
}

.testimonials{
    padding:50px 0;
}

.testimonial-card{
    flex-direction:column;
    text-align:center;
    padding:24px;
}

.quote-ico{
    margin:0 auto 15px;
}

.greenie{
    padding:60px 0;
}

.greenie-copy h2{
    font-size:36px;
}

.greenie-copy p{
    font-size:17px;
}

.footer-inner{
    flex-direction:column;
    text-align:center;
    padding-bottom: 20px;
}

.style-divider2{
    display:none;
}

.footer-contact{
    justify-content:center;
}

.footer-social{
    justify-content:center;
}

.footer-bottom{
    font-size:14px;
}

}

@media (max-width:520px){
  .hero {
    padding: 160px 0 40px;
}
}