* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background: url('https://images.unsplash.com/photo-1581091870622-2c73f3d2ed4a?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  height: 100vh;
}

.navbar {
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
}

.telispac {
  color: #00b1b1;
}

.digital {
  color: #ff9800;
}

.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.work-btn {
  background-color: #007e7e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.lang-toggle {
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 800px;
  padding: 120px 40px 60px;
  /* give some horizontal breathing room */
  display: flex;
  align-items: flex-start;
  /* no max-width here so background spans full width */

  padding-left: 150px;
}

.bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

/* constrain only this */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: 150px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.primary-copy {
  margin: 1rem 0 8px;
  font-size: 1.3rem !important;
  color: #e3e8ee;
}

.rotating-tagline {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  gap: 6px;
}

.tagline-text {
  position: relative;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: inline-block;
  transition: background .3s;
}

/* Ensure hero headline is bright and bold */
.hero-content h1 {
  color: #fff !important;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

/* Highlighted word */
.highlight {
  color: #ff9800 !important;
}

/* Tagline / description */
.primary-copy {
  color: #f0f7ff;
  /* lighter white for contrast */
  font-size: 1.15rem;
  margin: 0.75rem 0 12px;
  line-height: 1.3;
}

/* Buttons */
.get-started {
  background: #ff9800;
  background: linear-gradient(135deg, #ff9800 0%, #ffb347 80%);
  border: none;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px -4px rgba(255, 152, 0, 0.65);
  transition: transform .2s, filter .2s;
}

.get-started:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.explore-services {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s, color .2s;
}

.explore-services:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Make sure hero-content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* If overlay is too dark and washing out buttons/text, slightly lighten it */
.overlay {
  background: linear-gradient(to bottom right,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.55));
}

/* Optional: responsive scaling for headline */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .primary-copy {
    font-size: 1rem;
  }
}

/* Solutions section */
.solutions {
  background: #f7f9fb;
  padding: 100px 2rem 80px;
  color: #1f2d3a;
}

.solutions-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #0f1e33;
}

.section-header p {
  font-size: 1.1rem;
  color: #4f5d6e;
}

.cards {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 40px rgba(31, 45, 58, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.card-title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 177, 177, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #007e7e;
}

.card-title h3 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  color: #0f1e33;
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-left: 0.5rem;
}

.card ul li {
  position: relative;
  padding-left: 1.2em;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #2a3d55;
}

.card ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #007e7e;
  border-radius: 50%;
}

.our-work {
  background: #ffffff;
  padding: 100px 2rem 80px;
  color: #1f2d3a;
}

.work-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.our-work .section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.our-work .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #0f1e33;
}

.our-work .section-header p {
  font-size: 1.05rem;
  color: #4f5d6e;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

.filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.pill {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: #f0f4f8;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background .2s, color .2s;
  color: #3f566e;
}

.pill.active {
  background: #007e7e;
  color: #fff;
}

.pill:not(.active):hover {
  background: #e6eaf2;
}

.work-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(31, 45, 58, 0.06);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.work-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(31, 45, 58, 0.1);
}

.latest-insights {
  background: #ffffff;
  padding: 100px 2rem 80px;
  color: #1f2d3a;
}

.latest-insights .insights-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.latest-insights .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.latest-insights .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #0f1e33;
}

.latest-insights .section-header p {
  font-size: 1.05rem;
  color: #4f5d6e;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

.insight-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 1rem;
}

.insight-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(31, 45, 58, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(31, 45, 58, 0.1);
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #007e7e;
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: none;
  display: inline-block;
}

.card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #586172;
  align-items: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.insight-title {
  font-size: 1.35rem;
  margin: 0;
  font-weight: 700;
  color: #0f1e33;
  line-height: 1.2;
}

.insight-excerpt {
  font-size: 0.95rem;
  margin: 0;
  color: #4f5d6e;
  flex-grow: 1;
}

.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #007e7e;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.digital-products {
  background: #f7f9fb;
  padding: 100px 2rem 80px;
  color: #1f2d3a;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.digital-products .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.digital-products .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #0f1e33;
}

.digital-products .section-header p {
  font-size: 1.05rem;
  color: #4f5d6e;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.5rem;
}

.product-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 1.25rem 1.5rem;
  box-shadow: 0 20px 40px rgba(31, 45, 58, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-wrapper {
  background: #e6f5f5;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007e7e;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.type-badge {
  background: #dff3f3;
  color: #007e7e;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-block;
}

.card-body {
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  margin: 0 0 6px;
  font-weight: 700;
  color: #0f1e33;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.95rem;
  margin: 0;
  color: #4f5d6e;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #007e7e;
}

.status {
  background: #f0f4f8;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4f5d6e;
}

.cta-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

.cta-btn {
  background: #007e7e;
  color: white;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 220px;
}

.our-partners {
  background: #ffffff;
  padding: 100px 2rem 80px;
  color: #1f2d3a;
}

.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.our-partners .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.our-partners .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #0f1e33;
}

