/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
body {
  font-family: 'Inter', system-ui, sans-serif;
}

.section-header {
  text-align: center;
  max-width: 968px;
  margin: 0 auto 4rem;
}

.section-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--head-light-1);
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--head-light-2);
  margin: 1rem 0;
}

/* ===============
   Hero Section
=============== */
.hero-section {
  align-items: start;
}

.preheadline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.75rem, 1rem, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--head-light-2);
  opacity: 0.95;
}

.main-headline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(3.5rem, 4vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1.8rem;
  letter-spacing: -0.02em;
  color: var(--head-light-1);
}

.highlight-word {
  color: var(--head-light-2);
  position: relative;
  display: inline-block;
}

.tagline {
  font-size: clamp(1.5rem, 2vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: var(--text-light-1);
}

.hero-description {
  line-height: 1.68;
  color: var(--contrast);
  max-width: 725px;
  margin: 0 0 2.2rem;
}

.use-cases {
  font-size: 1.05rem;
  color: var(--text-light-1);
  margin: 0 0 2.5rem;
  font-weight: 500;
}

.foot-notes {
  font-size: 1rem;
  color: var(--text-light-1);
  margin: 2rem 0;
  font-weight: 500;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 3rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light-2);
  gap: 0.5rem;
}

.benefits-grid .hg-wrapper {
  background-color: var(--btn-dark-2);
  width: 52px;
  height: 52px;
}

.cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.1rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--btn-light-2);
  border: 2px solid var(--btn-light-2);
  color: var(--base-3);
  box-shadow: 0 10px 25px rgba(65, 101, 175, 0.22);
}

.btn-primary:hover {
  background: var(--base-3);
  border-color: var(--btn-light-1);
  color: var(--btn-light-1);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(37, 99, 234, 0.3);
}

.btn-outline {
  background: var(--base-3);
  border: 2px solid var(--btn-light-2);
  color: var(--btn-light-2);
  box-shadow: 0 10px 25px rgba(65, 101, 175, 0.22);
}

.btn-outline:hover {
  background: var(--btn-light-1);
  border-color: var(--btn-light-1);
  color: var(--base-3);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(37, 99, 234, 0.3);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-light-1);
}

.trust-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--head-light-2);
  line-height: 1;
}

.trust-text {
  margin: 0;
  line-height: 1.4;
}

.hero-image {
  display: flex;
  flex: 1 1;
  min-width: 0;
  justify-content: end;
}

.hero-image img {
  width: 100%;
  height: 100%;
  max-width: 800px;
  object-fit: cover;
  display: block;
}

/* ===================
   Benefits Section
=================== */

.benefits-section {
  padding: 60px 6%;
  background: var(--base-3);
  color: var(--head-light-1);
}

.benefits-container {
  max-width: 1280px;
  margin: 0 auto;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: var(--base-4);
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 234, 0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(37, 99, 234, 0.1);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--head-light-1);
  margin: 0;
}

/* =================
   Fact Section
================= */

.fact-section {
  padding: 10px 6%;
  background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 100%);
  color: var(--text-dark-1);
  position: relative;
  overflow: hidden;
}

.fact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fact-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.fact-title {
  font-size: clamp(1.2rem, 5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 1.8rem auto;
  color: var(--base-3);
}

.fact-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0 0 2.5rem;
  color: var(--text-dark-1);
}

.floating-text {
  font-size: 1.25rem;
  line-height: 2;
  margin: 0 0 2.5rem;
  color: var(--text-dark-1);
  text-align: right;
}

.highlight {
  color: var(--brand-dark);
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-dark), var(--head-dark-2));
  opacity: 0.4;
  border-radius: 2px;
}

/* ====================
   Carousel Section
==================== */

.carousel-section {
  padding: 60px 5%;
  background: var(--base-4);
}

.carousel-container {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  margin-top: 10px;
  will-change: transform;
}

.carousel-track.autoplay {
  animation: slide-one-by-one 25s linear infinite;
}

.carousel-item {
  flex: 0 0 20%;
  padding: 0 14px;
  box-sizing: border-box;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.carousel-item:hover,
.carousel-item:focus-within {
  transform: translateY(-8px);
}

.carousel-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-item .image-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 12px rgba(9, 17, 36, 0.10), 0 4px 12px rgba(75, 84, 101, 0.08);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  aspect-ratio: 4 / 5;
}
.carousel-item .image-wrapper.square {
  aspect-ratio: 1 / 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.42s ease;
}

