/* =============================================
   TAHOD — GLOBAL DESIGN SYSTEM
   Corporate IT & Managed Services Platform
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --primary: #6C4CF1;
  --primary-dark: #5A3BD4;
  --primary-light: #EDE9FE;
  --secondary: #8B5CF6;
  --dark: #071B3B;
  --dark-2: #0D2750;
  --dark-3: #132F5C;
  --light: #F5F7FB;
  --light-2: #EEF0F7;
  --white: #FFFFFF;
  --accent: #FFC857;
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;
  --border: #E5E7EB;
  --text: #1F2937;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;

  --gradient-primary: linear-gradient(135deg, #6C4CF1 0%, #8B5CF6 100%);
  --gradient-dark: linear-gradient(135deg, #071B3B 0%, #0D2750 100%);
  --gradient-hero: linear-gradient(135deg, #071B3B 0%, #132F5C 60%, #1a3a6e 100%);

  --shadow-sm: 0 2px 8px rgba(108, 76, 241, 0.08);
  --shadow-md: 0 4px 20px rgba(108, 76, 241, 0.14);
  --shadow-lg: 0 8px 40px rgba(108, 76, 241, 0.18);
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.07);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);

  --font: 'Poppins', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
  --section-py: 90px;
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

/* ============ TYPOGRAPHY ============ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 0;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.05rem;
}

h6 {
  font-size: 0.9rem;
}

p {
  margin-bottom: 0;
}

.text-primary-custom {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-dark-custom {
  color: var(--dark) !important;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============ SECTION UTILITIES ============ */
.section-py {
  padding: var(--section-py) 0;
}

.section-py-sm {
  padding: 60px 0;
}

.section-py-lg {
  padding: 110px 0;
}

.bg-light-custom {
  background-color: var(--light) !important;
}

.bg-dark-custom {
  background-color: var(--dark) !important;
}

.bg-gradient-primary {
  background: var(--gradient-primary) !important;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 16px;
}

.section-tag.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-titlle {
  max-width: 550px;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 12px;
  color: #171421;
}

.section-subtitle {
  max-width: 550px;

  color: #171421;
}

.section-title .highlight {
  color: var(--primary);
}

.how-work-col {
  width: 20%;
}

@media (max-width: 991px) {
  .how-work-col {
    width: 33.3333%;
  }
}

@media (max-width: 767px) {
  .how-work-col {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .how-work-col {
    width: 100%;
  }
}

.section-title.white {
  color: var(--white);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.section-desc.white {
  color: rgba(255, 255, 255, 0.75);
}

/* ============ NAVBAR ============ */
.navbar-tahod {
  background: var(--white);
  box-shadow: var(--shadow-nav);
  padding: 0;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
}

.navbar-tahod.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-tahod .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.navbar-tahod .brand-logo {
  height: 42px;
  width: auto;
}

.navbar-tahod .navbar-nav .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-tahod .navbar-nav .nav-link:hover,
.navbar-tahod .navbar-nav .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar-tahod .navbar-nav .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  padding: 12px;
  min-width: 230px;
  margin-top: 8px;
}

.navbar-tahod .navbar-nav .dropdown-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.navbar-tahod .navbar-nav .dropdown-item i {
  color: var(--primary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.navbar-tahod .navbar-nav .dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.navbar-tahod .navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:focus {
  box-shadow: none;
}

.btn-primary-custom {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  padding: 10px 26px;
  font-size: 0.9rem;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 76, 241, 0.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  padding: 10px 26px;
  font-size: 0.9rem;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light-custom {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  padding: 12px 30px;
  font-size: 0.95rem;
}

.btn-light-custom:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  padding: 12px 30px;
  font-size: 0.95rem;
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn-dark-custom {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  padding: 10px 26px;
  font-size: 0.9rem;
}

.btn-dark-custom:hover {
  background: var(--dark-2);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  padding: 12px 30px;
  font-size: 0.95rem;
}

.btn-accent:hover {
  background: #e6b34d;
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-sm-custom {
  padding: 8px 20px;
  font-size: 0.82rem;
}

.btn-lg-custom {
  padding: 14px 36px;
  font-size: 1rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1rem;
}

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--gradient-hero);
  padding: 70px 0 55px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(108, 76, 241, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-breadcrumb a:hover {
  color: var(--white);
}

.page-hero-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.35);
}

.page-hero-breadcrumb .current {
  color: rgba(255, 255, 255, 0.9);
}

/* ============ HOME HERO ============ */
.home-hero {
  background: var(--gradient-hero);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(108, 76, 241, 0.2) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.home-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 76, 241, 0.2);
  border: 1px solid rgba(108, 76, 241, 0.35);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero-title .accent-word {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;
  margin-bottom: 50px;
}


.hero-stat-item {
  text-align: left;
}

.hero-stat-item .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 4px;
}

.hero-stat-item .stat-number span {
  color: var(--accent);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  /* background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(255,255,255,0.12); */
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: 0 30px 80px rgba(0,0,0,0.3); */
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  z-index: 2;
}

.hero-float-badge .icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-float-badge.badge-1 {
  bottom: -20px;
  left: -30px;
}

.hero-float-badge.badge-2 {
  top: 30px;
  right: -25px;
}

/* ============ CARDS ============ */
.card-tahod {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
}

.card-tahod:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 76, 241, 0.2);
}

