/* ========================
   SpeakEasy Start Industrial Modern CSS
   ======================== */
/* RESET & BASELINE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background: #181E25;
  color: #F2F3F5;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
a {
  text-decoration: none;
  color: #F4D35E;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFFFFF;
}

/* =========================
   TYPOGRAPHY & HEADINGS
   ========================= */

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Impact, 'Arial Narrow Bold', Arial, sans-serif;
  color: #F4D35E;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p {
  font-size: 1rem;
  color: #DADFE3;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
}
.tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #A7B2C5;
  letter-spacing: 0.03em;
}

/* =========================
   BRAND COLORS & VARIABLES
   ========================= */
:root {
  --color-primary: #234361;
  --color-secondary: #F4D35E;
  --color-accent: #FFFFFF;
  --color-dark-bg: #181E25;
  --color-metal: #65686A;
  --color-card-bg: #232731;
  --color-section-bg: #242933;
  --color-btn-bg: #232E3C;
  --color-btn-hover: #F4D35E;
  --color-btn-txt: #F2F3F5;
  --color-btn-alt-bg: #F4D35E;
  --color-btn-alt-txt: #181E25;
  --shadow-normal: 0 2px 8px 0 rgba(60,60,60,0.18);
  --shadow-hover: 0 4px 16px 0 rgba(65, 78, 95, 0.20);
  --radius-normal: 11px;
  --border-metal: 1.5px solid #65686A;
}

/* =========================
   LAYOUT CONTAINERS & FLEX
   ========================= */
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 14px 0;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 0 24px 0;
  border-top: var(--border-metal);
}
.footer-bottom {
  text-align: center;
  color: #90969F;
  font-size: 0.92rem;
  background: #1B2027;
  padding: 12px 0 6px 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.align-center {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-section-bg);
  border-radius: var(--radius-normal);
  box-shadow: var(--shadow-normal);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-normal);
  box-shadow: var(--shadow-normal);
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F7F8FA;
  color: #282C34;
  border-radius: var(--radius-normal);
  padding: 20px;
  box-shadow: 0 2px 10px 0 rgba(35,39,49,0.10), 0 1px 2px rgba(90,90,90, 0.07);
  min-width: 270px;
  max-width: 400px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #232731;
  font-size: 1.1rem;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  color: #53565B;
  margin-top: 5px;
  letter-spacing: 0.04em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card-bg);
  border-radius: var(--radius-normal);
  box-shadow: var(--shadow-normal);
  padding: 28px 24px 20px 24px;
  min-width: 235px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-secondary);
}

.feature-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0 0 0;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  background: #20232A;
  border-radius: 100px;
  padding: 18px 23px;
  box-shadow: 0 1px 5px 0 rgba(35,39,49,0.10);
  border: 1.5px solid #373E47;
}
.icon-item img {
  width: 36px;
  height: 36px;
}
.icon-item span {
  color: #F4D35E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: #15191F;
  border-bottom: 1.5px solid #2C3540;
  z-index: 40;
  position: relative;
}
.logo img {
  width: 174px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  color: #B7BFC7;
  letter-spacing: 0.04em;
  padding: 4px 4px 4px 4px;
  border-radius: 3px;
  transition: color .17s, background .17s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-secondary);
  background: #222731;
}
.btn.primary-nav {
  margin-left: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #F4D35E;
  cursor: pointer;
  line-height: 1;
  z-index: 110;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background .16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #222731;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #181E25;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.88,.01,.32,1.18);
  box-shadow: 6px 0 32px rgba(34,32,27,0.19);
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #F4D35E;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: color .13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFD600;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 15px;
  text-align: left;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #E4E6EA;
  letter-spacing: 0.045em;
  padding: 9px 0 8px 7px;
  border-radius: 7px;
  transition: background .17s, color .16s;
}
.mobile-nav a:hover {
  background: #232E3C;
  color: #F4D35E;
}

/* HIDE NAVS ON MOBILE INITIALLY */
@media (max-width: 1030px) {
  .main-nav,
  .btn.primary-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1031px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   BUTTONS & INTERACTION
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-btn-bg);
  color: var(--color-btn-txt);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 27px;
  border-radius: var(--radius-normal);
  border: none;
  box-shadow: var(--shadow-normal);
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background .18s, color .18s, transform .11s;
  border: 2px solid var(--color-metal);
}
.btn.cta, .btn.service-detail {
  background: var(--color-btn-alt-bg);
  color: var(--color-btn-alt-txt);
  border: 2px solid #EBD34B;
  box-shadow: 0 3px 15px rgba(244,211,94,0.14);
  margin-top: 16px;
}
.btn.cta:hover, .btn.service-detail:hover,
.btn.cta:focus, .btn.service-detail:focus {
  background: var(--color-primary);
  color: #F4D35E;
  transform: translateY(-2px) scale(1.04);
}
.btn:hover, .btn:focus {
  background: #313845;
  color: #F4D35E;
  transform: translateY(-1px) scale(1.01);
}