.carousel-item:hover .image-wrapper {
  box-shadow: 0 10px 16px rgba(9, 17, 36, 0.16), 0 8px 20px rgba(75, 84, 101, 0.12);
}

.carousel-item:hover img {
  transform: scale(1.06);
}

.carousel-item .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 135deg, rgba(65, 102, 177, 0.14) 0%, rgba(37, 99, 234, 0.08) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.carousel-item:hover .image-wrapper::after {
  opacity: 1;
}

.item-caption {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.24;
  color: var(--head-light-1, var(--head-light-1));
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.carousel-item:hover .item-caption {
  color: var(--btn-light-2, var(--head-light-2));
}

.item-description {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-light-1);
  margin: 0 auto;
  max-width: 92%;
}

.carousel-item .item-caption::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 6px auto 0;
  background: var(--btn-light-2, var(--head-light-2));
  border-radius: 2px;
  opacity: 0;
  transition: width 0.4s ease;
}

.carousel-item:hover .item-caption::after {
  opacity: 0.75;
  width: 64px;
}

@keyframes slide-one-by-one {
  0%   { transform: translateX(0); }
  19%  { transform: translateX(0); }
  20%  { transform: translateX(-20%); }
  39%  { transform: translateX(-20%); }
  40%  { transform: translateX(-40%); }
  59%  { transform: translateX(-40%); }
  60%  { transform: translateX(-60%); }
  79%  { transform: translateX(-60%); }
  80%  { transform: translateX(-80%); }
  99%  { transform: translateX(-80%); }
  100% { transform: translateX(-100%); }
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

/* ================
   Story Section
================ */

.story-section {
  background: var(--bg-dark-1);
  color: var(--text-dark-1);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(102, 166, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.story-section .container {
  max-width: 90vw;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  gap: 3rem;
  text-align: center;
  align-items: center;
}

.content-box {
  flex: 1;
  position: relative;
}

.headline-area {
  flex: 1;
}

.details-area {
  flex: 2;
}

.main-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--base-3);
  line-height: 1.1;
  margin-bottom: 16px;
}

.main-subheading {
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  color: var(--brand-dark);
  font-weight: 700;
  margin-bottom: 32px;
}

.description-box {
  background: var(--bg-dark-2);
  padding: 28px 32px;
  border-radius: 12px;
  border: 1px solid rgba(102, 166, 255, 0.12);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-dark-1);
}

.description-box strong {
  color: var(--brand-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 60px auto;
  max-width: 1100px;
}

.stat-card {
  background: var(--bg-dark-2);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(102, 166, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(102, 166, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card.highlight {
  background: linear-gradient(135deg, rgba(102, 166, 255, 0.12), rgba(102, 166, 255, 0.05));
  border-color: rgba(102, 166, 255, 0.35);
}

.stat-value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  color: var(--head-dark-1);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-text {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-dark-1);
  margin-bottom: 12px;
}

.stat-source {
  font-size: 0.95rem;
  color: var(--text-dark-2);
  font-style: italic;
}

.cta-area {
  margin-top: 40px;
}

/* ==================
   Pricing Section
================== */

.pricing-section {
  padding: 60px 0;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-table {
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  background: var(--base-3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.09);
  border: 1px solid var(--contrast-4);
}

.compare-table {
  display: grid;
  grid-template-columns: 250px repeat(2, 1fr);
  background: var(--base-3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.09);
  border: 1px solid var(--contrast-4);
}

.feature-header,
.plan-header {
  min-height: 96px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid var(--contrast-4);
  border-right: 1px solid var(--contrast-4);
  background: var(--base-5);
}

.pricing-table .feature-header,
.pricing-table .plan-header {
  min-height: 180px;
  padding: 24px 20px;
}

.feature-header {
  text-align: left;
  font-weight: 500;
  color: var(--text-light-1);
  position: sticky;
  left: 0;
  z-index: 3;
}

.plan-name {
  font-size: 1.3rem;
  color: var(--head-light-1);
  padding: 12px;
}

.plan-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--head-light-2);
}

.plan-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light-1);
}

.popular .plan-header {
  background: var(--head-light-2)0f;
  border-top: 4px solid var(--head-light-2);
  position: relative;
}

