/* =========================================================
   GO TECH SOLUTIONS — SERVICES PAGE STYLES
   ========================================================= */

/* Services Hero Specific */
.services-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.services-hero .hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

.service-feature-list li,
.automate-list li,
.expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}

/* =========================================================
   BUILD PRODUCTS SECTION
   ========================================================= */
.build-section {
  padding: 80px 24px;
  background: #fff;
}

.build-services-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.build-service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.build-service-item:hover {
  border-color: #c2d4e8;
  box-shadow: var(--shadow-hover);
}

.build-service-item:nth-child(even) .build-service-image {
  order: 2;
}

.build-service-item:nth-child(even) .build-service-content {
  order: 1;
}

.build-service-image {
  position: relative;
  width: 100%;
  min-height: 100%;
  align-self: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, #E6F4FE 0%, #EEF2F7 100%);
}

.build-service-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.build-service-item:hover .build-service-image img {
  transform: scale(1.03);
}

.build-service-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 36px;
  border-left: 1px solid var(--line);
}

.build-service-item:nth-child(even) .build-service-content {
  border-left: none;
  border-right: 1px solid var(--line);
}

.build-service-badge {
  margin-bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.build-service-badge i {
  width: 24px;
  height: 24px;
}

.badge-green {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.badge-pink {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.badge-purple {
  background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
}

.badge-blue {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.badge-yellow {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.build-service-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.build-service-content p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tech-tags span {
  background: var(--blue-pill-bg);
  color: var(--blue-500);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #C8E5FA;
}

.build-service-content .learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-500);
  text-decoration: none;
  transition: gap 0.2s;
  margin-top: auto;
  padding-top: 8px;
}

.build-service-content .learn:hover {
  gap: 10px;
}

.build-service-content .learn i {
  width: 16px;
  height: 16px;
}

@media (max-width: 1100px) {
  .build-service-item {
    grid-template-columns: 1fr;
  }

  .build-service-item:nth-child(even) .build-service-image,
  .build-service-item:nth-child(even) .build-service-content {
    order: 0;
  }

  .build-service-content,
  .build-service-item:nth-child(even) .build-service-content {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--line);
  }

  .build-service-image {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .build-service-content {
    padding: 24px;
  }

  .build-service-image {
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }
}

/* =========================================================
   AUTOMATE & SCALE SECTION
   ========================================================= */
.automate-section {
  padding: 80px 24px;
  background: #fff;
}

.automate-rows {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.automate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.automate-row:hover {
  border-color: #c2d4e8;
  box-shadow: var(--shadow-hover);
}

.automate-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 32px 36px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.automate-row:not(.automate-row-reverse) .automate-card {
  border-right: 1px solid var(--line);
}

.automate-row-reverse .automate-card {
  border-left: 1px solid var(--line);
}

.automate-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}


.build-service-badge .lucide, .automate-icon .lucide {
    width: 22px;
    height: 22px;
}

.automate-icon i {
  width: 22px;
  height: 22px;
}

.ic-navy {
  background: linear-gradient(135deg, #0A1733 0%, #152A52 100%);
}

.ic-orange {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
}

.ic-yellow {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.ic-purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.ic-pink {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.automate-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.automate-card p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

.automate-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-500);
  text-decoration: none;
  width: fit-content;
  transition: gap 0.2s;
  margin-top: auto;
  padding-top: 8px;
}

.automate-card .learn:hover {
  gap: 10px;
}

.automate-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

.automate-visual {
  position: relative;
  width: 100%;
  min-height: 100%;
  align-self: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, #E6F4FE 0%, #EEF2F7 100%);
}

.automate-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.automate-row:hover .automate-visual img {
  transform: scale(1.03);
}

.expertise-service-featured .expertise-service-media {
  min-height: 0;
}

.project-copy h2 .accent {
  color: var(--blue-400);
}

.project-form select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 15px;
  appearance: none;
  color-scheme: light;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% + 2px), calc(100% - 16px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.project-form select option {
  color: #0a1733;
  background-color: #fff;
}

@media (max-width: 1100px) {
  .automate-row {
    grid-template-columns: 1fr;
  }

  .automate-row .automate-visual {
    order: -1;
  }

  .automate-card,
  .automate-row:not(.automate-row-reverse) .automate-card,
  .automate-row-reverse .automate-card {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--line);
  }

  .automate-visual {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }

  .automate-card {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .automate-visual {
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }

}

/* =========================================================
   EXPERTISE SECTION
   ========================================================= */
.expertise-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
}

.expertise-services-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 48px;
}

.expertise-service-item {
  display: grid;
  grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.expertise-service-item:hover {
  border-color: #c2d4e8;
  box-shadow: var(--shadow-hover);
}

.expertise-service-media {
  position: relative;
  min-height: 100%;
  align-self: stretch;
  background: linear-gradient(135deg, #E6F4FE 0%, #EEF2F7 100%);
  overflow: hidden;
}

.expertise-service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.expertise-service-item:hover .expertise-service-media img {
  transform: scale(1.04);
}

.expertise-service-content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  border-left: 1px solid var(--line);
}

.expertise-service-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.expertise-service-badge i {
  width: 24px;
  height: 24px;
}

.ic-blue {
  background: linear-gradient(135deg, #0F8DEB 0%, #2563EB 100%);
}

.ic-purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.ic-orange {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

.expertise-service-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.expertise-service-content p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.75;
}

.expertise-service-content .learn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-500);
  text-decoration: none;
  transition: gap 0.2s;
}

.expertise-service-content .learn:hover {
  gap: 10px;
}

.expertise-service-content .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-service-content .tech-tags span {
  background: var(--blue-pill-bg);
  color: var(--blue-500);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #C8E5FA;
}

@media (max-width: 1100px) {
  .expertise-service-item {
    grid-template-columns: 1fr;
  }

  .expertise-service-content {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .expertise-service-media {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .expertise-service-content {
    padding: 24px;
  }

  .expertise-service-media {
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }
}


.project-section {
  padding: 80px 24px;
  margin-top: 0;
  background: radial-gradient(circle at top left, rgba(15, 141, 235, 0.14), transparent 35%),
    #071427;
  color: #fff;
}

.page-services .expertise-section {
  padding-bottom: 80px;
  margin-bottom: 0;
}

.page-services .project-section {
  margin-top: 0;
}

.project-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 520px);
  gap: 40px;
  align-items: start;
}

.project-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 24px 0 24px;
  max-width: 600px;
}

.project-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  line-height: 1.85;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
}

