/* ==============================================
   CSS Design System — Copyright Solved
   Stripe-inspired redesign
   ============================================== */

:root {
  --coral:        #ed645b;
  --coral-dark:   #c94d45;
  --navy:         #0a2540;
  --navy-2:       #1c3d52;
  --teal:         #306376;
  --text:         #0a2540;
  --text-2:       #425466;
  --text-muted:   #8898aa;
  --bg:           #ffffff;
  --bg-light:     #f6f9fc;
  --border:       #e3e8ee;
  --shadow-sm:    0 1px 3px rgba(10,37,64,.06), 0 4px 16px rgba(10,37,64,.04);
  --shadow-md:    0 4px 20px rgba(10,37,64,.08), 0 16px 40px rgba(10,37,64,.05);
  --shadow-lg:    0 8px 30px rgba(10,37,64,.12), 0 30px 60px rgba(10,37,64,.06);
  --r:            12px;
  --r-lg:         20px;
}

/* ======================
   Base
   ====================== */
a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }
h3 { font-size: 21px; margin-top: 30px; }

/* ======================
   HERO
   ====================== */
.home_big_image {
  background: linear-gradient(135deg, #0a2540 0%, #1c3d52 55%, #0a2540 100%);
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 60px 90px; /* 64px header + breathing room */
}

/* Decorative radial orbs */
.home_big_image::before {
  content: '';
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,100,91,.18) 0%, transparent 65%);
  top: -200px;
  right: -120px;
  pointer-events: none;
}
.home_big_image::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48,99,118,.38) 0%, transparent 65%);
  bottom: -160px;
  left: 38%;
  pointer-events: none;
}

.hero_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1230px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero_badge {
  display: inline-block;
  background: rgba(237,100,91,.14);
  border: 1px solid rgba(237,100,91,.3);
  color: #f9a8a4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero_text h1 {
  color: #fff;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -1.2px;
}

.hero_text .hero_sub {
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.65;
  margin: 0 0 36px;
}

.hero_ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero_image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero_image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.38), 0 4px 16px rgba(0,0,0,.2);
  transform: rotate(-2deg);
  transition: transform .35s ease;
}
.hero_image img:hover { transform: rotate(0deg); }

/* Keep old class name working on other pages */
.logo_with_strapline { display: none; }

/* ======================
   BUTTONS
   ====================== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%) !important;
  border-radius: 50px !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(237,100,91,.42) !important;
  transition: transform .18s ease, box-shadow .18s ease !important;
  white-space: nowrap;
  letter-spacing: .1px;
}
.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(237,100,91,.58) !important;
  text-decoration: none !important;
}

.btn-ghost {
  display: inline-block;
  padding: 13px 28px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50px;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  text-decoration: none;
}

/* ======================
   TRUST STRIP  (below hero)
   ====================== */
.trust_strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.trust_strip_item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.trust_strip_item i { color: var(--coral); font-size: 16px; }

/* ======================
   FEATURES SECTION  (home_info)
   ====================== */
.home_info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 90px 60px;
  background: var(--bg);
  gap: 80px;
  align-items: start;
  max-width: 1230px;
  margin: 0 auto;
}
.home_info2 {
  text-align: center;
  padding: 90px 160px;
  background: var(--bg);
}
.home_info h2,
.home_info2 h2 {
  font-size: 38px;
  color: var(--text);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.5px;
  line-height: 1.2;
}
.home_info h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--coral);
  border-radius: 2px;
  margin: 14px 0 28px;
}

.home_info p,
.home_info2 p,
.interview p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 18px;
}

.home_info h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 14px;
}

.home_info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.home_info li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 18px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.home_info li:last-child { border-bottom: none; }
.home_info li i { color: var(--coral); font-size: 19px; flex-shrink: 0; }

.home_info ol {
  list-style: none;
  padding: 0;
  counter-reset: steps;
  margin: 0 0 28px;
}
.home_info ol li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  color: var(--text-2);
}
.home_info ol li:last-child { border-bottom: none; }
.home_info ol li::before {
  content: counter(steps);
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.home_info_join {
  text-align: center;
  position: sticky;
  top: 120px;
}
.home_info_join div { margin: 0; }

.certificate {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform .3s ease;
}
.certificate:hover { transform: rotate(0deg); }

.copyright_image_mobile { display: none; }

/* ======================
   HOW IT WORKS  (ccc_holder)
   ====================== */
.ccc_holder {
  margin: 0;
  padding: 100px 60px;
  background: var(--bg-light);
}
.ccc_holder h2 {
  font-size: 42px;
  color: var(--text);
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
  letter-spacing: -.5px;
}
.ccc_section_sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin: 0 0 56px;
}
.ccc {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.ccc > div {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 44px 36px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.ccc > div:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.ccc img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 0 22px;
  opacity: .6;
}
.ccc h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -.2px;
}
.ccc p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* ======================
   TESTIMONIAL  (home_testimonials)
   ====================== */