.popular .plan-header::after {
  content: "Most Popular";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--head-light-2);
  color: var(--base-3);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 15px;
  padding-bottom: 5px;
  border-radius: 20px;
}

.feature-name,
.feature-item {
  padding: 15px 20px;
  border-bottom: 1px solid var(--contrast-5);
  border-right: 1px solid var(--contrast-4);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-light-2);
  background: var(--base-3);
}

.feature-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-item:nth-child(odd) {
  background: var(--base-4);
}

.plan-column.last .plan-header,
.plan-column.last .feature-item {
  border-right: none;
}

.feature-name {
  position: sticky;
  left: 0;
  z-index: 2;
}

.feature-name-mobile {
  display: none;
}

.feature-value {
  font-weight: 500;
}

.feature-name,
.feature-name-mobile,
.feature-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.check {
  color: var(--head-light-2);
}

.unavailable {
  color: var(--contrast-5);
}

.cta-row {
  grid-column: 1 / -1;
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid var(--contrast-4);
}

/* ==================
   Services Section
================== */
.services-section {
  padding: 30px 6%;
  background: linear-gradient(135deg, var(--bg-dark-2) 0%, var(--bg-dark-1) 100%);
  color: var(--text-dark-1);
  position: relative;
  overflow: hidden;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  text-align: center;
}

.icon-grid .hg-wrapper {
  width: 52px;
  height: 52px;
  background: var(--base-3);
  margin: 2rem auto;
}

.icon-grid h3 {
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--head-dark-1);
}

/* =================
   Why Us section
================= */

.why-us-section {
  padding: 30px 6%;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.8rem;
}

.feature-card-2 {
  align-items: center;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card-2:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.feature-card-2 h3 {
  color: var(--btn-light-1);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card-2 p {
  color: var(--text-1);
}

/* ================
   Model section
================ */

.model-section {
  padding: 30px 6%;
  background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 100%);
  color: var(--text-dark-1);
  position: relative;
  overflow: hidden;
}

.vertical {
    font-size: 5rem;
    text-transform: uppercase;
    opacity: 0.3;
    font-weight: 900;
    text-align: center;
}

/* ===================
   Timeline section
=================== */
.timeline {
  position: relative;
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.8rem;
}

.step {
  position: relative;
  margin-bottom: 2.5rem;
  padding-top: 40px;
  padding-left: 40px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 4px;
  width: 64px;
  height: 64px;
  background: var(--base-3);
  border: 4px solid var(--btn-light-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--btn-light-1);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
  background: linear-gradient(135deg, var(--base-3) 0%, var(--base-4) 100%);
}

.step-card {
  background: var(--base-3);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid var(--text-light-1);
  transition: all 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.1);
  border-color: var(--btn-dark-2);
}

.step h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-light);
  margin-bottom: 1rem;
}

/* ==============
   FAQ section
============== */
.faq-item {
  background: var(--base-3);
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border: 1px solid var(--text-dark-1);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--head-light-1);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover,
.faq-question.active {
  background: var(--brand-light);
  color: var(--head-dark-1);
}

.faq-question .icon {
  font-size: 1.4rem;
  color: var(--brand-light);
  transition: transform 0.3s ease;
}

.faq-question:hover .icon,
.faq-question.active .icon {
  color: var(--head-dark-1);
}

.faq-question.active .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--base);
  padding: 0 1.5rem;
  color: var(--text-light-2);
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 1200px;
  padding: 1.5rem;
}

.check-list {
  list-style: none;
  font-size: 1.1rem;
  color: var(--text-2);
  text-align: left;
}

.check-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.2rem;
}

.check-list li::before {
  content: "\2714";
  position: absolute;
  left: 0;
}

/* ===============
   Score sction
=============== */

.score-section .content-wrapper {
  padding: 60px 6%;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--bg-dark-2) 100%);
  border-radius: 50px;
  color: var(--text-dark-1);
  position: relative;
  overflow: hidden;
}

.security-table-container {
  margin: 2.5rem auto;
  padding: 0 1rem;
}

.security-table {
  max-width: 760px;
  margin: 0 auto 60px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--base-3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.security-table th,
.security-table td {
  padding: 1.1rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--text-dark-1);
}