.project-card-top {
  margin-bottom: 28px;
}

.project-card-top h3 {
  color: #fff;
  font-size: 24px;
  margin: 18px 0 10px;
}

.project-card-top p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

.project-card-pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  margin-bottom: 16px;
  background: rgba(15, 141, 235, 0.14);
  color: #A7D8FF;
  border: 1px solid rgba(15, 141, 235, 0.24);
}

.project-form .input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-group span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
}

.project-card .form-group select,
.project-form .form-group select {
  color-scheme: light;
}

.project-card .form-group select option,
.project-form .form-group select option {
  color: #0a1733;
  background-color: #fff;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.project-form > .btn-block,
.project-form > .btn-primary,
.project-form > button[type="submit"],
.service-form > .btn-block,
.service-form > .btn-primary,
.service-form > button[type="submit"] {
  margin-top: 20px;
}

.form-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.7;
}

.contact-row {
  max-width: 1180px;
  margin: 48px auto 0;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  flex: 1 1 260px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.service-detail-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 460px);
  gap: 40px;
  align-items: start;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.hero-highlights article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}

.hero-copy h1 {
  margin-top: 18px;
}

.overview-grid,
.tool-grid,
.industry-grid,
.case-grid,
.reason-grid,
.testimonial-grid,
.recognition-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.overview-grid,
.tool-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-grid,
.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recognition-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.overview-card,
.tool-card,
.industry-card,
.case-card,
.reason-card,
.testimonial-card,
.recognition-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.overview-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}

.overview-card h3,
.tool-card h3,
.reason-card h3,
.case-card h3,
.recognition-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.overview-card p,
.tool-card p,
.case-card p,
.reason-card p,
.testimonial-card p,
.recognition-card p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.overview-card ul,
.case-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.overview-card li,
.case-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  font-size: 14px;
  color: var(--text-body);
}

.tool-card .tech-tags {
  margin-top: 18px;
  gap: 10px;
}

.tool-card .tech-tags span {
  background: var(--bg-grey-2);
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #E3EDF7;
}

.reason-card,
.recognition-card {
  min-height: 170px;
}

.industry-section {
  padding: 80px 0;
  background: #fff;
}

.industry-section .section-h2,
.industry-section .pill {
  color: var(--text-dark);
}

.industry-section .pill-light {
  background: var(--blue-pill-bg);
  border-color: #C8E5FA;
  color: var(--blue-500);
}

.industry-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  min-height: 100px;
  background: #0A1733;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 16px;
}

.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.case-card h3 {
  color: var(--text-dark);
}

.case-card p,
.case-card li {
  color: var(--text-body);
}

.case-studies-section {
  padding: 80px 0;
  background: #fff;
  color: var(--text-dark);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-card strong {
  margin-top: auto;
  color: var(--text-dark);
}

.faq h2 {
  margin-bottom: 36px;
}

@media (max-width: 1080px) {
  .service-detail-hero .hero-grid,
  .overview-grid,
  .tool-grid,
  .industry-grid,
  .case-grid,
  .reason-grid,
  .testimonial-grid,
  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
  }
}

