:root {
  --navy: #0B1F3A;
  --blue: #4DADEB;
  --text: #1D2939;
  --bg-alt: #F7F9FC;
  --border: #E5E7EB;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid var(--border);
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 56px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
}

.btn-primary {
  background: var(--navy);
  color: white;
  text-decoration: none;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 500px;
  height: 380px;
  border-radius: 20px;
  background:
  linear-gradient(
  135deg,
  #ffffff,
  #f2f7fc
  );
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}
.services-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at top left,
            rgba(59, 130, 246, 0.08),
            transparent 40%),
        #f8fafc;
}

.section-label {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 20px;
}

.section-title {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
}

.section-subtitle {
    max-width: 700px;
    margin: 24px auto 70px;
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.card {
    position: relative;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);

    padding: 38px;
    border-radius: 24px;

    border: 1px solid rgba(226,232,240,.8);

    transition: all .35s ease;

    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #3b82f6,
        #06b6d4
    );

    transform: scaleX(0);
    transform-origin: left;
    transition: .35s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(15,23,42,.12);
}

.card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(59,130,246,.12),
            rgba(6,182,212,.12)
        );

    border-radius: 18px;

    margin-bottom: 24px;
}

.service-icon {
    width: 36px;
    height: 36px;
}

.card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 16px;
}

.card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

.card-link {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
    transition: .3s;
}

.card-link:hover {
    color: #1d4ed8;
    letter-spacing: .5px;
}

.section {
  padding: 100px 0;
}

.alt {
  background: var(--bg-alt);
}


.section h2 {
  font-family: 'Manrope', sans-serif;
  color: var(--navy);
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* gap: 24px; */
}


.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.timeline div {
  padding: 25px;
  border-radius: 12px;
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--navy);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-grid div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  padding: 28px;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.email {
  margin-top: 24px;
  color: var(--navy);
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
}

footer {
  background: var(--navy);
  color: white;
  padding: 50px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer img {
  height: 48px;
  margin-bottom: 16px;
}

.footer p {
  max-width: 500px;
}

@media (max-width: 992px) {

  .hero-grid,
  .contact-grid,
  .cards,
  .timeline,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero {
    padding: 70px 0;
  }

  .section {
    padding: 70px 0;
  }

  .footer {
    flex-direction: column;
  }
}
.hero-illustration {
  width: 100%;
  max-width: 520px;
}

.service-icon {
  width: 64px;
  height: 64px;
  /* margin-bottom: 20px; */
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.industry-item img {
  width: 56px;
  height: 56px;
}

.card:hover {
  transform: translateY(-4px);
  transition: 0.25s ease;
}

.card {
  transition: 0.25s ease;
}
/* ==========================================
   WHY RECLARIO SECTION
========================================== */

.why-section {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #f8fafc 0%,
        #eef4fb 100%
    );

    padding: 120px 0;
}

.why-subtitle {
    max-width: 760px;
    margin: 24px auto 70px;

    text-align: center;

    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    position: relative;

    background: #ffffff;

    padding: 40px 32px;

    border-radius: 24px;

    border: 1px solid rgba(226, 232, 240, 0.8);

    min-height: 320px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    transition: all 0.35s ease;

    overflow: hidden;
}

/* Top Accent Bar */

.why-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #3b82f6,
        #06b6d4
    );

    transform: scaleX(0);
    transform-origin: left;

    transition: 0.35s ease;
}

.why-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(15, 23, 42, 0.12);
}

.why-card:hover::before {
    transform: scaleX(1);
}

/* ==========================================
   ICONS
========================================== */

.why-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    margin-bottom: 28px;

    transition: all 0.35s ease;
}

.why-icon img {
    width: 46px;
    height: 46px;

    display: block;
}

/* Different tint for each card */

.why-card:nth-child(1) .why-icon {
    background: rgba(59, 130, 246, 0.12);
}

.why-card:nth-child(2) .why-icon {
    background: rgba(14, 165, 233, 0.12);
}

.why-card:nth-child(3) .why-icon {
    background: rgba(99, 102, 241, 0.12);
}

.why-card:nth-child(4) .why-icon {
    background: rgba(16, 185, 129, 0.12);
}

.why-card:hover .why-icon {
    transform: scale(1.08);
}

/* ==========================================
   TYPOGRAPHY
========================================== */

.why-card h3 {
    margin-bottom: 18px;

    color: #0f172a;

    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.why-card p {
    color: #64748b;

    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
    }

    .why-card h3 {
        font-size: 1.7rem;
    }
}
/* ==========================================
   APPROACH METHODOLOGY
========================================== */

.approach-methodology {
    background: #ffffff;
    padding: 120px 0;
}