.security-table th {
  background: var(--base-4);
  font-weight: 600;
  color: var(--btn-dark-1);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.security-table td {
  font-size: 1rem;
  color: var(--btn-dark-1);
  line-height: 1.5;
}

.security-table tr:last-child td {
  border-bottom: none;
}

.security-table td.status-unknown {
  font-size: 1.6rem;
  font-weight: bold;
  color: #dc2626;
  cursor: help;
  transition: all 0.2s ease;
  line-height: 1;
  text-align: center;
}

/* ================
   Audit section
================ */

.audit-section .content-wrapper {
  padding: 60px 6%;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--bg-dark-2) 100%);
  border-radius: 50px;
  color: var(--text-dark-1);
  position: relative;
  overflow: hidden;
}

/* =================
   Contact Form 7
================= */
.cf7-modern-wrapper {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 0.5rem;
}

.cf7-audit-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--base-3) 0%, var(--base-4) 100%);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.cf7-floating-group {
  position: relative;
}

.cf7-floating-group label {
  position: absolute;
  left: 1rem;
  top: 0;
  color: var(--text-light-2);
  font-size: 1rem;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.25s ease;
  transform-origin: left top;
}

.cf7-floating-group input:focus + label,
.cf7-floating-group input:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.9rem;
  font-size: 0.82rem;
  color: var(--text-light-1);
  background: linear-gradient(180deg, var(--base-3) 50%, var(--base-4) 50%);
  padding: 0 0.4rem;
  font-weight: 500;
}

.wpcf7-form-control[type="text"],
.wpcf7-form-control[type="email"],
.wpcf7-form-control[type="url"] {
  width: 100%;
  height: 64px;
  margin-top: 4px;
  padding: 1rem;
  border: 1px solid var(--contrast-5);
  border-radius: 12px;
  font-size: 1.05rem;
  color: var(--btn-dark-1);
  background: var(--base-3);
  transition: all 0.22s ease;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.03);
}

.wpcf7-form-control:focus {
  border-color: var(--text-light-1);
  box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.12);
  outline: none;
}

.cf7-submit-wrap {
  text-align: center;
  margin-top: 1.8rem;
}

.wpcf7-submit,
input[type="submit"] {
  width: 100%;
  padding: 1.15rem 2rem;
  background: var(--btn-light-2);
  border: 2px solid var(--btn-light-2);
  color: var(--base-3);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(65, 101, 175, 0.22);
}

.wpcf7-submit:hover,
input[type="submit"]:hover {
  background: var(--base-3);
  border-color: var(--btn-light-1);
  color: var(--btn-light-1);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(37, 99, 234, 0.3);
}

.wpcf7-submit:active {
  transform: translateY(0);
}

.wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 1.1rem;
  border-radius: 12px;
  font-size: 0.98rem;
  text-align: center;
}

.wpcf7-mail-sent-ok {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #86efac;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.wpcf7-not-valid-tip {
  position: relative;
  left: 1rem;
  text-align: left;
  font-size: 0.8rem;
}

.wpcf7-spinner {
  top: -42px;
  right: -50%;
  transform: translateX(-100%);
}

.cf7-modern-wrapper .wpcf7-spinner {
  top: -45px;
  transform: translateX(15px);
}

.wpcf7 form .wpcf7-response-output {
    position: relative;
    bottom: 5rem;
    border: none;
    color: var(--text-light-1);
    padding: 0 30px;
}

.security-table-container .wpcf7 form .wpcf7-response-output,
.security-table-container .wpcf7 form .wpcf7-not-valid-tip {
    color: var(--head-dark-1);
}

/* =========
   Footer
========= */
.footer-widgets {
    background-color: var(--bg-dark-2);
  color: var(--text-dark-2);
}

.footer-widgets a {
  color: var(--text-dark-2);
  text-decoration: none;
}

.footer-widgets a:hover {
  color: var(--text-dark-1);
}

.site-info {
    background-color: var(--bg-dark-1);
  color: var(--text-dark-1);
}

/* ==========
   Icons
========== */
.hg-wrapper {
  padding: 10px;
  border-radius: 16px;
}

.hg-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  background-image: url('assets/sprite/icon-sprite.png');
  background-repeat: no-repeat;
  background-size: 320px 192px;
}

.hg-icon-32 {
  width: 32px;
  height: 32px;
}