@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-panel {
    padding: 26px;
  }

  .hero-highlights article {
    padding: 20px;
  }

  .overview-card,
  .tool-card,
  .industry-card,
  .case-card,
  .reason-card,
  .testimonial-card,
  .recognition-card {
    padding: 24px;
  }
}


/* =========================================================
   MOBILE APP SERVICE PAGE STYLES
   ========================================================= */
.service-detail-hero {
  position: relative;
  padding-bottom: 54px;
  background: radial-gradient(circle at 16% 15%, rgba(38, 196, 255, 0.14), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(18, 96, 225, 0.22), transparent 20%),
    linear-gradient(180deg, #061726 0%, #08223C 100%);
  color: #fff;
  overflow: hidden;
}

.service-detail-hero .hero-decor {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 24% 78%, rgba(44, 118, 214, 0.12), transparent 20%);
  pointer-events: none;
}

.service-detail-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 460px);
  gap: 48px;
  align-items: stretch;
  position: relative;
}

.service-detail-hero .hero-copy {
  max-width: 640px;
}

.service-detail-hero .hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 18px 0 24px;
}

.service-detail-hero .hero-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.hero-panel {
  position: relative;
  background: rgba(11, 23, 45, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 12c-2-2.67-4-4-6-4a4 4 0 1 0 0 8c2 0 4-1.33 6-4Zm0 0c2 2.67 4 4 6 4a4 4 0 1 0 0-8c-2 0-4 1.33-6 4Z'/%3E%3C/svg%3E");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.panel-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.panel-caption-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.panel-header h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
}

.panel-header p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 26px;
}

.service-form {
  display: block;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
}

.service-form select {
  appearance: none;
  color-scheme: light;
}

.service-form select option {
  color: #0a1733;
  background-color: #fff;
}

.service-form textarea {
  min-height: 100px;
  resize: vertical;
}

.service-form input::placeholder,
.service-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.service-form select {
  color: rgba(255, 255, 255, 0.85);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-benefits {
  padding: 36px 0 56px;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid #E9EFF9;
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(16, 58, 103, 0.08);
  text-align: center;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.benefit-card h3 {
  font-size: 17px;
  margin-bottom: 0;
}

.benefit-card p {
  max-width: 320px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .service-detail-hero .hero-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .service-detail-hero {
    padding-bottom: 32px;
  }

  .service-detail-hero .hero-copy h1 {
    font-size: 36px;
  }

  .hero-panel {
    padding: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 24px;
  }
}

.ic-cyan {
  background: linear-gradient(135deg, #4FD1FF 0%, #38BDF8 100%);
}

.benefit-card p {
  max-width: 320px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .hero-benefits {
    padding: 24px 0 48px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.panel-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.service-details {
  padding: 84px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-body);
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step span {
  color: #67C8FA;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-display);
  margin-bottom: 8px;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  display: block;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--text-dark);
}

.process-step p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 0;
}

.service-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.service-split h2 {
  font-size: 34px;
  line-height: 1.1;
}

.service-cta-panel {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #F6F9FF 0%, #DEE7F3 100%);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  background: #0A1733;
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  align-items: center;
  box-shadow: 0 32px 64px rgba(10, 23, 51, 0.15);
}

.cta-panel h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  margin-bottom: 12px;
  color: #fff;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
}

@media (max-width: 1080px) {
  .service-detail-hero .hero-grid,
  .cta-panel,
  .service-split {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .service-detail-hero .hero-copy h1 {
    font-size: 36px;
  }

  .hero-panel {
    padding: 26px;
  }

  .service-split,
  .cta-panel {
    gap: 18px;
  }
}


.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(15, 141, 235, 0.16);
  color: #A7D8FF;
}

.contact-item p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.contact-item strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 15px;
}

/* =========================================================
   CTA FOOTER SECTION
   ========================================================= */
.cta-footer {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0A1733 0%, #152A52 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 141, 235, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-width: 200px;
}

.cta-footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */
@media (max-width: 768px) {
  .build-section,
  .automate-section,
  .expertise-section,
  .tech-showcase,
  .cta-footer {
    padding: 48px 20px;
  }

  .build-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-h2 {
    font-size: 28px;
  }

  .section-sub {
    font-size: 14px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    min-width: auto;
  }

  .project-grid,
  .input-grid {
    grid-template-columns: 1fr;
  }

  .project-copy h2 {
    font-size: 32px;
  }

  .contact-row {
    gap: 16px;
  }
}

.ic-light-blue {
  background: var(--blue-pill-bg) !important;
  color: var(--blue-500) !important;
}

