*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1f26;
  background-color: #f5f8ff;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: #4da3ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #ffffff;
}

.brand__logo {
  width: 36px;
  height: 36px;
}

.brand__text {
  font-size: 20px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #f2f7ff;
  font-weight: 500;
}

.nav__link {
  transition: opacity 0.2s ease;
}

.nav__link:hover {
  opacity: 0.8;
}

.nav__cta {
  background: #ffffff;
  color: #2d7be5;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(21, 78, 170, 0.15);
}

.nav__app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav__app:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.nav__app--ios {
  background: rgba(255, 255, 255, 0.28);
}

.nav__mobile-only {
  display: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle-line {
  width: 22px;
  height: 2px;
  background: #ffffff;
}

.section {
  padding: 72px 24px;
}

.section--alt {
  background: #ffffff;
}

.section__content {
  max-width: 920px;
  margin: 0 auto;
}

.section--story {
  background: #ffffff;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: #1c1c1c;
}

.story h1 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.story h2 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
}

.story__question {
  text-align: center;
  font-size: 30px;
}

.story p,
.story li {
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
}

.story__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1f4d9b;
}

.story__badge img {
  width: 40px;
  height: 40px;
}

.story__highlight {
  background: #fff6b3;
  padding: 18px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.story__callout {
  background: #f2f2f2;
  border-left: 4px solid #e64545;
  padding: 18px 20px;
  display: grid;
  gap: 6px;
}

.story__block {
  display: grid;
  gap: 14px;
}

.story__bubble {
  background: #e9fbdc;
  border: 1px solid #bfe8a3;
  padding: 16px 20px;
  border-radius: 10px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
}

.story__list {
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.story__intro {
  display: grid;
  gap: 14px;
  text-align: center;
}

.story__intro-left {
  text-align: left;
}

.story__intro-title {
  font-size: 32px;
}

.story__intro-subtitle {
  font-size: 22px;
}

.story__subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #2a2a2a;
}

.story__checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  justify-items: center;
}

.story__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-align: center;
}

.story__checklist img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.story__flow {
  font-size: 18px;
  text-align: center;
}

.story__benefits {
  margin-top: 12px;
}

.story__benefits-title {
  text-align: center;
  font-size: 30px;
}

.story__benefits-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 16px;
  padding: 0;
}

.story__benefits-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.story__benefits-list img {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  flex-shrink: 0;
}

.story__pricing {
  display: grid;
  gap: 16px;
  text-align: center;
}

.story__total {
  font-size: 26px;
}

.story__price-tag {
  background: #f4f4f4;
  padding: 28px 20px;
  border-radius: 12px;
}

.story__price-tag h2 {
  font-size: 32px;
}

.story__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e23d31;
  color: #ffffff;
  padding: 18px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 20px rgba(226, 61, 49, 0.25);
}

.story__cta:hover {
  background: #c93328;
}

.story__cta--wide {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.story__trial {
  display: grid;
  gap: 16px;
  background: #eaf3ff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.story__divider {
  height: 1px;
  background: #dedede;
  margin: 8px 0;
}

.story__note {
  display: grid;
  gap: 16px;
  background: #fafafa;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid #ececec;
}

.feature-bar {
  background: #e9e9e9;
  padding: 18px 24px;
}

.feature-bar__content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: #2f3b52;
}

.feature-bar__item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.feature-bar__item p {
  font-size: 16px;
  line-height: 1.4;
}

.section--features {
  background: #ffffff;
}

.features {
  display: grid;
  gap: 40px;
}

.features__header {
  text-align: center;
  display: grid;
  gap: 12px;
  color: #2f3b52;
}

.features__header h2 {
  font-size: 32px;
  line-height: 1.3;
}

.features__header p {
  font-size: 20px;
  font-style: italic;
  color: #4a5568;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 28px;
}

.features__item {
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: #2f3b52;
}

.features__item img {
  width: 60px;
  height: 60px;
}

.features__item h3 {
  font-size: 18px;
  font-weight: 700;
}

.features__item p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
}

.section--why {
  background: #eaf3ff;
}

.why {
  display: grid;
  gap: 24px;
}

.why__title {
  font-size: 36px;
  color: #2f3b52;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.why__cell--text h3 {
  text-align: left;
  font-size: 20px;
  color: #2f3b52;
  margin-bottom: 8px;
}

.why__cell--text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  text-align: justify;
}