.hg-uptime { background-position: 0 0; }
.hg-secure { background-position: -64px 0; }
.hg-backups { background-position: -128px 0; }
.hg-monitoring { background-position: 0 -64px; }
.hg-firewall { background-position: -64px -64px; }
.hg-manager { background-position: -128px -64px; }
.hg-sales { background-position: -192px 0; }
.hg-partner { background-position: -192px -64px; }
.hg-advisor { background-position: -256px 0; }
.hg-support { background-position: -256px -64px; }
.hg-247 { background-position: 0 -128px; }
.hg-performance { background-position: -32px -128px; }
.hg-security { background-position: -64px -128px; }
.hg-migration { background-position: -96px -128px; }
.hg-cloud { background-position: -0 -160px; }
.hg-dedicated { background-position: -32px -160px; }
.hg-vps { background-position: -64px -160px; }
.hg-uptime-2 { background-position: -96px -160px; }
.hg-support-2 { background-position: -128px -128px; }
.hg-servers { background-position: -160px -128px; }
.hg-monitoring-2 { background-position: -192px -128px; }
.hg-growth { background-position: -128px -160px; }
.hg-support-3 { background-position: -160px -160px; }

/* Retina/high-DPI support */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hg-icon {
    background-image: url('assets/sprite/icon-sprite-2x.png');
  }
}

