:root {
  --primary-text: #1a1a1a;
  --secondary-text: #4a4a4a;
  --tertiary-text: #7a7a7a;
  --accent-blue: #0057cc;
  --accent-bright: #0066dd;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --border-light: #e8e8e8;
  --success: #10b981;
  --warning: #f59e0b;
}
* {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", sans-serif;
  color: var(--primary-text);
  background: var(--white);
}
.btn-primary-h {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-h:hover {
  background-color: var(--accent-bright);
  border-color: var(--accent-bright);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 87, 204, 0.2);
}
.btn-secondary-h {
  background-color: transparent;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary-h:hover {
  background-color: rgba(0, 87, 204, 0.05);
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
@media (max-width: 599px) {
  .hero {
    padding: 40px 0 60px;
  }
}
@media (min-width: 900px) {
  .hero {
    padding: 100px 0 120px;
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 899px) {
  .hero-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 599px) {
  .hero-row {
    gap: 1.5rem;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 87, 204, 0.08);
  color: var(--accent-blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}
@media (max-width: 599px) {
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}
.bdot {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.hero-headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-text);
}
@media (max-width: 899px) {
  .hero-headline {
    font-size: 2.2rem;
  }
}
@media (max-width: 599px) {
  .hero-headline {
    font-size: 1.8rem;
  }
}
.hl-accent {
  color: var(--accent-blue);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 500px;
}
@media (max-width: 899px) {
  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 599px) {
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn-primary-h,
  .hero-ctas .btn-secondary-h {
    width: 100%;
    text-align: center;
  }
}
.hero-right {
  flex: 1 1 440px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s ease 0.28s both;
}
.pipeline-wrap {
  width: 100%;
  max-width: 490px;
  background: #fff;
  border: 1.5px solid rgba(0, 90, 210, 0.11);
  border-radius: 24px;
  padding: 22px 20px 18px;
  box-shadow:
    0 20px 60px rgba(0, 50, 150, 0.09),
    0 4px 16px rgba(0, 50, 150, 0.05);
  position: relative;
  overflow: hidden;
}
.pipeline-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #0057cc 40%,
    #00a8ff 60%,
    transparent
  );
  border-radius: 2px;
}
.pipe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.pipe-title {
  font-family: "Nunito", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #0b1c38;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pipe-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: #00a36c;
  background: rgba(0, 163, 108, 0.08);
  border: 1px solid rgba(0, 163, 108, 0.22);
  border-radius: 100px;
  padding: 4px 10px;
}
.pipe-live .ldot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c97a;
  box-shadow: 0 0 6px rgba(0, 200, 120, 0.65);
  animation: bpulse 2s infinite;
}
.source-row {
  display: flex;
  gap: 8px;
}
.src-node {
  flex: 1;
  background: #f4f7fc;
  border: 1.5px solid rgba(0, 90, 210, 0.1);
  border-radius: 12px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.src-node:hover {
  border-color: rgba(0, 90, 210, 0.32);
  box-shadow: 0 4px 14px rgba(0, 60, 160, 0.1);
  transform: translateY(-2px);
}
.src-node .sn-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, #dce6f8, #eaf1fc);
  display: flex;
  align-items: center;
  justify-content: center;
}
.src-node .sn-label {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #2a3f60;
}
.src-node .sn-sub {
  font-family: "Open Sans", sans-serif;
  font-size: 9.5px;
  color: #9db3cc;
}
.pipe-svg {
  display: block;
  width: 100%;
  overflow: visible;
}
.svg-dashed {
  fill: none;
  stroke-dasharray: 5 4;
  stroke-width: 1.8;
  animation: dashMove 1.4s linear infinite;
}
.svg-dashed.converge {
  stroke: rgba(0, 100, 220, 0.3);
}
.svg-dashed.diverge-aws {
  stroke: rgba(255, 140, 0, 0.6);
}
.svg-dashed.diverge-azure {
  stroke: rgba(0, 100, 220, 0.45);
}
.svg-dashed.diverge-oci {
  stroke: rgba(220, 30, 30, 0.45);
}
@keyframes dashMove {
  to {
    stroke-dashoffset: -18;
  }
}
.engine-block {
  background: linear-gradient(135deg, #0052c2 0%, #0091e6 60%, #00a8ff 100%);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 8px 28px rgba(0, 82, 194, 0.3);
  position: relative;
  overflow: hidden;
  animation: engineGlow 3s ease-in-out infinite;
}
@keyframes engineGlow {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(0, 82, 194, 0.3);
  }
  50% {
    box-shadow: 0 12px 38px rgba(0, 82, 194, 0.5);
  }
}
.engine-block::after {
  content: "";
  position: absolute;
  top: -45%;
  right: -6%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.engine-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: spinSlow 8s linear infinite;
}
@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}
.engine-info {
  flex: 1;
  min-width: 0;
}
.engine-info .ei-title {
  font-family: "Nunito", sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  display: block;
}
.engine-info .ei-sub {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-top: 2px;
}
.engine-steps {
  display: flex;
  gap: 5px;
  margin-top: 9px;
}
.estep {
  flex: 1;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.25);
}
.estep.done {
  background: rgba(255, 255, 255, 0.9);
}
.estep.active {
  background: rgba(255, 255, 255, 0.9);
  animation: stepBlink 1.2s ease-in-out infinite;
}
@keyframes stepBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.engine-ai-tag {
  font-family: "Open Sans", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 2px 9px;
  display: inline-block;
  margin-top: 7px;
}
.dest-row {
  display: flex;
  gap: 8px;
}
.dest-node {
  flex: 1;
  border-radius: 12px;
  padding: 14px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  border: 1.5px solid rgba(0, 90, 210, 0.1);
  background: linear-gradient(
    135deg,
    rgba(0, 82, 194, 0.03),
    rgba(0, 168, 255, 0.04)
  );
  transition: all 0.22s;
}
.dest-node:hover {
  transform: translateY(-2px);
}
.dest-aws {
  border-color: rgba(255, 153, 0, 0.28);
}
.dest-aws:hover {
  border-color: rgba(255, 153, 0, 0.65);
  box-shadow: 0 4px 16px rgba(255, 153, 0, 0.14);
}
.dest-azure {
  border-color: rgba(0, 120, 212, 0.28);
}
.dest-azure:hover {
  border-color: rgba(0, 120, 212, 0.65);
  box-shadow: 0 4px 16px rgba(0, 120, 212, 0.14);
}
.dest-oci {
  border-color: rgba(230, 5, 5, 0.22);
}
.dest-oci:hover {
  border-color: rgba(230, 5, 5, 0.6);
  box-shadow: 0 4px 16px rgba(230, 5, 5, 0.1);
}
.dest-node .dn-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 40, 120, 0.1);
}
.dest-node .dn-label {
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #0b1c38;
}
.dest-node .dn-tag {
  font-family: "Open Sans", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  color: #00a36c;
  background: rgba(0, 163, 108, 0.08);
  border: 1px solid rgba(0, 163, 108, 0.22);
  border-radius: 100px;
  padding: 2px 8px;
}
.pipe-metrics {
  display: flex;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 70, 190, 0.08);
}
.pm-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4px;
  border-right: 1px solid rgba(0, 70, 190, 0.08);
}
.pm-item:last-child {
  border-right: none;
}
.pm-val {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(90deg, #0052c2, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pm-lbl {
  font-family: "Open Sans", sans-serif;
  font-size: 9.5px;
  color: #9db3cc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
  text-align: center;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  #hero {
    padding: 70px 0 60px;
  }
  .hero-row {
    flex-direction: column;
    gap: 44px;
  }
  .hero-right {
    width: 100%;
  }
  .pipeline-wrap {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .hero-ctas {
    flex-direction: column;
  }
  .btn-primary-h,
  .btn-outline-h {
    justify-content: center;
  }
  .src-node .sn-sub,
  .dest-node .dn-tag {
    display: none;
  }
}
section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
}
section:nth-of-type(even) {
  background: var(--light-bg);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-text);
  font-weight: 800;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.6rem;
  }
}
.section-header p {
  color: var(--secondary-text);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .section-header p {
    font-size: 1rem;
  }
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .feature-card {
    padding: 1.5rem;
  }
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 87, 204, 0.05) 0%,
    rgba(0, 87, 204, 0.02) 100%
  );
  transition: left 0.4s ease;
  z-index: -1;
}
.feature-card:hover::before {
  left: 0;
}
.feature-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 12px 28px rgba(0, 87, 204, 0.15);
  transform: translateY(-8px) scale(1.01);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 87, 204, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
}
.feature-card:hover .feature-icon {
  background: var(--accent-blue);
  color: var(--white);
  transform: rotate(6deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 87, 204, 0.3);
}
.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-text);
  font-weight: 700;
  transition: color 0.3s ease;
}
.feature-card:hover h3 {
  color: var(--accent-blue);
}
@media (max-width: 576px) {
  .feature-card h3 {
    font-size: 1rem;
  }
}
.feature-card p {
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.feature-card:hover p {
  color: var(--primary-text);
}
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .stat-card {
    padding: 1.5rem 1rem;
  }
}
.stat-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(0, 87, 204, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.stat-card:hover::after {
  opacity: 1;
  animation: pulse-glow 1.5s ease-in-out;
}
@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
}
.stat-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 12px 28px rgba(0, 87, 204, 0.15);
  transform: translateY(-8px);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}