.why__cell--image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
}

.why__cell--image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(47, 59, 82, 0.2);
  background: #ffffff;
  padding: 12px;
}

.section--comparison {
  background: #f3f8ff;
}

.comparison {
  display: grid;
  gap: 32px;
}

.comparison__header {
  text-align: center;
  display: grid;
  gap: 16px;
  color: #2f3b52;
}

.comparison__header h2 {
  font-size: 30px;
  line-height: 1.3;
}

.comparison__header p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a5568;
}

.comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison__card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(30, 64, 175, 0.08);
}

.comparison__card h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 18px;
  color: #2f3b52;
}

.comparison__card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.comparison__card li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  color: #4a5568;
  font-size: 16px;
}

.comparison__card img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.comparison__card--positive h3 {
  color: #2b6cb0;
}

.section--cta {
  background: #f3f8ff;
}

.cta {
  text-align: center;
  display: grid;
  gap: 16px;
  color: #2f3b52;
}

.cta__kicker {
  font-style: italic;
  font-size: 20px;
}

.cta h2 {
  font-size: 34px;
  line-height: 1.3;
}

.cta__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e23d31;
  color: #ffffff;
  padding: 18px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 20px rgba(226, 61, 49, 0.25);
  max-width: 520px;
  margin: 0 auto;
}

.cta__button:hover {
  background: #c93328;
}

.cta__note {
  font-size: 15px;
  color: #4a5568;
}

.section--video {
  background: #ffffff;
  padding-bottom: 36px;
}

.video {
  display: grid;
  gap: 16px;
}

.video__banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #4da3ff;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 12px 12px 0 0;
  font-weight: 600;
}

.video__banner img {
  width: 28px;
  height: 28px;
}

.video__frame {
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
  overflow: hidden;
}

.video__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
}

.section--perks {
  background: #ffffff;
  padding-top: 36px;
}

.perks {
  display: flex;
  justify-content: center;
}

.perks__card {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 18px 36px rgba(30, 64, 175, 0.18);
}

.perks__item {
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
  color: #2f3b52;
  font-weight: 600;
  font-size: 18px;
}

.perks__item img {
  width: 70px;
  height: 70px;
}

.section--testimonials {
  background: #f3f4f6;
}

.testimonials {
  text-align: center;
  display: grid;
  gap: 20px;
  color: #2f3b52;
}

.testimonials__stars {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

.testimonials__stars img {
  width: 40px;
  height: 40px;
}

.testimonials h2 {
  font-size: 34px;
  line-height: 1.3;
}

.testimonials__subtitle {
  font-style: italic;
  color: #4a5568;
  font-size: 18px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonials__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 20px rgba(31, 41, 55, 0.12);
  display: grid;
  gap: 12px;
  text-align: left;
}

.testimonials__card img {
  width: 150px;
  height: 150px;
  border-radius: 18px;
  object-fit: cover;
  margin: 0 auto;
}

.testimonials__card h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.testimonials__card span {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
}

.testimonials__card p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  text-align: justify;
}

.testimonials__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e23d31;
  color: #ffffff;
  padding: 16px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 20px rgba(226, 61, 49, 0.25);
  max-width: 520px;
  margin: 0 auto;
}

.testimonials__cta:hover {
  background: #c93328;
}

.testimonials__note {
  font-size: 15px;
  color: #4a5568;
}

.section--whatsapp {
  background: #eaf3ff;
}

.whatsapp {
  display: grid;
}

.whatsapp__card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(30, 64, 175, 0.1);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
}

.whatsapp__now {
  font-weight: 800;
  letter-spacing: 1px;
  color: #334155;
}

.whatsapp__card h2 {
  font-size: 26px;
  line-height: 1.3;
  color: #2f3b52;
}

.whatsapp__card p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.6;
}

.whatsapp__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #1f2937;
}

.whatsapp__brand img {
  width: 36px;
  height: 36px;
}

.whatsapp__media {
  display: flex;
  justify-content: center;
}

.whatsapp__media img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.whatsapp__text {
  display: grid;
  gap: 12px;
  color: #2f3b52;
}

.whatsapp__text h3 {
  font-size: 22px;
}

.whatsapp__text p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
}

.section--headline {
  background: #eaf3ff;
  text-align: center;
}

.headline {
  display: grid;
  gap: 18px;
  color: #3b485a;
}

.headline__kicker {
  font-style: italic;
  font-size: 22px;
  color: #4a5568;
}