/* =============
   Responsive
============= */
@media (max-width: 768px) {
  .header-widget { display: none !important; }
  .hero-section { padding: 0; }
  .hero-image { max-width: 100vw; }
  .preheadline { margin-bottom: 0.5rem; }
  .tagline { font-size: 1rem; }
  .main-headline { font-size: 2.2rem; line-height: 1.4; margin: 1rem 0 1.8rem; }
  .cta-group, .hero-cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; padding: 1.1rem 2rem; }
  .benefits-section { padding: 20px 10px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefits-row { grid-template-columns: 1fr; gap: 1.4rem; }
  .benefit-item { padding: 1.8rem 1.4rem; }
  .benefit-icon-img { width: 70px; height: 70px; }
  .fact-section { padding: 30px 10px 10px; }
  .fact-title { font-size: clamp(2rem, 6vw, 2.8rem); line-height: 1.5; }
  .fact-description { font-size: 1.1rem; }
  .floating-text { text-align: center; }
  .carousel-section { padding: 30px 10px; }
  .carousel-track.autoplay-sm { animation: slide-one-by-one 25s linear infinite; }
  .carousel-item { flex: 0 0 100%; }
  @keyframes slide-one-by-one {
    0%   { transform: translateX(0); }
    19%  { transform: translateX(0); }
    20%  { transform: translateX(-100%); }
    39%  { transform: translateX(-100%); }
    40%  { transform: translateX(-200%); }
    59%  { transform: translateX(-200%); }
    60%  { transform: translateX(-300%); }
    79%  { transform: translateX(-300%); }
    80%  { transform: translateX(-400%); }
    99%  { transform: translateX(-400%); }
    100% { transform: translateX(-500%); }
  }
  .section-title { line-height: 1.2; }
  .stats-grid { grid-template-columns: 1fr; }
  .story-section { padding: 30px 10px; }
  .content-wrapper { flex-direction: column; gap: 0; }
  .headline-area, .main-subheading { margin: 0; }
  .feature-column { display: none; }
  .pricing-table, .compare-table { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 16px; padding-bottom: 50px; border: none; box-shadow: none; }
  .plan-column { flex: 0 0 88vw; max-width: 82vw; scroll-snap-align: center; background: var(--base-3); border-radius: 16px; overflow: hidden; box-shadow: 0 5px 5px rgba(0,0,0,0.1); border: 1px solid var(--contrast-4); }
  .plan-header { padding: 28px 20px 20px; background: var(--base-5); border-right: none; }
  .popular .plan-header::after { font-size: 0.8rem; }
  .plan-name { font-size: 1.5rem; }
  .plan-price { font-size: 2.4rem; }
  .plan-price small { font-size: 1rem; }
  .feature-item { justify-content: space-between; padding: 14px 20px; border-top: 1px solid var(--contrast-5); border-right: none; }
  .feature-name-mobile { display: block; }
  .feature-value { text-align: right; }
  .cta-row { padding: 24px 20px 28px; border-top: 1px solid var(--contrast-5); }
  .icon-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-card { padding: 28px 24px; }
  .features-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .step-number { width: 56px; height: 56px; font-size: 1.35rem; left: 4px; }
  .timeline { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .timeline::before { left: 28px; }
  .step-card { padding: 1.5rem; }
  .step ul { margin: 0; }
  .faq-question { font-size: 1.05rem; padding: 1.1rem 1.3rem; }
  .faq-answer.open { padding: 1.2rem 1.3rem; }
  .cf7-modern-wrapper { grid-template-columns: 1fr; }
  .cf7-audit-wrapper { grid-template-columns: 1fr; padding: 2rem 1.4rem; margin: 1.5rem 1rem; border-radius: 16px; }
  .vertical { font-size: 2rem; }
  .security-table-container { padding: 0; }
  p.cf7-field, .cf7-floating-group p { margin-bottom: 0; }
  .main-heading { font-size: 2.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .header-widget { position: fixed; top: 100px; right: 0; transform: rotateZ(90deg) translate(50%, -100%); z-index: 1000; }
  .main-navigation .main-nav ul li a { padding-left: 15px; padding-right: 15px; line-height: 30px; }
  .benefits-row { grid-template-columns: 1fr 1fr 1fr; }
  .carousel-track.autoplay-md { animation: slide-one-by-one 25s linear infinite; }
  .carousel-item { flex: 0 0 33.33%; }
  @keyframes slide-one-by-one {
    0%   { transform: translateX(0); }
    19%  { transform: translateX(0); }
    20%  { transform: translateX(-33.333%); }
    39%  { transform: translateX(-33.333%); }
    40%  { transform: translateX(-66.666%); }
    59%  { transform: translateX(-66.666%); }
    60%  { transform: translateX(-100%); }
    79%  { transform: translateX(-100%); }
    80%  { transform: translateX(-133.33%); }
    99%  { transform: translateX(-133.33%); }
    100% { transform: translateX(-166.66%); }
  }
  .content-wrapper { flex-direction: column; gap: 0; }
  .headline-area, .main-subheading { margin: 0; }
  .main-heading { font-size: 3rem; }
  .pricing-table { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 16px; padding-bottom: 50px; border: none; box-shadow: none; }
  .feature-column { flex: 0 0 25vw; background: var(--base-3); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); border: 1px solid var(--contrast-4); }
  .plan-column { flex: 0 0 33.333vw; max-width: 33.333vw; scroll-snap-align: start; background: var(--base-3); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); border: 1px solid var(--contrast-4); }
  .plan-header { padding: 28px 20px 20px; background: var(--base-5); border-right: none; }
  .popular .plan-header::after { font-size: 0.8rem; }
  .plan-name { font-size: 1.5rem; }
  .plan-price { font-size: 2.4rem; }
  .plan-price small { font-size: 1rem; }
  .feature-item { padding: 14px 20px; border-top: 1px solid var(--contrast-5); border-right: none; }
  .cta-row { padding: 24px 20px 28px; border-top: 1px solid var(--contrast-5); }
  .icon-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (min-width: 1025px) and (max-width: 1399px) {
  .header-widget {position: fixed; top: 50vh; right: 0; transform: rotateZ(90deg) translateY(-100%); z-index: 1000; }
  .hero-inner { padding: 0 30px; }
  .hero-description { font-size: clamp(1rem, 1.4vw, 1.2rem); }
  .carousel-track.autoplay-lg { animation: slide-one-by-one 25s linear infinite; }
  .carousel-item { flex: 0 0 25%; }
  @keyframes slide-one-by-one {
    0%   { transform: translateX(0); }
    19%  { transform: translateX(0); }
    20%  { transform: translateX(-25%); }
    39%  { transform: translateX(-25%); }
    40%  { transform: translateX(-50%); }
    59%  { transform: translateX(-50%); }
    60%  { transform: translateX(-75%); }
    79%  { transform: translateX(-75%); }
    80%  { transform: translateX(-100%); }
    99%  { transform: translateX(-100%); }
    100% { transform: translateX(-125%); }
  }
  .main-heading { font-size: 3rem; }
}

@media (min-width: 1400px) {
  .carousel-track.autoplay-xl { animation: slide-one-by-one 25s linear infinite; }
  .hero-inner { padding: 2rem 0 0 6rem; }
  .hero-description { font-size: clamp(1.2rem, 1.4vw, 1.3rem); }
}