.stat-card:hover .stat-number {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
}
.stat-label {
  color: var(--secondary-text);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.stat-card:hover .stat-label {
  color: var(--primary-text);
}
.intro-box {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 32px 28px;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .intro-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.intro-aws-logo {
  width: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-aws-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.intro-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}
.intro-content p {
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}
.about-image {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(0, 87, 204, 0.08) 0%,
    rgba(0, 87, 204, 0.04) 100%
  );
  border: 2px solid rgba(0, 87, 204, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent-blue);
  opacity: 0.7;
  transition: all 0.4s ease;
}
.about-image:hover {
  box-shadow: 0 12px 28px rgba(0, 87, 204, 0.2);
  transform: translateY(-4px);
  opacity: 1;
}
@media (max-width: 768px) {
  .about-image {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .about-image {
    height: 500px;
    font-size: 2rem;
    object-fit: cover;
  }
}
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-text);
  font-weight: 800;
}
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 2rem;
  }
}
.about-text p {
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}
.expertise-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.expertise-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.expertise-item:hover {
  background: rgba(0, 87, 204, 0.05);
  transform: translateX(4px);
}
.expertise-icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 87, 204, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-blue);
  transition: all 0.3s ease;
}
.expertise-item:hover .expertise-icon {
  background: var(--accent-blue);
  color: var(--white);
  transform: scale(1.1);
}
.expertise-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}
.expertise-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-text);
  font-weight: 700;
}
.expertise-item p {
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin: 0;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  position: relative;
}
@media (max-width: 576px) {
  .value-card {
    padding: 1.5rem;
  }
}
.value-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 12px 28px rgba(0, 87, 204, 0.15);
  transform: translateY(-8px);
}
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-text);
  font-weight: 700;
  transition: color 0.3s ease;
}
.value-card:hover h3 {
  color: var(--accent-blue);
}
@media (max-width: 576px) {
  .value-card h3 {
    font-size: 1rem;
  }
}
.value-card p {
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.value-card:hover p {
  color: var(--primary-text);
}
.expertise-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .expertise-box {
    padding: 1.5rem;
  }
}
.expertise-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(0, 87, 204, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(100px, -100px);
}
.expertise-box:hover::before {
  opacity: 1;
  transform: translate(50px, -50px);
}
.expertise-box:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 12px 28px rgba(0, 87, 204, 0.15);
  transform: translateY(-8px);
}
.expertise-box .expertise-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  width: auto;
  height: auto;
  background: none;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.expertise-box .expertise-icon svg {
  color: var(--accent-blue);
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}
.expertise-box:hover .expertise-icon svg {
  transform: scale(1.15) rotate(6deg);
  color: var(--accent-bright);
}
.expertise-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-text);
  font-weight: 700;
  transition: color 0.3s ease;
}
.expertise-box:hover h3 {
  color: var(--accent-blue);
}
@media (max-width: 576px) {
  .expertise-box h3 {
    font-size: 1rem;
  }
}
.expertise-box p {
  color: var(--secondary-text);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.expertise-box:hover p {
  color: var(--primary-text);
}
.cta-content {
  background: linear-gradient(
    135deg,
    rgba(0, 87, 204, 0.08) 0%,
    rgba(0, 87, 204, 0.04) 100%
  );
  border: 2px solid rgba(0, 87, 204, 0.15);
  border-radius: 12px;
  padding: 4rem;
  text-align: center;
  transition: all 0.4s ease;
}
.cta-content:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 12px 28px rgba(0, 87, 204, 0.15);
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .cta-content {
    padding: 3rem 2rem;
  }
}
@media (max-width: 576px) {
  .cta-content {
    padding: 2rem 1.5rem;
  }
}
.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-text);
  font-weight: 800;
}
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 1.6rem;
  }
}
.cta-content p {
  color: var(--secondary-text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .cta-content p {
    font-size: 1rem;
  }
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-card,
.stat-card,
.value-card,
.expertise-box {
  animation: slideIn 0.6s ease-out;
}
