/* =====================================================
   スピークリード・アカデミー — Main Stylesheet
   soft-horse-838.css
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #1a1b1f;
  background-color: #fff;
  padding-top: 88px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ============================
   NAVIGATION
   ============================ */

.navigation {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: auto;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.navigation-wrap {
  display: flex;
  padding: 24px 50px;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  z-index: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-image {
  display: block;
  width: 140px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.nav-link {
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1b1f;
  transition: color 300ms ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: rgba(26, 27, 31, 0.6);
}

.nav-link.cc-active {
  border-bottom: 2px solid #1a1b1f;
}

/* ============================
   BUTTON
   ============================ */

.button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #1a1b1f;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
}

.button:hover {
  background-color: #32343a;
  color: #fff;
}

.button.cc-jumbo-button {
  padding: 16px 35px;
  font-size: 14px;
  font-weight: 600;
}

.button.cc-contact-us {
  padding: 10px 15px;
}

.button.cc-white {
  background-color: #fff;
  color: #1a1b1f;
}

.button.cc-white:hover {
  background-color: #f4f4f4;
}

/* ============================
   MOBILE HAMBURGER
   ============================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1b1f;
  transition: all 300ms;
}

/* ============================
   HERO / INTRO HEADER
   ============================ */

.intro-header {
  display: flex;
  height: 620px;
  margin-bottom: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 50px;
  background-image: url('../photo/hero-bg.webp');
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}

.intro-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.intro-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.heading-jumbo {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 64px;
  line-height: 80px;
  font-weight: 400;
  color: #fff;
}

.intro-sub {
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 500px;
}

/* ============================
   LABEL
   ============================ */

.label {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.label.cc-light {
  opacity: 0.6;
}

/* ============================
   SECTIONS
   ============================ */

.section {
  margin-right: 30px;
  margin-left: 30px;
}

.section.cc-store-home-wrap {
  margin-right: 0;
  margin-left: 0;
}

.section.cc-cta {
  padding-right: 30px;
  padding-left: 30px;
  background-color: #f4f4f4;
}

.divider {
  height: 1px;
  background-color: #eee;
  margin: 0 30px;
}

/* ============================
   MOTTO / INTRO SECTION
   ============================ */

.motto-wrap {
  padding: 80px 50px;
  display: flex;
  justify-content: center;
}

.motto-content {
  max-width: 700px;
  text-align: center;
}

.heading-jumbo-small {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
}

.paragraph-light {
  opacity: 0.7;
  font-size: 14px;
  line-height: 24px;
}

.paragraph-bigger {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.paragraph-bigger.cc-bigger-light {
  opacity: 0.6;
}

/* ============================
   HOME CONTENT / ABOUT GRID
   ============================ */

.home-content-wrap {
  margin-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.about-image-wrap {
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-text-wrap {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
}

.home-section-wrap {
  margin-top: 20px;
  margin-bottom: 30px;
}

/* ============================
   STATS ROW
   ============================ */

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 70px 50px;
  background-color: #f4f4f4;
  text-align: center;
  flex-wrap: wrap;
}

.stat-item {}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(26, 27, 31, 0.6);
  line-height: 18px;
}

/* ============================
   PRICING
   ============================ */

.pricing-section {
  padding: 80px 50px;
  text-align: center;
}

.pricing-heading {
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 10px;
}

.pricing-sub {
  font-size: 15px;
  color: rgba(26, 27, 31, 0.6);
  margin-bottom: 50px;
  line-height: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  border: 1px solid #eee;
  padding: 40px 30px;
  text-align: left;
  transition: box-shadow 300ms ease;
}

.price-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.price-card.cc-featured {
  background-color: #1a1b1f;
  color: #fff;
  border-color: #1a1b1f;
}

.price-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(26, 27, 31, 0.5);
}

.price-card.cc-featured .price-name {
  color: rgba(255, 255, 255, 0.55);
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.price-period {
  font-size: 12px;
  color: rgba(26, 27, 31, 0.5);
  margin-bottom: 24px;
}

.price-card.cc-featured .price-period {
  color: rgba(255, 255, 255, 0.5);
}

.price-divider {
  height: 1px;
  background: #eee;
  margin-bottom: 20px;
}

.price-card.cc-featured .price-divider {
  background: rgba(255, 255, 255, 0.15);
}

.price-desc {
  font-size: 13px;
  line-height: 22px;
  color: rgba(26, 27, 31, 0.7);
  margin-bottom: 24px;
}

.price-card.cc-featured .price-desc {
  color: rgba(255, 255, 255, 0.7);
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 13px;
  line-height: 22px;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  color: rgba(26, 27, 31, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-card.cc-featured .price-features li {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.price-features li i {
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
  color: #1a1b1f;
}

.price-card.cc-featured .price-features li i {
  color: #fff;
}

.price-card .button {
  width: 100%;
  text-align: center;
}

.price-card.cc-featured .button {
  background-color: #fff;
  color: #1a1b1f;
}

.price-card.cc-featured .button:hover {
  background-color: #f4f4f4;
}

/* ============================
   TESTIMONIALS
   ============================ */

.testimonials-section {
  padding: 80px 50px;
  background-color: #fff;
  text-align: center;
}

.testimonials-heading {
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 50px;
  margin-top: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.testimonial-card {
  padding: 30px;
  background-color: #f9f9f9;
  border-left: 3px solid #1a1b1f;
}

.stars {
  color: #1a1b1f;
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 24px;
  color: rgba(26, 27, 31, 0.8);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 11px;
  color: rgba(26, 27, 31, 0.5);
  margin-top: 4px;
}

/* ============================
   LOGOS ROW
   ============================ */

.logos-section {
  padding: 60px 50px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.logos-label {
  text-align: center;
  margin-bottom: 30px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-partner {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(26, 27, 31, 0.35);
  text-transform: uppercase;
  transition: color 200ms;
}

.logo-partner:hover {
  color: rgba(26, 27, 31, 0.7);
}

/* ============================
   CTA SECTION
   ============================ */

.cta-wrap {
  display: flex;
  padding-top: 100px;
  padding-bottom: 100px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-text {
  margin-bottom: 30px;
  max-width: 530px;
}

/* ============================
   FOOTER
   ============================ */

.footer-wrap {
  padding: 50px 50px 0;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: block;
  margin-bottom: 16px;
  width: 120px;
}

.footer-desc {
  font-size: 13px;
  line-height: 22px;
  color: rgba(26, 27, 31, 0.6);
  max-width: 260px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #1a1b1f;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  text-decoration: none;
  color: rgba(26, 27, 31, 0.65);
  transition: color 200ms;
}

.footer-links a:hover {
  color: #1a1b1f;
}

.footer-contact-item {
  font-size: 13px;
  color: rgba(26, 27, 31, 0.65);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 20px;
}

.footer-contact-item i {
  margin-top: 2px;
  color: #1a1b1f;
  flex-shrink: 0;
  width: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a1b1f;
  font-size: 12px;
  transition: background-color 200ms, color 200ms;
}

.social-links a:hover {
  background-color: #1a1b1f;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paragraph-tiny {
  font-size: 12px;
  line-height: 20px;
  opacity: 0.6;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(26, 27, 31, 0.5);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 200ms;
}

.footer-legal-links a:hover {
  color: #1a1b1f;
}

/* ============================
   COOKIE BANNER
   ============================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1b1f;
  color: #fff;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 400ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 13px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
}

.cookie-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 24px;
  background-color: #fff;
  color: #1a1b1f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 200ms;
}

.cookie-accept:hover {
  background-color: #f4f4f4;
}

.cookie-decline {
  padding: 10px 20px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: inherit;
  transition: color 200ms, border-color 200ms;
}

.cookie-decline:hover {
  color: #fff;
  border-color: #fff;
}

/* ============================
   PAGE HEADER (inner pages)
   ============================ */

.page-header {
  padding: 80px 50px 60px;
  background-color: #f4f4f4;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  max-width: 750px;
  margin-top: 12px;
}

.page-header p {
  font-size: 16px;
  color: rgba(26, 27, 31, 0.6);
  max-width: 600px;
  margin-top: 15px;
  line-height: 28px;
}

/* ============================
   CONTENT SECTION (text pages)
   ============================ */

.content-section {
  padding: 80px 50px;
  max-width: 920px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 26px;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 18px;
  margin-top: 50px;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  font-size: 14px;
  line-height: 26px;
  color: rgba(26, 27, 31, 0.8);
  margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
  margin: 15px 0 20px 20px;
}

.content-section li {
  font-size: 14px;
  line-height: 26px;
  color: rgba(26, 27, 31, 0.8);
  margin-bottom: 8px;
}

.content-section strong {
  color: #1a1b1f;
  font-weight: 600;
}

/* ============================
   CONTACT FORM
   ============================ */

.form-section {
  padding: 80px 50px;
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 22px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #1a1b1f;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-family: inherit;
  color: #1a1b1f;
  background-color: #fff;
  outline: none;
  transition: border-color 200ms;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #1a1b1f;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  margin-top: 10px;
}

.form-note {
  font-size: 12px;
  color: rgba(26, 27, 31, 0.5);
  margin-top: 12px;
  line-height: 20px;
}

.form-error {
  display: none;
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #c0392b;
  background: #fff5f5;
}

/* ============================
   FAQ
   ============================ */

.faq-section {
  padding: 80px 50px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: #1a1b1f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  line-height: 24px;
  transition: color 200ms;
}

.faq-question:hover {
  color: rgba(26, 27, 31, 0.65);
}

.faq-icon {
  font-size: 20px;
  transition: transform 300ms;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-question.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding-bottom 400ms ease;
}

.faq-answer.is-open {
  max-height: 400px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 26px;
  color: rgba(26, 27, 31, 0.75);
}

/* ============================
   CUSTOMER FEEDBACK
   ============================ */

.reviews-section {
  padding: 80px 50px;
}

.reviews-section-heading {
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 50px;
  margin-top: 12px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  border: 1px solid #eee;
  padding: 30px;
  transition: box-shadow 300ms;
}

.review-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}

.review-author-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.review-author-role {
  font-size: 11px;
  color: rgba(26, 27, 31, 0.5);
  letter-spacing: 0.5px;
}

.review-body {
  font-size: 14px;
  line-height: 26px;
  color: rgba(26, 27, 31, 0.75);
  font-style: italic;
}

.review-date {
  font-size: 11px;
  color: rgba(26, 27, 31, 0.4);
  margin-top: 14px;
}

/* ============================
   COMPANY INFO
   ============================ */

.team-section {
  padding: 80px 50px;
}

.team-section-heading {
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 15px;
  text-align: center;
  margin-top: 12px;
}

.team-sub {
  font-size: 15px;
  color: rgba(26, 27, 31, 0.6);
  text-align: center;
  max-width: 550px;
  margin: 0 auto 50px;
  line-height: 26px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.team-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.team-role {
  font-size: 11px;
  color: rgba(26, 27, 31, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.values-section {
  padding: 0 50px 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  padding: 30px;
  background: #f9f9f9;
}

.value-icon {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1b1f;
}

.value-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-body {
  font-size: 13px;
  line-height: 22px;
  color: rgba(26, 27, 31, 0.7);
}

/* ============================
   RESPONSIVE
   ============================ */

@media screen and (max-width: 991px) {
  .navigation-wrap {
    padding: 15px 20px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .intro-header {
    height: 480px;
    padding: 30px;
  }

  .heading-jumbo {
    font-size: 48px;
    line-height: 60px;
  }

  .heading-jumbo-small {
    font-size: 30px;
    line-height: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 320px;
    aspect-ratio: 16/9;
  }

  .about-text-wrap {
    padding: 40px 30px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 40px;
    padding: 50px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner {
    padding: 20px 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header {
    padding: 60px 30px 40px;
  }

  .page-header h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .content-section,
  .faq-section,
  .form-section,
  .reviews-section,
  .team-section,
  .values-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logos-section,
  .pricing-section,
  .testimonials-section,
  .cta-wrap,
  .motto-wrap,
  .footer-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .section {
    margin-right: 15px;
    margin-left: 15px;
  }

  .heading-jumbo {
    font-size: 40px;
    line-height: 54px;
  }

  .heading-jumbo-small {
    font-size: 26px;
    line-height: 36px;
  }

  .intro-header {
    height: 400px;
  }

  .cta-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  .navigation-wrap {
    padding: 15px;
  }

  .heading-jumbo {
    font-size: 32px;
    line-height: 44px;
  }

  .button.cc-jumbo-button {
    padding: 12px 25px;
    font-size: 12px;
  }

  .intro-header {
    height: 340px;
    padding: 20px;
  }

  .section-heading {
    font-size: 24px;
    line-height: 34px;
  }

  .stat-number {
    font-size: 40px;
  }

  .logos-row {
    gap: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