.headline h2 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
}

.headline__arrows {
  display: inline-flex;
  justify-content: center;
}

.headline__arrows img {
  width: 56px;
  height: auto;
}

.section--network {
  background: #eef5ff;
}

.network {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 18px 36px rgba(30, 64, 175, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.network__text {
  display: grid;
  gap: 14px;
  color: #2f3b52;
}

.network__eyebrow {
  color: #4da3ff;
  font-weight: 700;
}

.network__text h2 {
  font-size: 30px;
}

.network__text h3 {
  font-size: 18px;
  margin-top: 4px;
}

.network__text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

.network__list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.network__list li {
  display: grid;
  gap: 4px;
  position: relative;
  padding-left: 18px;
  color: #4a5568;
}

.network__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #4da3ff;
  font-weight: 700;
}

.network__list span {
  font-weight: 700;
  color: #2f3b52;
}

.network__media {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.network__media img {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.2);
  background: #ffffff;
  padding: 12px;
}

.network__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e23d31;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 20px rgba(226, 61, 49, 0.25);
}

.network__cta:hover {
  background: #c93328;
}

.network__link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

.network__link:hover {
  text-decoration: underline;
}

.section--security {
  background: #f7faff;
}

.security {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 18px 36px rgba(30, 64, 175, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.security__media {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.security__media img {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.2);
  background: #ffffff;
  padding: 12px;
}

.security__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e23d31;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 20px rgba(226, 61, 49, 0.25);
}

.security__cta:hover {
  background: #c93328;
}

.security__link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

.security__link:hover {
  text-decoration: underline;
}

.security__text {
  display: grid;
  gap: 14px;
  color: #2f3b52;
}

.security__eyebrow {
  color: #4da3ff;
  font-weight: 700;
}

.security__text h2 {
  font-size: 30px;
}

.security__text h3 {
  font-size: 18px;
  margin-top: 4px;
}

.security__text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

.security__list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.security__list li {
  display: grid;
  gap: 4px;
  position: relative;
  padding-left: 18px;
  color: #4a5568;
}

.security__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #4da3ff;
  font-weight: 700;
}

.security__list span {
  font-weight: 700;
  color: #2f3b52;
}

.section--web {
  background: #f7faff;
}

.section--services {
  background: #eef5ff;
}

.services {
  display: grid;
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: center;
}

.service-card__text {
  display: grid;
  gap: 14px;
  color: #2f3b52;
}

.service-card__eyebrow {
  color: #4da3ff;
  font-weight: 700;
}

.service-card__text h2 {
  font-size: 30px;
}

.service-card__text h3 {
  font-size: 18px;
  margin-top: 4px;
}

.service-card__text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

.service-card__text ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.service-card__text li {
  display: grid;
  gap: 4px;
  position: relative;
  padding-left: 18px;
  color: #4a5568;
}

.service-card__text li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #4da3ff;
  font-weight: 700;
}

.service-card__text span {
  font-weight: 700;
  color: #2f3b52;
}

.service-card__media {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.service-card__media img {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.2);
  background: #ffffff;
  padding: 12px;
}

.service-card__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e23d31;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 20px rgba(226, 61, 49, 0.25);
}

.service-card__cta:hover {
  background: #c93328;
}

.service-card__link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

.service-card__link:hover {
  text-decoration: underline;
}

.web {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 18px 36px rgba(30, 64, 175, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.web__text {
  display: grid;
  gap: 14px;
  color: #2f3b52;
}

.web__eyebrow {
  color: #4da3ff;
  font-weight: 700;
}

.web__text h2 {
  font-size: 30px;
}

.web__text h3 {
  font-size: 18px;
  margin-top: 4px;
}

.web__text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

.web__list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.web__list li {
  display: grid;
  gap: 4px;
  position: relative;
  padding-left: 18px;
  color: #4a5568;
}

.web__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #4da3ff;
  font-weight: 700;
}

.web__list span {
  font-weight: 700;
  color: #2f3b52;
}

.web__media {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.web__media img {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.2);
  background: #ffffff;
  padding: 12px;
}

.web__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e23d31;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 20px rgba(226, 61, 49, 0.25);
}

.web__cta:hover {
  background: #c93328;
}

.web__link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

.web__link:hover {
  text-decoration: underline;
}

.section--leadership {
  background: #0b2b50;
  color: #e5f1ff;
  text-align: center;
}