.home_testimonials {
  padding: 80px 60px;
  background: var(--bg);
}
.home_testimonials h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  border-bottom: none;
  width: auto;
}
.home_testimonials_inner {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial_quote {
  background: var(--bg-light);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 30px 36px;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 28px;
}
.testimonial_author {
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
  margin-top: 14px;
  display: block;
}

.home_testimonials p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 10px 0;
}
.purple_tick {
  color: var(--coral);
  font-size: 15px;
  flex-shrink: 0;
}
.home_testimonials_inner .copyright_image {
  text-align: center;
}
.home_testimonials_inner .copyright_image img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
}

/* ======================
   MUSIC IMAGE DIVIDER
   ====================== */
#music_image {
  height: 480px;
  background-image: url(/images/girl_with_phone.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 30%;
  position: relative;
}
#music_image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,37,64,.25) 0%, rgba(10,37,64,.6) 100%);
}

/* ======================
   TRUST BADGES
   ====================== */
.home_testimonials.trust_section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 60px 50px;
}
.trust {
  display: grid;
  gap: 20px;
  text-align: center;
  font-size: 15px;
  color: var(--text-2);
  font-weight: 500;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.trust i.trust_tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  margin: 0 0 13px;
  box-shadow: 0 4px 14px rgba(237,100,91,.3);
}
.ico {
  font-size: 14px;
  text-align: center;
  margin: 40px auto 0;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* ======================
   BLOG SECTION
   ====================== */
.blog_section_header {
  text-align: center;
  padding: 90px 60px 44px;
  background: var(--bg);
}
.blog_section_header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -.4px;
}
.blog_section_header p {
  color: var(--text-muted);
  font-size: 18px;
  margin: 0;
}

.how_to_buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 60px 90px;
  background: var(--bg);
}
.how_to_buttons > div {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--bg);
  transition: transform .22s ease, box-shadow .22s ease;
}
.how_to_buttons > div:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.how_to_buttons > div > a > img,
.how_to_buttons > div > img,
.how_to_buttons img.blog_img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .32s ease;
}
.how_to_buttons > div:hover img { transform: scale(1.04); }
.how_to_buttons h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin: 0 0 10px;
}
.how_to_buttons a.read_more {
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.how_to_buttons a {
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
}
.how_to_buttons > div > div {
  padding: 22px 24px 26px;
}

/* ======================
   MORE ARTICLES SECTION
   ====================== */
.more_articles_section {
  background: var(--bg-light);
  padding: 70px 60px 80px;
  border-top: 1px solid var(--border);
}
.more_articles_section h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 36px;
  text-align: center;
}
.trust.trust_links > div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 14px 18px;
  text-align: center;
  font-size: 14px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  line-height: 1.5;
}
.trust.trust_links > div:hover {
  border-color: var(--coral);
  box-shadow: 0 2px 16px rgba(237,100,91,.12);
  transform: translateY(-3px);
}
.trust.trust_links i.trust_tick {
  width: 44px;
  height: 44px;
  font-size: 18px;
  margin-bottom: 10px;
  box-shadow: none;
}
.trust.trust_links a { color: var(--text-2); font-weight: 500; }
.trust.trust_links > div:hover a { color: var(--coral); }

/* ======================
   FOOTER
   ====================== */
