:root {
  --navy: #13233a;
  --navy-dark: #0c1828;
  --gold: #c89b3c;
  --gold-light: #e4c985;
  --cream: #f7f5f2;
  --white: #ffffff;
  --text: #2d2d2d;
  --muted: #6f6f6f;
  --border: #e6e0d7;
  --shadow: 0 18px 45px rgba(19, 35, 58, 0.12);
}

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

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

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

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

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

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

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.logo strong {
  display: block;
  font-size: 1.1rem;
}

.logo small {
  color: var(--muted);
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--navy);
}

.main-nav a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.hero {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}

.hero-grid,
.about-grid,
.contact-grid,
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 22px;
}

h1 span {
  color: var(--gold);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-content p,
.page-hero p,
.about-content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.software-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.software-logos span,
.industry-grid span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
}

.hero-image {
  position: relative;
}

.hero-image img,
.about-image img,
.about-preview img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-card-floating {
  position: absolute;
  bottom: -30px;
  left: -25px;
  background: var(--white);
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.service-card-floating p {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}

section {
  padding: 15px 0;
}

.services-preview,
.services-page,
.pricing-section,
.blog-section,
.industries-section,
.contact-section {
  background: var(--white);
}

.cards-grid,
.services-list,
.experience-grid,
.values-grid,
.software-grid,
.pricing-grid,
.faq-grid,
.benefits-grid,
.industries-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.service-card,
.service-detail-card,
.experience-card,
.value-card,
.software-card,
.pricing-card,
.faq-item,
.benefit-card,
.industry-card,
.blog-card,
.contact-card,
.note-box,
.newsletter-box,
.highlight-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(19, 35, 58, 0.06);
}

.service-card:hover,
.industry-card:hover,
.blog-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  transition: 0.25s ease;
}

.service-detail-card ul,
.pricing-card ul,
.article-highlights {
  margin: 18px 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-icon,
.industry-card span {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 12px;
}

.price-note,
.price {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.3rem;
}

.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 34px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
  font-weight: 800;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #d9dde5;
}

.pricing-card {
  background: var(--white);
}

.pricing-card.featured {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.03);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: var(--gold);
}

.badge,
.blog-category {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-table {
  margin-top: 34px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.service-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.service-row:last-child {
  border-bottom: none;
}

.contact-card {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  background: var(--white);
}

.contact-form-wrapper {
  background: var(--navy);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: none;
  font: inherit;
}

textarea {
  resize: vertical;
}

.cta {
  background: var(--navy);
  color: var(--white);
}

.cta h2 {
  color: var(--white);
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #cdd3dc;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding-top: 20px;
  color: #cdd3dc;
}

@media (max-width: 900px) {
  .header-inner,
  .main-nav {
    flex-direction: column;
  }

  .main-nav {
    gap: 12px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .services-list,
  .experience-grid,
  .values-grid,
  .software-grid,
  .pricing-grid,
  .faq-grid,
  .benefits-grid,
  .industries-grid,
  .blog-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card-floating {
    position: static;
    margin-top: 20px;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 520px) {
  section,
  .hero {
    padding: 56px 0;
  }

  h1 {
    font-size: 2.4rem;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .service-row {
    flex-direction: column;
    gap: 6px;
  }
}

/* Premium homepage override */

.site-header {
  background: rgba(12, 24, 40, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: none;
}

.header-inner {
  min-height: 76px;
}

.logo,
.logo strong,
.main-nav {
  color: var(--white);
}

.logo small {
  color: #d9dde5;
}

.logo img {
  height: 95px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
  color: #f7f5f2;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  min-height: auto;
  background:
    radial-gradient(circle at 82% 30%, rgba(200, 155, 60, 0.12), transparent 28%),
    linear-gradient(90deg, #ffffff 0%, #f7f5f2 42%, #eadfce 100%);
}

.hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(230,224,215,0.8);
  border-radius: 28px;
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(19,35,58,0.08);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.hero-content > p {
  max-width: 520px;
}

/* Hero image + services card */

.hero-image {
  position: relative;
  overflow: visible;
  border-radius: 28px;
  background: var(--navy-dark);
  box-shadow: 0 35px 80px rgba(12, 24, 40, 0.28);
}

.hero-image::before,
.hero-image::after {
  display: none;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 7px solid var(--navy-dark);
  box-shadow: 0 35px 80px rgba(12, 24, 40, 0.28);
}

.hero-service-card {
  position: absolute;
  right: -142px;
  top: 68%;
  transform: translateY(-50%);

  width: 210px;

  background: rgba(12, 24, 40, 0.96);
  border: 1px solid rgba(200, 155, 60, 0.55);
  border-radius: 22px;
  padding: 10px 18px;

  color: #fff;
  z-index: 10;

  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.hero-service-card div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 0.90rem;
}

.hero-service-card div:last-child {
  border-bottom: none;
}

.hero-service-card i {
  width: 24px;
  color: var(--gold);
  font-size: 1.1rem;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-image img {
    height: auto;
  }

  .hero-service-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 18px;
  }
}

.service-card,
.service-detail-card,
.experience-card,
.value-card,
.software-card,
.pricing-card,
.faq-item,
.benefit-card,
.industry-card,
.blog-card,
.contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
  border: 1px solid rgba(200, 155, 60, 0.18);
  box-shadow: 0 20px 45px rgba(19, 35, 58, 0.08);
}

.trust-strip {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.site-footer {
  background: #08111e;
}

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

  .hero-content {
    padding: 30px;
  }

  .hero-image::before,
  .hero-image::after {
    display: none;
  }

  .hero-image img {
    max-height: none;
    height: auto;
  }
}

/* Typography refinement */

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 900px;
  margin: 0 auto 20px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.35rem;
}

.page-hero {
  padding: 70px 0;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
}

.service-detail-card h2,
.blog-card h2 {
  font-size: 1.9rem;
  line-height: 1.15;
}

.service-detail-card {
  padding: 34px;
}

.blog-card {
  padding: 34px;
}

.blog-card.featured h2 {
  font-size: 2.4rem;
}

.about-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.cta h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.logo img {
  height: 95px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
}

/* Homepage spacing polish */

.services-preview {
  padding: 70px 0 90px;
}

.about-preview,
.industries-preview {
  padding: 90px 0;
}

.services-preview .eyebrow,
.services-preview h2,
.industries-preview .eyebrow,
.industries-preview h2 {
  text-align: center;
}

.services-preview h2,
.industries-preview h2 {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
}

.about-preview .eyebrow {
  margin-bottom: 18px;
}

.about-preview h2 {
  margin-bottom: 28px;
}

.about-preview .btn {
  margin-top: 22px;
}

.industry-grid {
  justify-content: center;
  text-align: center;
  margin-top: 35px;
}

.cta {
  padding: 95px 0;
}

.about-preview {
  padding-bottom: 50px !important;
}

.industries-preview {
  padding-top: 50px !important;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-trust-card{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.hero-trust-card span{
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e4d9c4;
  font-weight:600;
  color:#13233a;
}