.approach-intro {
    max-width: 760px;
    margin: 24px auto 90px;

    text-align: center;

    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================
   PROCESS
========================================== */

.approach-process {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 32px;

    margin-top: 80px;
}

.approach-line {
    position: absolute;

    top: 38px;
    left: 10%;
    right: 10%;

    height: 3px;

    background: linear-gradient(
        90deg,
        #0f2d62,
        #2563eb
    );

    z-index: 1;
}

/* ==========================================
   STEP
========================================== */

.approach-step {
    position: relative;

    text-align: center;

    z-index: 2;
}

.approach-number {
    width: 76px;
    height: 76px;

    margin: 0 auto 28px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #0f2d62,
        #163d85
    );

    color: white;

    font-size: 2rem;
    font-weight: 700;

    box-shadow:
        0 15px 35px rgba(15,45,98,.20);

    transition: all .35s ease;
}

.approach-step:hover .approach-number {
    transform: translateY(-8px) scale(1.05);

    box-shadow:
        0 25px 45px rgba(15,45,98,.30);
}

.approach-step h3 {
    font-size: 1.8rem;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 18px;
}

.approach-step p {
    color: #475569;

    line-height: 1.8;
    font-size: 1rem;

    max-width: 260px;
    margin: 0 auto;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {

    .approach-process {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .approach-line {
        display: none;
    }

    .approach-step {
        max-width: 500px;
        margin: 0 auto;
    }
}
/* ==========================================
   INDUSTRY EXPERTISE
========================================== */

.industry-expertise-section {
    position: relative;

    background: linear-gradient(
        180deg,
        #f8fafc 0%,
        #eef4fb 100%
    );

    overflow: hidden;
}

.industry-expertise-subtitle {
    max-width: 760px;

    margin: 24px auto 80px;

    text-align: center;

    color: #64748b;

    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================
   GRID
========================================== */

.industry-expertise-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

/* ==========================================
   CARD
========================================== */

.industry-expertise-card {
    position: relative;

    background: #ffffff;

    padding: 40px 32px;

    border-radius: 24px;

    border: 1px solid rgba(226,232,240,.8);

    text-align: center;

    transition: all .35s ease;

    overflow: hidden;
}

.industry-expertise-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #3b82f6,
        #06b6d4
    );

    transform: scaleX(0);

    transform-origin: left;

    transition: .35s ease;
}

.industry-expertise-card:hover::before {
    transform: scaleX(1);
}

.industry-expertise-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(15,23,42,.12);
}

/* ==========================================
   ICONS
========================================== */

.industry-expertise-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    transition: all .35s ease;
}

.industry-expertise-icon img {
    width: 48px;
    height: 48px;
}

/* Individual icon colors */

.industry-expertise-card:nth-child(1) .industry-expertise-icon {
    background: rgba(59,130,246,.10);
}

.industry-expertise-card:nth-child(2) .industry-expertise-icon {
    background: rgba(16,185,129,.10);
}

.industry-expertise-card:nth-child(3) .industry-expertise-icon {
    background: rgba(99,102,241,.10);
}

.industry-expertise-card:nth-child(4) .industry-expertise-icon {
    background: rgba(249,115,22,.10);
}

.industry-expertise-card:nth-child(5) .industry-expertise-icon {
    background: rgba(14,165,233,.10);
}

.industry-expertise-card:nth-child(6) .industry-expertise-icon {
    background: rgba(168,85,247,.10);
}

.industry-expertise-card:hover .industry-expertise-icon {
    transform: scale(1.08);
}

/* ==========================================
   TEXT
========================================== */

.industry-expertise-card h3 {
    margin-bottom: 16px;

    color: #0f172a;

    font-size: 1.6rem;
    font-weight: 700;
}

.industry-expertise-card p {
    color: #64748b;

    line-height: 1.8;
    font-size: 1rem;
}
/* ==========================================
   CONTACT CONNECT
========================================== */

.contact-connect-section {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

    text-align: center;
}

.contact-connect-subtitle {
    max-width: 760px;

    margin: 24px auto 70px;

    color: #64748b;

    font-size: 1.1rem;
    line-height: 1.9;
}

.contact-connect-card {
    max-width: 720px;

    margin: 0 auto;

    padding: 60px;

    border-radius: 32px;

    background: white;

    border: 1px solid rgba(226,232,240,.8);

    box-shadow:
        0 20px 50px rgba(15,23,42,.06);

    transition: all .35s ease;
}

.contact-connect-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 60px rgba(15,23,42,.10);
}

.contact-connect-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 2rem;

    color: #2563eb;

    background: rgba(59,130,246,.10);
}

.contact-connect-card h3 {
    margin-bottom: 16px;

    font-size: 2rem;
    font-weight: 700;

    color: #0f172a;
}

.contact-connect-card p {
    margin-bottom: 24px;

    color: #64748b;

    line-height: 1.8;
}

.contact-email-link {
    display: inline-block;

    padding: 18px 36px;

    border-radius: 14px;

    text-decoration: none;

    background: #0f2d62;
    color: white;

    font-weight: 600;

    transition: all .3s ease;
}

.contact-email-link:hover {
    background: #163d85;

    transform: translateY(-2px);
}