.card-tahod .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--primary-light);
  color: var(--primary);
  transition: var(--transition);
}

.card-tahod:hover .card-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.card-tahod .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.card-tahod .card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.card-tahod .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 18px;
}

.card-tahod .card-link:hover {
  gap: 10px;
}

.card-tahod .card-link i {
  font-size: 0.75rem;
}

/* Service group card — with numbered badge */
.card-service-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.card-service-group:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-service-group .num-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Pricing cards */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: translateY(-16px);
}

.pricing-card .plan-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.pricing-card .plan-badge.economy {
  background: #ECFDF5;
  color: #059669;
}

.pricing-card .plan-badge.popular {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.pricing-card .plan-badge.enterprise {
  background: #FEF3C7;
  color: #D97706;
}

.pricing-card .plan-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pricing-card.featured .plan-title {
  color: var(--white);
}

.pricing-card .plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card.featured .plan-desc {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-card .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-card .plan-features li:last-child {
  border-bottom: none;
}

.pricing-card.featured .plan-features li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card .plan-features li i {
  color: var(--success);
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-card.featured .plan-features li i {
  color: var(--accent);
}

.most-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Industry cards */
.card-industry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
}

.card-industry:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-industry .ind-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 18px;
  background: var(--primary-light);
  color: var(--primary);
  transition: var(--transition);
}

.card-industry:hover .ind-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.card-industry .ind-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}

.card-industry:hover .ind-title {
  color: var(--white);
}

.card-industry .ind-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
  transition: var(--transition);
}

.card-industry:hover .ind-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Stats cards */
.stat-card {
  text-align: center;
  padding: 30px 20px;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-number span {
  color: var(--accent);
}

.stat-card .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* Case study cards */
.card-case-study {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  height: 100%;
}

.card-case-study:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 76, 241, 0.2);
}

.card-case-study .case-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 16px;
}

.card-case-study .case-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-case-study .case-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Blog/Media cards */
.card-blog {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.card-blog:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-blog .blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-blog .blog-body {
  padding: 24px;
}

.card-blog .blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.card-blog .blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition);
}

.card-blog:hover .blog-title {
  color: var(--primary);
}

.card-blog .blog-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

/* ============ SERVICE GROUP HEADER ============ */
.service-group-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ============ FORMS ============ */
.form-tahod .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-tahod .form-control,
.form-tahod .form-select {
  font-family: var(--font);
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 11px 16px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

.form-tahod .form-control:focus,
.form-tahod .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108, 76, 241, 0.1);
  outline: none;
}

.form-tahod .form-control::placeholder {
  color: var(--text-light);
}

.form-tahod .input-group-text {
  background: var(--light);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 0.95rem;
}

.form-tahod textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.form-section-header .form-section-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.form-section-header .form-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.tag-select-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  min-height: 50px;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(108, 76, 241, 0.2);
}

.tag-item.active,
.tag-item:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.radio-btn-group {
  display: flex;
  gap: 10px;
}

