:root {
  --navy: #0f1b30;
  --navy-soft: #14233d;
  --sky: #1ca9c9;
  --mint: #48c78e;
  --cloud: #eef3fb;
  --light: #f7f9fb;
  --white: #ffffff;
  --text: #2d3a4e;
  --muted: rgba(45, 58, 78, 0.7);
  --max-width: 1180px;
  --radius-lg: 20px;
  --radius: 14px;
  --shadow-lg: 0 30px 60px rgba(15, 27, 48, 0.18);
  --shadow: 0 18px 36px rgba(15, 27, 48, 0.12);
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f4f7fc 0%, #ffffff 45%, #f6fbff 100%);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", "Poppins", "Inter", sans-serif;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  width: min(100% - 3rem, var(--max-width));
  margin-inline: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 27, 48, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  color: var(--navy);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.brand span {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(28, 169, 201, 0.15);
  color: var(--sky);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--sky);
}

.nav-links .cta-button {
  color: var(--white);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sky) 0%, var(--mint) 100%);
  color: var(--white);
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 32px rgba(28, 169, 201, 0.25);
  transition: var(--transition);
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(28, 169, 201, 0.33);
}

.hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 4rem);
  display: grid;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.hero-content {
  max-width: 560px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.2vw, 3.8rem);
  margin-bottom: 1.3rem;
}

.hero-content p {
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  color: rgba(45, 58, 78, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.hero-visual {
  position: relative;
  background: linear-gradient(150deg, rgba(15, 27, 48, 0.95), rgba(28, 169, 201, 0.75));
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(72, 199, 142, 0.35), transparent 70%);
}

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual .overlay-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-metrics {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.3rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

main section:not(.hero) {
  padding: clamp(3.5rem, 6.5vw, 6rem) 0;
}

main section:nth-of-type(even):not(.hero) {
  background: linear-gradient(180deg, rgba(236, 245, 255, 0.7) 0%, rgba(247, 250, 252, 0.5) 100%);
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 640px;
}

.section-heading span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--sky);
  font-weight: 700;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 2.6rem);
}

.section-heading p {
  color: rgba(45, 58, 78, 0.76);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(28, 169, 201, 0.16);
  color: var(--sky);
  font-weight: 600;
  font-size: 0.85rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.grid {
  display: grid;
  gap: min(2.5rem, 5vw);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at bottom left, rgba(28, 169, 201, 0.18), transparent 70%);
  pointer-events: none;
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(15, 27, 48, 0.2);
}

.card ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.card ul li {
  position: relative;
  padding-left: 1.3rem;
}

.card ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  position: absolute;
  top: 0.6rem;
  left: 0;
  box-shadow: 0 0 0 4px rgba(72, 199, 142, 0.18);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(28, 169, 201, 0.22), rgba(72, 199, 142, 0.2));
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  color: var(--sky);
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  display: block;
}

.media-block {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.1rem;
  background: var(--cloud);
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cloud);
}

.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.1rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  color: rgba(45, 58, 78, 0.85);
}

.testimonial::before {
  content: "\"";
  position: absolute;
  top: -25px;
  left: 20px;
  font-size: 7rem;
  color: rgba(28, 169, 201, 0.15);
  line-height: 1;
}

.testimonial cite {
  display: block;
  margin-top: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 40%, rgba(28, 169, 201, 0.92) 100%);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 4rem);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1.2rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
}

.layout-split {
  display: grid;
  gap: min(2.5rem, 5vw);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.process-index {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(28, 169, 201, 0.18);
  color: var(--sky);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.industries {
  display: grid;
  gap: min(2.2rem, 4vw);
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.9rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: linear-gradient(180deg, var(--sky), var(--mint));
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.tag {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 27, 48, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.industry-card ul,
.case-study ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.industry-card ul li,
.case-study ul li {
  position: relative;
  padding-left: 1.3rem;
}

.industry-card ul li::before,
.case-study ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  position: absolute;
  top: 0.6rem;
  left: 0;
  box-shadow: 0 0 0 4px rgba(28, 169, 201, 0.18);
}

.case-grid,
.blog-grid {
  display: grid;
  gap: min(2.5rem, 4vw);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.case-study {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}

.case-study .case-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.case-stat {
  background: rgba(28, 169, 201, 0.12);
  border-radius: 12px;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  color: var(--sky);
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.2rem);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.blog-card a {
  margin-top: auto;
  color: var(--sky);
  font-weight: 600;
}

.sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.3rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.8rem;
}

form {
  display: grid;
  gap: 1.1rem;
}

label {
  font-weight: 600;
  color: var(--navy);
}

input,
select,
textarea {
  border: 1px solid rgba(15, 27, 48, 0.12);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: var(--white);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(28, 169, 201, 0.18);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  gap: min(2.5rem, 4vw);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.6rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(72, 199, 142, 0.18);
  display: grid;
  place-items: center;
  color: var(--mint);
  font-size: 1.3rem;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: inherit;
}

.team-grid {
  display: grid;
  gap: min(2.2rem, 4vw);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
  text-align: center;
}

.team-member img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(28, 169, 201, 0.2);
  margin-inline: auto;
  margin-bottom: 1.2rem;
}

.value-grid {
  display: grid;
  gap: min(1.9rem, 4vw);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

footer {
  margin-top: auto;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}

.footer-grid {
  display: grid;
  gap: min(2.5rem, 5vw);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.footer-brand {
  max-width: 300px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--sky);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
}

.copyright {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-size: 0.9rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

.legal {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.legal a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
}

.mobile-toggle.is-open {
  color: var(--sky);
}

.mobile-toggle-icon {
  position: relative;
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
  color: var(--navy);
}

.mobile-toggle-icon::before,
.mobile-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle-icon::before {
  top: -7px;
}

.mobile-toggle-icon::after {
  bottom: -7px;
}

.mobile-toggle.is-open .mobile-toggle-icon {
  background: transparent;
}

.mobile-toggle.is-open .mobile-toggle-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open .mobile-toggle-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .hero-visual {
    order: -1;
  }

  .hero-actions {
    gap: 0.9rem;
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 50%;
    transform: translate(-50%, -8px);
    width: min(94%, 420px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.6rem 0;
  }

  .nav-links .cta-button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .wrapper {
    width: min(100% - 2rem, var(--max-width));
  }

  .hero {
    padding-top: 4rem;
  }

  main section:not(.hero) {
    padding: 3.3rem 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
  }

  .cta-section {
    padding: 2.6rem 1.4rem;
  }
}