/* ==================
   HERO SECTION
   ================== */
.hero-section {
  background: linear-gradient(94deg, #181E25 80%, #1F232A 100%);
  box-shadow: 0 4px 37px rgba(35,40,50,0.16);
  padding-top: 58px;
  padding-bottom: 56px;
  min-height: 360px;
  border-radius: 0 0 var(--radius-normal) var(--radius-normal);
}
.hero-section h1 {
  color: #F4D35E;
  font-size: 2.8rem;
}
.hero-section p {
  font-size: 1.17rem;
  margin-bottom: 18px;
  color: #DADFE3;
}

/* =====================
   FEATURES & SERVICES
   ===================== */
.features-section,
.services-section,
.coaching-services-section,
.courses-section,
.schedule-section,
.legal-section,
.about-section,
.team-section,
.promises-section,
.course-benefits-section,
.faq-section,
.thank-you-section {
  background: var(--color-section-bg);
  border-radius: var(--radius-normal);
  box-shadow: var(--shadow-normal);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid, .service-list, .service-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.service-card, .team-card {
  background: var(--color-card-bg);
  box-shadow: var(--shadow-normal);
  border-radius: var(--radius-normal);
  border-top: 3px solid #54595E;
  padding: 30px 26px 21px 26px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 360px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow .22s, transform .13s;
}
.service-card .price {
  margin-top: 3px;
  color: #F4D35E;
  font-weight: 700;
  font-size: 1.15rem;
}
.service-card:hover, .team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
  border-color: #F4D35E;
}

.team-card h3 {
  color: #FFD900;
  font-size: 1.32rem;
}

/* ================
   TESTIMONIALS
   ================ */
.testimonials-section, .coaching-testimonials-section {
  background: var(--color-section-bg);
  border-radius: var(--radius-normal);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
  color: #FFD600;
  font-weight: bold;
}
.star-rating span {
  color: #FAEECA;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
  margin-left: 10px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
  justify-content: center;
}

/* ================
   CTA SECTIONS
   ================ */
.cta-section {
  background: linear-gradient(93deg, #212832 80%, #232731 100%);
  border-radius: var(--radius-normal);
  padding: 60px 22px 40px 22px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: var(--shadow-normal);
}
.cta-section h2 {
  color: #F4D35E;
  margin-bottom: 18px;
}
.cta-section p {
  color: #F6F6FA;
  margin-bottom: 24px;
}

/* ================
   SCHEDULE & FAQ
   ================ */
.course-schedule-list, .online-courses, .faq-list {
  margin-bottom: 28px;
}
.course-schedule-list li, .online-courses li {
  margin-bottom: 10px;
  color: #FAEECA;
  font-size: 1.08rem;
}
.spots {
  display: inline-block;
  background: #F4D35E;
  color: #232731;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: bold;
  padding: 2px 13px 2px 13px;
  margin-left: 10px;
  border-radius: 999px;
}

.faq-item {
  background: #232731;
  border-radius: var(--radius-normal);
  padding: 18px 20px 10px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-normal);
}
.faq-item h2 {
  color: #F4D35E;
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.faq-item p {
  margin-bottom: 0;
  color: #DADFE3;
  font-size: 1rem;
}

/* ================
   CONTACT DETAILS
   ================ */
.contact-details-list, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px 0 10px 0;
}
.contact-details-list div, .footer-contact div {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1em;
  color: #CED3DB;
  font-family: 'Open Sans';
}
.contact-details-list img, .footer-contact img {
  width: 22px;
  height: 22px;
}

/* ================
   FOOTER
   ================ */
footer {
  background: #181E25;
  box-shadow: 0 -2px 22px rgba(0,0,0,0.08);
  margin-top: 72px;
  border-top: 3px solid #262B32;
}
.footer-brand img {
  width: 56px;
  height: auto;
  margin-bottom: 12px;
}
.footer-brand .tagline {
  margin-top: 4px;
  color: #B0B6BC;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a, .footer-legal a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #E0E3E6;
  transition: color .16s;
  margin-bottom: 1px;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #F4D35E;
}
.footer-social {
  display: flex;
  gap: 17px;
  margin-top: 12px;
}
.footer-social a {
  display: flex;
  padding: 7px;
  border-radius: 40px;
  background: #232E3C;
  transition: background .16s;
}
.footer-social a:hover {
  background: #F4D35E;
}
.footer-social img {
  width: 25px;
  height: 25px;
}

/* ================
   COOKIE CONSENT
   ================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1C242C;
  color: #F4D35E;
  border-top: 2.5px solid #434952;
  box-shadow: 0 -1px 26px rgba(20,24,36,0.17);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 6vw 19px 6vw;
  font-size: 1.05rem;
  animation: cookieBannerIn .7s ease;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 3px;
  padding: 9px 17px;
  box-shadow: 0 1px 7px rgba(50,60,80,0.06);
  cursor: pointer;
  transition: background .17s, color .15s, box-shadow .16s;
}
.cookie-banner .accept {
  background: #F4D35E;
  color: #181E25;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFF7CF;
  color: #181E25;
}
.cookie-banner .reject {
  background: #242933;
  color: #F4D35E;
  border: 1.5px solid #5A626A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #181E25;
}
.cookie-banner .settings {
  background: #234361;
  color: #F4D35E;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #375D83;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,31,40,0.82);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #202933;
  color: #F4D35E;
  padding: 42px 30px 28px 30px;
  border-radius: 1.1em;
  min-width: 320px;
  max-width: 99vw;
  box-shadow: 0 7px 44px rgba(0,0,0,0.23);
  position: relative;
  width: 100%;
  font-size: 1.05rem;
  animation: cookieModalIn .33s cubic-bezier(0.97,0.02,0.09,0.98);
}
@keyframes cookieModalIn {
  from { opacity:0; transform: translateY(30px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 19px;
  right: 19px;
  font-size: 1.75rem;
  color: #F4D35E;
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal-close:hover {
  color: #FFDD55;
}
.cookie-modal h2 {
  color: #F4D35E;
  margin-bottom: 18px;
  font-size: 1.34rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial;
  font-size: 1.04rem;
  color: #FFD900;
}
.cookie-modal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #F4D35E;
  margin-right: 4px;
}
.cookie-modal .category-desc {
  font-size: .96rem;
  color: #CED3DB;
  margin-left: 40px;
  margin-bottom: 12px;
}


/* ================
   RESPONSIVE CSS
   ================ */
@media (max-width: 1030px) {
  .header-flex {
    flex-wrap: wrap;
    gap: 14px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-grid, .team-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .hero-section, .features-section, .services-section, .cta-section,
  .testimonials-section, .coaching-services-section, .coaching-testimonials-section,
  .about-section, .team-section, .promises-section,
  .legal-section, .course-benefits-section, .faq-section, .thank-you-section,
  .schedule-section {
    padding: 28px 7vw;
  }
  .feature-icons-row {
    gap: 20px;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 44px 0 38px 0;
    min-height: 245px;
  }
  .section, .features-section, .services-section, .team-section,
  .cta-section, .testimonials-section, .coaching-testimonials-section,
  .about-section, .promises-section, .legal-section, .course-benefits-section, .faq-section, .thank-you-section, .schedule-section {
    padding: 22px 7vw;
    margin-bottom: 42px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .content-wrapper {
    padding: 0;
  }
  .testimonial-slider, .testimonial-list, .feature-icons-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .footer-flex {
    gap: 13px;
    flex-direction: column;
    align-items: stretch;
  }
  .card,
  .service-card,
  .feature-item,
  .team-card {
    min-width: 98%;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-social {
    justify-content: flex-start;
  }
}
@media (max-width: 490px) {
  .container {
    width: 99%;
  }
  .hero-section h1 {
    font-size: 1.35rem;
  }
  .section, .features-section, .services-section, .team-section,
  .cta-section, .testimonials-section, .coaching-testimonials-section,
  .about-section, .promises-section, .legal-section, .course-benefits-section, .faq-section, .thank-you-section, .schedule-section {
    padding: 11px 2vw 13px 2vw;
  }
  .footer-brand img {
    width: 41px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    padding: 13px 9px 12px 10px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
    flex-direction: column;
    align-items: flex-end;
  }
  .cookie-modal {
    padding: 29px 6vw 18px 6vw;
    min-width: 0;
    width: 96vw;
    border-radius: 0.57em;
  }
}

/* ================
  UTILITY CLASSES
 ================ */
.gap-32 { gap: 32px; }
.gap-20 { gap: 20px; }
.gap-16 { gap: 16px; }
.gap-8 { gap: 8px; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* ================
 Visual ENHANCEMENTS
================ */
.card, .feature-item, .service-card, .team-card, .faq-item {
  border-radius: var(--radius-normal);
  box-shadow: var(--shadow-normal);
  transition: box-shadow .17s, border-color .17s;
  border: 1.5px solid #282C34;
}

/* ================
  ANIMATIONS
 ================ */
.btn,
.service-card,
.team-card,
.feature-item {
  transition: box-shadow .19s, transform .13s, border-color .17s;
}
.btn:active {
  transform: scale(0.97);
}
.card:active,
.service-card:active,
.team-card:active {
  transform: scale(0.99);
}

/*==== END ====*/