.radio-btn-group .radio-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.radio-btn-group .radio-btn.active,
.radio-btn-group .radio-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ============ TABLES ============ */
.table-tahod {
  font-size: 0.875rem;
}

.table-tahod thead th {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 16px;
  border: none;
  white-space: nowrap;
}

.table-tahod tbody td {
  padding: 14px 16px;
  border-color: var(--border);
  vertical-align: middle;
  color: var(--text);
}

.table-tahod tbody tr:hover {
  background: var(--light);
}

/* ============ CTA SECTIONS ============ */
.cta-section {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  text-align: center;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section .cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 550px;
  margin: 0 auto 32px;
}

/* Dark CTA variant */
.cta-section-dark {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.cta-section-dark .cta-content .cta-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-section-dark .cta-content .cta-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ============ STATS SECTION ============ */
.stats-section {
  background: var(--gradient-primary);
  padding: var(--section-py) 0;
}

/* ============ WHY TAHOD ============ */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.why-item .why-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.why-item.dark .why-icon {
  background: rgba(108, 76, 241, 0.15);
  color: var(--primary);
}

.why-item .why-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-item.dark .why-text strong {
  color: var(--white);
}

.why-item .why-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-item.dark .why-text p {
  color: rgba(255, 255, 255, 0.6);
}

/* ============ VISION MISSION ============ */
.vision-card,
.mission-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.vision-card {
  background: var(--dark);
}

.mission-card {
  background: var(--gradient-primary);
}

.vm-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vm-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

.mission-card .vm-label::before {
  background: rgba(255, 255, 255, 0.5);
}

.vm-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.vm-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ============ VALUES CARDS ============ */
.card-value {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.card-value:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.card-value .value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.card-value .value-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.card-value .value-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============ ACCORDION / FAQ ============ */
.accordion-tahod .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: none;
}

.accordion-tahod .accordion-button {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md) !important;
  gap: 12px;
}

.accordion-tahod .accordion-button::before {
  content: attr(data-num);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  flex-shrink: 0;
}

.accordion-tahod .accordion-button::after {
  margin-left: auto;
  background-size: 14px;
}

.accordion-tahod .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
  box-shadow: none;
}

.accordion-tahod .accordion-button:focus {
  box-shadow: none;
}

.accordion-tahod .accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 18px 22px;
  line-height: 1.75;
  background: var(--white);
}

/* ============ TIMELINE ============ */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-item .tl-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.timeline-item .tl-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============ BREADCRUMB ============ */
.breadcrumb-tahod {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
}

.breadcrumb-tahod .breadcrumb-item {
  color: var(--text-muted);
}

.breadcrumb-tahod .breadcrumb-item a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb-tahod .breadcrumb-item.active {
  color: var(--text);
  font-weight: 500;
}

.breadcrumb-tahod .breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-light);
}

/* ============ BADGES ============ */
.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-success {
  background: #ECFDF5;
  color: #059669;
}

.badge-warning {
  background: #FEF3C7;
  color: #D97706;
}

.badge-danger {
  background: #FEE2E2;
  color: #DC2626;
}

.badge-info {
  background: #EFF6FF;
  color: #2563EB;
}

.badge-dark {
  background: var(--dark);
  color: var(--white);
}

.badge-tahod {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
}

/* ============ ALERTS ============ */
.alert-tahod {
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 4px solid;
}

.alert-tahod i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-tahod.alert-primary {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.alert-tahod.alert-success {
  background: #ECFDF5;
  border-color: #10B981;
  color: #065F46;
}

.alert-tahod.alert-warning {
  background: #FFFBEB;
  border-color: #F59E0B;
  color: #92400E;
}

.alert-tahod.alert-danger {
  background: #FEF2F2;
  border-color: #EF4444;
  color: #991B1B;
}

/* ============ TABS ============ */
.tabs-tahod {
  border-bottom: 2px solid var(--border);
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.tabs-tahod .nav-link {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 22px;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  border-radius: 0;
  white-space: nowrap;
  transition: var(--transition);
}

.tabs-tahod .nav-link:hover {
  color: var(--primary);
}

.tabs-tahod .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: transparent;
}

/* ============ PROGRESS BARS ============ */
.progress-tahod {
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--light-2);
  overflow: hidden;
}