.leadership {
  display: grid;
  gap: 20px;
}

.leadership h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #7ec3ff;
}

.leadership p {
  font-size: 15px;
  line-height: 1.6;
  color: #c7ddf7;
}

.leadership__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.leadership__gallery img {
  width: 100%;
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
}

.leadership h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
}

.leadership__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e23d31;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 20px rgba(226, 61, 49, 0.25);
  max-width: 520px;
  margin: 0 auto;
}

.leadership__cta:hover {
  background: #c93328;
}

.leadership__note {
  font-size: 14px;
  color: #c7ddf7;
}

.section--final-cta {
  background: #4da3ff;
  color: #ffffff;
  text-align: center;
}

.final-cta {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.final-cta h2 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
}

.final-cta__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e23d31;
  color: #ffffff;
  padding: 16px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 20px rgba(226, 61, 49, 0.25);
}

.final-cta__button:hover {
  background: #c93328;
}

.final-cta__note {
  font-size: 15px;
  color: #e6f1ff;
}

.section--pricing {
  background: #f9fafb;
}

.pricing {
  display: grid;
  gap: 28px;
}

.pricing__header {
  text-align: center;
  display: grid;
  gap: 10px;
  color: #2f3b52;
}

.pricing__header h2 {
  font-size: 36px;
  color: #1e3a8a;
  font-weight: 800;
}

.pricing__header p {
  font-size: 18px;
  color: #4a5568;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing__card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.pricing__card h3 {
  font-size: 20px;
  font-weight: 700;
}

.pricing__price {
  font-size: 30px;
  font-weight: 800;
}

.pricing__price span {
  font-size: 14px;
  font-weight: 600;
}

.pricing__tagline {
  font-size: 14px;
  color: #475569;
}

.pricing__discount {
  font-size: 12px;
  color: #64748b;
}

.pricing__quota {
  font-size: 20px;
  font-weight: 700;
}

.pricing__card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  text-align: left;
}

.pricing__card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: #475569;
}

.pricing__card img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__card--basic {
  background: #d1d5db;
}

.pricing__card--pro {
  background: #0b2b50;
  color: #ffffff;
}

.pricing__card--pro .pricing__tagline,
.pricing__card--pro .pricing__discount,
.pricing__card--pro li {
  color: #dbeafe;
}

.pricing__card--plus {
  background: #4da3ff;
  color: #ffffff;
}

.pricing__card--plus .pricing__tagline,
.pricing__card--plus .pricing__discount,
.pricing__card--plus li {
  color: #e7f1ff;
}

.site-footer {
  background: #4da3ff;
  color: #ffffff;
  padding: 20px 24px;
}

.site-footer__content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.site-footer__brand img {
  width: 34px;
  height: 34px;
}

.site-footer__info {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer__social {
  justify-self: end;
  display: inline-flex;
  align-items: center;
}

.site-footer__social img {
  width: 28px;
  height: 28px;
}

@media (max-width: 720px) {
  .story h1 {
    font-size: 30px;
  }

  .story h2 {
    font-size: 22px;
  }

  .feature-bar__content {
    grid-template-columns: 1fr;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .features__header h2 {
    font-size: 26px;
  }

  .features__header p {
    font-size: 18px;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .why__title {
    font-size: 28px;
  }

  .comparison__grid {
    grid-template-columns: 1fr;
  }

  .comparison__header h2 {
    font-size: 24px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .perks__card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials h2 {
    font-size: 24px;
  }

  .whatsapp__card {
    grid-template-columns: 1fr;
  }

  .whatsapp__card h2,
  .whatsapp__text h3 {
    font-size: 20px;
  }

  .headline h2 {
    font-size: 24px;
  }

  .network {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .network__text h2 {
    font-size: 24px;
  }

  .security {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .security__text h2 {
    font-size: 24px;
  }

  .web {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .web__text h2 {
    font-size: 24px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__text h2 {
    font-size: 24px;
  }

  .leadership__gallery {
    grid-template-columns: 1fr;
  }

  .leadership h2 {
    font-size: 24px;
  }

  .final-cta h2 {
    font-size: 22px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing__header h2 {
    font-size: 24px;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__social {
    justify-self: center;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0 8px;
    display: flex;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.2s ease;
  }

  .nav__menu.is-open {
    max-height: 480px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__mobile-only {
    display: inline-flex;
  }
}