footer {
  background-color: var(--navy);
  font-size: .85em;
  text-align: center;
  padding: 40px 0 60px;
  color: rgba(255,255,255,.65);
  line-height: 28px;
}
.right-aligned { text-align: right; }
.left-aligned  { text-align: left; }
.footer-logo   { margin-top: -20px; }
.footer-inner {
    max-width: 1230px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
#footerInner p { line-height: 28px; }
footer a  { color: #7eb3c5; text-decoration: none; }
footer a:hover { color: #fff; }
#footerArticles { display: none; }
.footer-socials { padding: 30px 0 0; }
.footer-socials i { font-size: 36px; padding: 0 10px; }

/* ======================
   ONE FREE  (kept for compat)
   ====================== */
.one_free {
  font-size: 20px;
  border: 2px solid var(--coral);
  border-radius: var(--r);
  padding: 28px 36px 12px;
  margin: 0 0 36px;
  background: var(--bg-light);
}
.one_free i { color: var(--teal); }

/* ======================
   RESPONSIVE
   ====================== */
@media only screen and (max-width: 1250px) {
  .home_info { grid-template-columns: 3fr 2fr; }
}

@media only screen and (max-width: 1100px) {
  .hero_text h1 { font-size: 44px; }
  .home_info2 { padding: 70px 80px; }
  .trust { grid-template-columns: repeat(3, 1fr); }
}

@media only screen and (max-width: 950px) {
  .home_big_image {
    padding: 88px 28px 60px; /* 64px header + 24px breathing room */
    min-height: auto;
  }
  .hero_content { grid-template-columns: 1fr; gap: 0; }
  .hero_image { display: none; }
  .hero_text h1 { font-size: 36px; }
  .hero_text .hero_sub { font-size: 17px; }

  .trust_strip { padding: 14px 24px; gap: 18px; }

  .home_info,
  .home_info2,
  .home_testimonials { display: block; padding: 50px 24px; }
  .home_info_join { position: static; margin-top: 32px; }
  .home_info h2, .home_info2 h2 { font-size: 28px; }
  .home_info p, .home_info2 p { font-size: 17px; }

  .home_testimonials_inner { display: block; }
  .home_testimonials_inner > div { margin-bottom: 30px; }

  .ccc_holder { padding: 60px 24px; }
  .ccc { display: block; }
  .ccc > div { margin-bottom: 20px; }
  .ccc_holder h2 { font-size: 30px; }

  .blog_section_header { padding: 60px 24px 30px; }
  .blog_section_header h2 { font-size: 28px; }
  .how_to_buttons { grid-template-columns: 1fr 1fr; padding: 0 24px 60px; gap: 20px; }

  .more_articles_section { padding: 50px 24px 60px; }
  .trust.trust_links { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  .home_testimonials.trust_section { padding: 50px 24px; }
  .trust { grid-template-columns: repeat(3, 1fr); font-size: 14px; }

  #music_image { height: 320px; }

  footer { padding: 60px 20px 40px; }
  .footer-inner { display: block; }
  .left-aligned, .right-aligned { text-align: center; }
  .footer-logo { margin-top: 28px; }

  .copyright_image_mobile {
    display: block;
    width: 240px;
    margin: 32px 0 0;
  }
  .copyright_image_mobile img { width: 100%; border-radius: var(--r); }
}

@media only screen and (max-width: 650px) {
  .home_big_image { padding: 82px 20px 52px; }
  .hero_text h1 { font-size: 30px; letter-spacing: -.5px; }
  .hero_badge { font-size: 11px; }
  .hero_ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary, .btn-ghost { text-align: center; }

  .how_to_buttons { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust.trust_links { grid-template-columns: repeat(2, 1fr); }

  #music_image { height: 220px; }
}

@media only screen and (max-width: 420px) {
  .trust { grid-template-columns: repeat(2, 1fr); font-size: 13px; }
  .trust i.trust_tick { width: 42px; height: 42px; font-size: 16px; }
}

/* Disclaimer Banner */
.disclaimer_banner {
  background: #f6f9fc;
  border-top: 1px solid #e3e8ee;
  border-bottom: 1px solid #e3e8ee;
  padding: 24px 60px;
}
.disclaimer_inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-left: 4px solid #ed645b;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(10,37,64,.06), 0 4px 16px rgba(10,37,64,.04);
  overflow: hidden;
}
.disclaimer_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: #fef6f5;
  color: #ed645b;
  font-size: 22px;
  flex-shrink: 0;
  border-right: 1px solid #e3e8ee;
}
.disclaimer_text {
  padding: 16px 22px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #425466;
}
.disclaimer_text strong {
  color: #0a2540;
}
.disclaimer_text a {
  color: #c94d45;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.disclaimer_text a:hover {
  color: #ed645b;
}
@media only screen and (max-width: 650px) {
  .disclaimer_banner { padding: 16px 20px; }
  .disclaimer_inner { flex-direction: column; }
  .disclaimer_icon { padding: 14px 16px; font-size: 18px; border-right: none; border-bottom: 1px solid #e3e8ee; }
  .disclaimer_text { font-size: 13px; }
}