.progress-tahod .progress-bar {
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 1.2s ease;
}

/* ============ PARTNERS STRIP ============ */
.partners-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.partners-strip .partner-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.partners-strip .partner-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners-strip .partner-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-transform: uppercase;
}

.partners-strip .partner-logo:hover {
  color: var(--primary);
}

/* ============ FOOTER ============ */
.footer-tahod {
  background: var(--dark);
  padding: 70px 0 0;
}

.footer-brand-logo {
  height: 46px;
  width: auto;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--white);
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  margin-top: 60px;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ============ IMAGE BLOCK ============ */
.img-rounded {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

/* ============ DIVIDERS ============ */
.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ============ BACK TO TOP ============ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-4px);
}

/* ============ MISC ============ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.6;
}

.check-list li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list.white li {
  color: rgba(255, 255, 255, 0.8);
}

.check-list.white li i {
  color: var(--accent);
}

.divider-col {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.separator {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* Sticky media sidebar */
.sticky-sidebar {
  position: sticky;
  top: 90px;
}

/* Page content styles */
.content-page h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  margin-top: 32px;
  color: var(--dark);
}

.content-page h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  margin-top: 24px;
  color: var(--dark);
}

.content-page p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-page ul {
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 20px;
}

.content-page ul li {
  margin-bottom: 8px;
}

/* Custom checkbox */
.custom-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
}

.custom-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

/* ── How It Works steps ── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--primary);
  background: #fff;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-item:hover .step-circle {
  background: var(--gradient-primary);
  color: #fff;
  border-color: var(--primary);
}

.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .steps-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .step-item {
    flex: 0 0 45%;
  }
}

@media (max-width: 480px) {
  .step-item {
    flex: 0 0 100%;
  }
}

/* ── Solutions cards with feature list ── */
.sol-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.sol-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.sol-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.sol-card-badge.popular {
  background: var(--primary);
  color: #fff;
}

.sol-card-badge.enterprise {
  background: var(--dark);
  color: #fff;
}

.sol-card-badge.pro {
  background: var(--accent);
  color: var(--dark);
}

.sol-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.sol-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.sol-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.sol-feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.sol-feat-list li {
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.sol-feat-list li i {
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.sol-card .card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.sol-card .card-link:hover {
  gap: 8px;
}

/* ── Managed services dark cards ── */
.svc-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: var(--transition);
}

.svc-card-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(108, 76, 241, 0.5);
  transform: translateY(-3px);
}

.svc-card-dark .svc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.svc-card-dark h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.svc-card-dark p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

/* ── Industry cards v2 ── */
.ind-card-v2 {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.ind-card-v2:hover {
  border-color: var(--primary);
  background: var(--gradient-primary);
}

.ind-card-v2:hover .ind-icon-v2 {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.ind-card-v2:hover .ind-title-v2,
.ind-card-v2:hover .ind-desc-v2 {
  color: #fff;
}

.ind-icon-v2 {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 auto 12px;
  transition: var(--transition);
}

.ind-title-v2 {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  transition: var(--transition);
}

.ind-desc-v2 {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition);
}

/* ── Value cards ── */
.value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.value-card .val-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.value-card h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── CTA dark with contact cards ── */
.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-card .ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(108, 76, 241, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b5fd;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-card .ci-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}

.contact-info-card .ci-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

/* ── Newsletter strip ── */
.newsletter-strip {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
}

.newsletter-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.875rem;
  font-family: var(--font);
  color: var(--dark);
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--primary);
}

@media (max-width: 575px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ── Hero highlight text ── */
.hero-highlight {
  color: var(--primary);
  position: relative;
  display: inline;
}

/* ── Packages 2-row ── */
.pkg-row-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.rws-group {
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}

.rws-group:last-child {
  border-bottom: none;
}

.rws-group-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.rws-group-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rws-group-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.rws-sub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.rws-sub-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.rws-sub-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
}

.rws-sub-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.rws-sub-text {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}



.ms-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.22s, transform 0.22s;
}

.ms-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ms-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.ms-card-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.ms-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ms-card-list li {
  font-size: 0.82rem;
  color: #666;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.ms-card-list li::before {
  content: "\F26D";
  font-family: "bootstrap-icons";
  color: var(--primary);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
}