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

:root {
  --primary: #0a1f3d;
  --primary-light: #0d47a1;
  --primary-dark: #061430;
  --accent: #f5a623;
  --accent-hover: #e09515;
  --bg-light: #f4f6f9;
  --bg-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER ============ */
header {
  background: var(--primary);
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.header-support {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-left: 20px;
}

.header-support i {
  font-size: 14px;
}

.header-support span {
  color: #fff;
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2b5c 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-tag i {
  font-size: 12px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.12;
}

.hero h1 span {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(245,166,35,0.25);
  border-radius: 4px;
  z-index: -1;
}

.hero p {
  font-size: 17px;
  margin-bottom: 32px;
  opacity: 0.85;
  max-width: 520px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-item i {
  font-size: 16px;
  color: var(--accent);
  width: 20px;
}

.hero-trust-item div {
  display: flex;
  flex-direction: column;
}

.hero-trust-item strong {
  font-size: 15px;
  font-weight: 700;
}

.hero-trust-item span {
  font-size: 12px;
  opacity: 0.6;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-right .hero-graphic {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-right .hero-graphic-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  display: block;
}

.hero-right .floating-badge {
  position: absolute;
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.hero-right .floating-badge-1 {
  top: -10px;
  left: -20px;
  animation-delay: 0s;
}

.hero-right .floating-badge-2 {
  bottom: 20px;
  right: -15px;
  animation-delay: 1.5s;
}

.hero-right .floating-badge i {
  font-size: 20px;
  color: var(--accent);
}

.hero-right .floating-badge div {
  display: flex;
  flex-direction: column;
}

.hero-right .floating-badge strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.hero-right .floating-badge span {
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.hero-bg-shapes .shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}

.hero-bg-shapes .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
}

.hero-bg-shapes .shape-3 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 30%;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,166,35,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  margin-left: 16px;
}

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

/* ============ SECTION TITLES ============ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 550px;
  margin: 0 auto;
}

.section-header .accent-line {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============ FEATURES ============ */
.features {
  padding: 100px 0;
  background: var(--bg-light);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-white);
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-card i {
  font-size: 26px;
  color: #fff;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ PAGES HERO ============ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  position: relative;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.85;
  position: relative;
}

/* ============ ABOUT ============ */
.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

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

.about-image {
  background: linear-gradient(135deg, var(--bg-light), #e8edf5);
  border-radius: var(--radius);
  padding: 70px 50px;
  text-align: center;
}

.about-image i {
  font-size: 130px;
  color: var(--primary-light);
  opacity: 0.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
  text-align: center;
  background: var(--bg-light);
  padding: 50px;
  border-radius: var(--radius);
}

.stat-item h3 {
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 800;
}

.stat-item p {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
}

/* ============ SERVICES ============ */
.services-section {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

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

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card i {
  font-size: 24px;
  color: #fff;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ REVIEWS ============ */
.reviews {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.review-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

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

.review-card .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.review-card .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.review-card .stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
}

.review-card p {
  color: var(--text-muted);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-card h4 {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
}

.review-card span {
  color: var(--text-light);
  font-size: 13px;
}

.review-badge {
  text-align: center;
  margin-top: 44px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.review-badge p {
  color: var(--text-muted);
  font-size: 15px;
}

.review-badge a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.review-badge a:hover {
  text-decoration: underline;
}

/* ============ FAQ ============ */
.faq-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 16px;
  color: var(--accent);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============ BLOG ============ */
.blog-section {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.blog-card .icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.blog-card i {
  font-size: 22px;
  color: #fff;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.blog-card .read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.blog-card .read-more:hover {
  color: var(--accent-hover);
  gap: 4px;
}

/* ============ BLOG DETAIL ============ */
.blog-detail {
  padding: 70px 0;
}

.blog-detail article {
  max-width: 780px;
  margin: 0 auto;
}

.blog-detail h1 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.blog-meta {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 32px;
}

.blog-detail h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 16px;
}

.blog-detail h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin: 30px 0 12px;
}

.blog-detail p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-detail ul, .blog-detail ol {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 16px 0;
  padding-left: 24px;
}

.blog-detail li {
  margin-bottom: 8px;
}

.blog-detail .step {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  padding: 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-detail .step h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 16px;
}

.blog-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 44px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 48px;
}

.blog-cta h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 22px;
}

.blog-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

/* ============ CONTACT ============ */
.contact-section {
  padding: 100px 0;
}

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

.contact-info h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail .icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail i {
  font-size: 18px;
  color: #fff;
}

.contact-detail h4 {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-detail p {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
  font-size: 16px;
}

.contact-form {
  background: var(--bg-light);
  padding: 44px;
  border-radius: var(--radius);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(13,71,161,0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* ============ FOOTER ============ */
footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col p i {
  margin-right: 8px;
  color: var(--accent);
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-disclaimer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-disclaimer p {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.footer-disclaimer a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

.footer-disclaimer a:hover {
  color: var(--accent);
}

/* ============ HERO MODERN (Homepage) ============ */
.hero-modern {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2b5c 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-geo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.geo-c-1 {
  width: 500px;
  height: 500px;
  background: #fff;
  top: -150px;
  right: -100px;
}

.geo-c-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -80px;
  left: 10%;
}

.geo-c-3 {
  width: 180px;
  height: 180px;
  background: #fff;
  top: 30%;
  left: -60px;
}

.geo-rect {
  position: absolute;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  transform: rotate(45deg);
}

.geo-r-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 25%;
}

.geo-dots {
  position: absolute;
  top: 60%;
  right: 10%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 16px 16px;
}

.hero-modern .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-mod-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-mod-badge i {
  font-size: 12px;
}

.hero-mod-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.12;
}

.hero-mod-content h1 span {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-mod-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(245,166,35,0.25);
  border-radius: 4px;
  z-index: -1;
}

.hero-mod-content p {
  font-size: 17px;
  margin-bottom: 32px;
  opacity: 0.85;
  max-width: 520px;
  line-height: 1.7;
}

.hero-mod-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-mod-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 2px;
}

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

.hero-img-grid {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-img-main {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-img-small {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.hero-img-s1 {
  top: -12px;
  right: -12px;
  animation: float 3s ease-in-out infinite;
}

.hero-img-s2 {
  bottom: 30px;
  left: -20px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.hero-img-s3 {
  bottom: -10px;
  right: 20px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-img-s4 {
  top: 30%;
  left: -24px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.hero-mod-card {
  position: absolute;
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.hero-mod-card i {
  font-size: 20px;
  color: var(--accent);
}

.hero-mod-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.hero-mod-card span {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-mod-card-1 {
  top: -8px;
  left: -8px;
  animation-delay: 0s;
}

.hero-mod-card-2 {
  bottom: 25px;
  right: -10px;
  animation-delay: 1.5s;
}

/* ============ HERO CONTACT FORM ============ */
.hero-contact-form {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 400px;
}

.hero-contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.hero-contact-form > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-form-group {
  margin-bottom: 16px;
}

.hero-form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
}

.hero-form-group input::placeholder {
  color: var(--text-light);
}

.hero-form-group input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(13,71,161,0.1);
}

.hero-form-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 4px;
}

/* ============ SETUP STEPS ============ */
.setup-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.setup-steps {
  max-width: 800px;
  margin: 0 auto;
}

.setup-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.step-img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img i {
  font-size: 48px;
  color: #fff;
  opacity: 0.9;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 12px;
}

.step-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.step-content ul li {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 6px;
}

.step-content strong {
  color: var(--primary);
}

/* ============ BRANDS SHOWCASE ============ */
.brands-showcase {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.brand-showcase-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.brand-showcase-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.brand-showcase-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.brand-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.brand-showcase-card:hover .brand-showcase-img img {
  transform: scale(1.08);
}

.brand-showcase-info {
  padding: 24px 22px 26px;
}

.brand-showcase-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.brand-showcase-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.brand-showcase-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.brand-showcase-link i {
  font-size: 12px;
  transition: var(--transition);
}

.brand-showcase-card:hover .brand-showcase-link i {
  transform: translateX(4px);
}

/* ============ FEATURES MODERN ============ */
.features-modern {
  padding: 100px 0;
  background: var(--bg-light);
}

.features-mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-mod-card {
  background: var(--bg-white);
  padding: 36px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.feature-mod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-mod-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-mod-icon i {
  font-size: 26px;
  color: #fff;
}

.feature-mod-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
}

.feature-mod-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ SERVICES PREVIEW ============ */
.services-preview {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.sp-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.sp-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  transform: translateY(-4px);
}

.sp-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.sp-icon i {
  font-size: 22px;
  color: #fff;
}

.sp-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.sp-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.services-preview-cta {
  text-align: center;
  margin-top: 44px;
}

.services-preview-cta .btn i {
  margin-left: 8px;
}

/* ============ STATS SECTION ============ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  color: #fff;
  padding: 30px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stat-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  display: inline;
  line-height: 1;
}

.stat-plus, .stat-percent, .stat-min, .stat-decimal {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  display: inline;
  line-height: 1;
}

.stat-decimal {
  font-size: 24px;
}

.stat-card p {
  font-size: 15px;
  opacity: 0.8;
  margin-top: 8px;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.cta-c-1 {
  width: 400px;
  height: 400px;
  background: #fff;
  top: -150px;
  right: -100px;
}

.cta-c-2 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: -80px;
  left: -50px;
}

.cta-box h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: -0.5px;
}

.cta-box p {
  font-size: 17px;
  opacity: 0.85;
  max-width: 550px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

.cta-btns .btn {
  padding: 16px 36px;
  font-size: 16px;
}

.cta-btns .btn i {
  margin-right: 8px;
}

.cta-btns .btn-outline {
  border-color: rgba(255,255,255,0.4);
}

.cta-btns .btn-outline:hover {
  border-color: var(--accent);
}

/* ============ RESPONSIVE: Hero, Brands, Features, CTA ============ */
@media (max-width: 992px) {
  .hero-modern .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-mod-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-mod-btns {
    justify-content: center;
  }

  .hero-mod-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-contact-form {
    max-width: 100%;
    margin: 0 auto;
  }

  .brands-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-mod-grid,
  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 60px 0 50px;
  }

  .hero-mod-content h1 {
    font-size: 30px;
  }

  .hero-mod-content h1 span::after {
    display: none;
  }

  .hero-mod-card {
    display: none;
  }

  .hero-img-small {
    width: 48px;
    height: 48px;
  }

  .hero-img-s1 { top: -8px; right: -8px; }
  .hero-img-s2 { bottom: 20px; left: -12px; }
  .hero-img-s3 { bottom: -6px; right: 10px; }
  .hero-img-s4 { top: 25%; left: -14px; }

  .hero-contact-form {
    padding: 28px 20px;
  }

  .brands-showcase-grid {
    grid-template-columns: 1fr;
  }

  .setup-step {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .step-img {
    width: 100%;
    height: 160px;
  }

  .features-mod-grid,
  .services-preview-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-plus, .stat-percent, .stat-min {
    font-size: 24px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box h2 {
    font-size: 24px;
  }

  .cta-btns .btn {
    width: 100%;
  }
}

/* ============ BRAND BANNER ============ */
.brand-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.brand-banner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.brand-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,61,0.85) 0%, rgba(10,31,61,0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.brand-banner-overlay h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.brand-banner-overlay p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
}

@media (max-width: 768px) {
  .brand-banner-img {
    height: 180px;
  }
  .brand-banner-overlay h2 {
    font-size: 24px;
  }
  .brand-banner-overlay p {
    font-size: 15px;
  }
}

/* ============ BRAND TABS ============ */
.brand-tabs-section {
  background: var(--bg-white);
  padding: 40px 0 0;
}

.brand-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--bg-white);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.brand-tab-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-tab:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.brand-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(10,31,61,0.25);
}

.brand-panel {
  display: none;
}

.brand-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .features .container,
  .services-grid,
  .reviews-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .header-support {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero h1 span::after {
    display: none;
  }

  .hero p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-right .floating-badge {
    display: none;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .features .container,
  .services-grid,
  .reviews-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 12px;
  }

  .stats {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 20px;
  }

  .hero-buttons .btn {
    flex: 1;
    min-width: 180px;
  }

  .about-image {
    order: -1;
  }

  .contact-form {
    padding: 28px;
  }

  .blog-detail h1 {
    font-size: 26px;
  }
}

/* ============ Page Banner ============ */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.page-banner .accent-line {
  margin: 20px auto 0;
}

/* ============ Legal Content ============ */
.legal-content {
  padding: 80px 0;
  background: var(--bg-light);
}

.legal-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.legal-card h2 {
  font-size: 22px;
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 14px;
  font-weight: 700;
}

.legal-card h2:first-child {
  margin-top: 0;
}

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

.legal-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-card ul li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-card a {
  color: var(--accent);
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

/* ============ Blog Listing ============ */
.blog-listing {
  padding: 80px 0;
  background: var(--bg-light);
}

.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

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

.blog-card-full {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
}

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

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

.blog-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-body .read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* ============ Blog Post ============ */
.blog-post {
  padding: 80px 0;
  background: var(--bg-light);
}

.blog-post-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
}

.blog-post-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin: 16px 0;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.blog-meta i {
  margin-right: 6px;
  color: var(--accent);
}

.blog-post-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-content {
  max-width: 750px;
  margin: 0 auto;
}

.blog-post-content p {
  color: var(--text-dark);
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
}

.blog-post-content h2 {
  font-size: 26px;
  color: var(--primary);
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 700;
}

.blog-post-content ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.blog-post-content ul li {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 10px;
}

.blog-post-content ul li strong {
  color: var(--primary);
}

.blog-highlight {
  background: linear-gradient(135deg, rgba(13,71,161,0.05), rgba(245,166,35,0.08));
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 32px;
}

.blog-highlight p {
  margin-bottom: 0 !important;
  font-size: 15px !important;
}

.blog-tip {
  background: rgba(13,71,161,0.06);
  border-left: 4px solid var(--primary-light);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 32px;
}

.blog-tip p {
  margin-bottom: 0 !important;
  font-size: 15px !important;
}

.blog-post-image-inline {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-post-image-inline img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}

.blog-cta-box h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.blog-cta-box p {
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 24px !important;
  font-size: 16px !important;
}

.blog-cta-box .btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 8px 8px;
}

.blog-cta-box .btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.blog-cta-box .btn-primary:hover {
  background: var(--accent-hover);
}

.blog-cta-box .btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.blog-cta-box .btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

.blog-post-content .faq-list {
  margin-top: 24px;
}

.blog-post-content .faq-list .faq-question {
  font-size: 16px;
}

/* ============ Footer Legal Links ============ */
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ============ Blog Section Home ============ */
.blog-section-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.blog-section-header .view-all {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.blog-section-header .view-all:hover {
  color: var(--accent-hover);
  transform: translateX(4px);
}

/* ============ Hero Carousel ============ */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-carousel-slide.active {
  opacity: 1;
}

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

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .hero-carousel-track {
    height: 260px;
    border-radius: 16px;
  }
  .hero-carousel {
    max-width: 100%;
  }
}

/* ============ Services Brand Tabs ============ */
.services-brand-tabs {
  padding: 80px 0;
  background: var(--bg-white);
}

.services-brand-tabs .section-header {
  margin-bottom: 40px;
}

.services-brand-tabs .services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.services-brand-tabs .service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.services-brand-tabs .service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.services-brand-tabs .service-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.services-brand-tabs .service-card-icon i {
  font-size: 22px;
  color: #fff;
}

.services-brand-tabs .service-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.services-brand-tabs .service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-page {
  padding: 60px 0 50px;
}

.hero-page .hero-mod-content h1 {
  font-size: 42px;
}

@media (max-width: 992px) {
  .services-brand-tabs .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-brand-tabs .services-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ Blog Banner Responsive ============ */
@media (max-width: 768px) {
  .page-banner h1 { font-size: 28px; }
  .page-banner { padding: 80px 0 40px; }
  .legal-card { padding: 28px; }
  .blog-post-header h1 { font-size: 24px; }
  .blog-post-content h2 { font-size: 20px; }
  .blog-cta-box { padding: 28px; }
  .blog-cta-box h3 { font-size: 18px; }
  .blog-meta { flex-wrap: wrap; gap: 12px; }
}