.our-partners .section-header p {
  font-size: 1.05rem;
  color: #4f5d6e;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

.partner-cards {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 2rem 0 3rem;
}

.partner-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(31, 45, 58, 0.06);
  display: flex;
  flex-direction: column;
}

.partner-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.partner-body {
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.partner-name {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
  color: #0f1e33;
}

.partner-desc {
  font-size: 0.95rem;
  margin: 0;
  color: #4f5d6e;
}

.trusted-by {
  text-align: center;
  margin-top: 1rem;
}

.trusted-by h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f1e33;
}

.logos-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.logo {
  flex: 0 1 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  object-fit: cover;
  border-radius: 6px;
}

.testimonials {
  background: linear-gradient(135deg, #006e75 0%, #00504f 100%);
  color: #f0f9fa;
  padding: 100px 1.5rem 120px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonials .header h2 {
  font-size: 2.5rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.testimonials .header p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.slides-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity .4s ease;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
  box-sizing: border-box;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.quote {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  font-style: italic;
  line-height: 1.35;
}

.quote .text {
  font-size: 1.1rem;
  margin: 0;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 8px;
  font-style: normal;
}

.avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info .name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.info .role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.nav {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  position: relative;
  flex-shrink: 0;
  transition: background .2s;
}

.nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.dot.active {
  background: #fff;
}

.faq {
  background: #f7f9fb;
  padding: 100px 2rem 100px;
  color: #1f2d3a;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #0f1e33;
}

.faq .section-header p {
  font-size: 1.05rem;
  color: #4f5d6e;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 700px;
}

.accordion {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(31, 45, 58, 0.06);
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #0f1e33;
}

.accordion-button .toggle-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.accordion-button:not(.expanded):hover {
  background: #f0f4f8;
}

.accordion-panel {
  padding: 0 1.5rem 1.25rem;
  display: none;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4f5d6e;
}

.accordion-button.expanded+.accordion-panel {
  display: block;
}

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.contact-btn {
  background: #007e7e;
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}

.start-project {
  background: #f7f9fb;
  padding: 100px 1rem 140px;
  color: #1f2d3a;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.project-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.section-header p {
  font-size: 1rem;
  color: #4f5d6e;
  margin: 0;
  line-height: 1.3;
}

.project-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 320px 1fr;
  /* left fixed narrow card, right flexible form */
  align-items: start;
  justify-content: center;
  margin-top: 1rem;
}

/* Card base */
.info-card,
.form-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 25px 50px rgba(31, 45, 58, 0.08);
  position: relative;
}

/* Contact Info Card */
.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #0f1e33;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.icon-wrapper {
  background: #dff3f3;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: #007e7e;
  box-shadow: inset 0 0 6px rgba(0, 126, 126, 0.2);
}

.info-item .text .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #4f5d6e;
  margin-bottom: 2px;
}

.info-item .text .value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1f2d3a;
}

/* Form Card */
.form-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.row.two-col {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 14px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border .2s, box-shadow .2s;
  background: #f9fcfd;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #007e7e;
  box-shadow: 0 0 0 3px rgba(0, 126, 126, 0.15);
}

.error {
  color: #c0392b;
  font-size: 0.75rem;
  min-height: 16px;
}

.preferred-contact {
  border: none;
  padding: 0;
  margin: 0.5rem 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.contact-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-options label {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.file-input-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.file-input-wrapper input[type="file"] {
  flex: 0 0 auto;
}

.file-info {
  font-size: 0.85rem;
  color: #4f5d6e;
}

.small {
  font-size: 0.65rem;
  color: #6b7a8c;
  margin-top: 2px;
}

.checkbox-wrap {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.submit-row {
  margin-top: 0.5rem;
}

.submit-btn {
  background: #007e7e;
  color: white;
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.6rem;
  color: #586172;
  line-height: 1.2;
}

.disclaimer a {
  color: #007e7e;
  text-decoration: underline;
}

.site-footer {
  background: linear-gradient(135deg, #226ebf 0%, #195ea8 60%);
  color: #f0f7ff;
  padding: 60px 1rem 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-bottom: 30px;
}

.footer-col {
  flex: 1 1 160px;
  min-width: 140px;
}

.brand {
  flex: 1 1 260px;
  min-width: 220px;
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/*
.telispac {
  color: #ffffff;
}

.digital {
  color: #ffd966;
  margin-left: 4px;
}*/

.tagline {
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 8px 0 16px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .15s;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.social-icon {
  width: 32px;
  height: 32px;
  background: #ffffff20;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 8px;
}

.copyright {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .brand .tagline {
    max-width: 100%;
  }
}