@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0060df;       /* iNET-style Royal Blue */
  --accent-red: #f5222d;    /* Red logo accent */
  --bg-main: #ffffff;
  --bg-secondary: #f8fafc;  /* Ice Blue/Light Gray section */
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;
  --text-main: #0f172a;     /* Dark Slate */
  --text-secondary: #475569; /* Slate Gray */
  --text-muted: #94a3b8;
  --accent-emerald: #10b981;
  --accent-rose: #f43f5e;
  --accent-amber: #d97706;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(0, 96, 223, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header & Navbar (iNET Style Dual Bar) */
header {
  position: relative;
  z-index: 999;
}

.header-top {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  height: 38px;
  display: flex;
  align-items: center;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-secondary);
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-left .promo-badge {
  background: var(--accent-red);
  color: #ffffff;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-top-right a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  transition: color 0.2s;
  color: var(--text-secondary);
}

.header-top-right a:hover {
  color: var(--primary);
}

.header-main {
  height: 64px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
  flex-shrink: 0;
}

.logo span {
  color: var(--accent-red);
}

/* Lower Blue Navigation Menu Bar */
.header-menu-bar {
  background: var(--primary);
  height: 42px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.header-menu-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.home-icon-btn {
  background: rgba(255, 255, 255, 0.12);
  height: 42px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.2s;
}

.home-icon-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.menu-item-wrapper {
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
}

.menu a.menu-link {
  color: #ffffff; /* White text on blue menu bar */
  font-size: 13.5px;
  font-weight: 600;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.menu a.menu-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Elegant CSS carets for dropdown menus (iNET Style) */
.menu a.menu-link.has-dropdown::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: -3px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.menu-item-wrapper:hover .menu-link.has-dropdown::after {
  transform: rotate(225deg);
  margin-top: 1px;
}

/* Mega Menu container */
.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 720px;
  background: #ffffff !important; /* Force solid white background */
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 9999; /* Ensure it floats on top of all page elements */
}

.menu-item-wrapper:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mega menu left column (Articles) */
.mega-articles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.mega-article-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.2s;
  border: 1px solid transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
}

.mega-article-item:hover {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.mega-article-img {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-secondary);
}

.mega-article-info h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mega-article-info p {
  font-size: 12px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mega menu right column (CTA / Contact) */
.mega-cta {
  background: linear-gradient(135deg, rgba(0, 96, 223, 0.04), rgba(245, 34, 45, 0.04));
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-main);
}

.mega-cta-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 15px;
}

.mega-cta-info {
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.mega-cta-info strong {
  color: var(--primary);
}

.btn-mini {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: 0.25s;
}

.btn-mini:hover {
  background: #004bbf;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 96, 223, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 110px 0 90px;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 96, 223, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(245, 34, 45, 0.06) 0%, transparent 45%),
    linear-gradient(135deg, #050b1e 0%, #0d1e3d 100%);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #93c5fd;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero h1 span {
  background: linear-gradient(90deg, #38bdf8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 34px;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.25s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: #004bbf;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 96, 223, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Dashboard screen demo */
.dashboard {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.screen {
  background: #0b132b;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.screen-top {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1e293b;
}

.card-line {
  height: 12px;
  border-radius: 6px;
  background: #1e293b;
  margin-bottom: 12px;
}

.card-line.big {
  height: 80px;
  background: linear-gradient(90deg, #1e293b, var(--primary));
  border-radius: 10px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
  color: #cbd5e1;
  font-size: 12px;
}

.mini-card strong {
  display: block;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}

/* Sections general */
section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-title p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

/* Services */
#services {
  background-color: var(--bg-main);
}

.services-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.services {
  display: flex;
  overflow-x: auto;
  gap: 22px;
  padding: 10px 4px 25px 4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services::-webkit-scrollbar {
  display: none;
}

.slider-btn {
  position: absolute;
  top: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 96, 223, 0.2);
}

.slider-btn:active {
  transform: scale(0.95);
}

.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

.service {
  flex: 0 0 calc(25% - 17px);
  min-width: 270px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  transition: 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.service:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(0, 96, 223, 0.08);
}

.service .icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: inline-block;
  padding: 10px;
  background: var(--bg-secondary);
  border-radius: 12px;
}

.service h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.service p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Process */
.process {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin: 0;
  transition: transform 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}

.step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.step p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* About Us */
#about {
  background-color: var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.about-box {
  background: linear-gradient(135deg, rgba(0, 96, 223, 0.04), rgba(245, 34, 45, 0.02));
  border: 1px solid #d0e2ff;
  border-radius: 20px;
  padding: 36px;
}

.about-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-main);
}

.about-box p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.list {
  display: grid;
  gap: 14px;
}

.list div {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* Contact request Form */
.contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
  color: var(--text-main);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.info {
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 14px;
}

.info strong {
  color: var(--text-main);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  transition: all 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 96, 223, 0.12);
}

.form-group select option {
  background: #ffffff;
  color: var(--text-main);
}

.contact-form button {
  margin-top: 10px;
}

/* AJAX Message styles */
.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
  display: block;
}

.form-message.error {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: var(--accent-rose);
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Post detail page style */
.post-detail-header {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, rgba(0, 96, 223, 0.05), transparent);
}

.post-meta {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.post-detail-title {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.post-summary {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 800px;
  margin-bottom: 30px;
}

.post-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
  color: var(--text-secondary);
  font-size: 16px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  color: var(--text-main);
  margin: 35px 0 15px;
  font-weight: 700;
}

.back-to-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 30px;
  transition: 0.2s;
}

.back-to-home:hover {
  transform: translateX(-4px);
}

/* Footer */
footer {
  padding: 60px 0 40px;
  background: #050b1e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #94a3b8;
}

footer strong {
  color: white;
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

footer p {
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* 2 Column Layout for Post and Service details */
.detail-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  margin-top: 20px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.detail-sidebar {
  min-width: 0;
}

.detail-sidebar {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
  color: var(--text-main);
}

.detail-sidebar h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  color: var(--primary);
}

.detail-sidebar-info {
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 14px;
  color: var(--text-secondary);
}

.detail-sidebar-info strong {
  color: var(--text-main);
}

/* Header Search Box (iNET Style) */
.header-search-box {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 4px 6px 4px 12px;
  max-width: 170px;
  flex: 1;
  margin: 0 10px;
}

.header-search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: var(--text-main);
  width: 100%;
}

.header-search-box button {
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.header-search-box button:hover {
  background: #004bbf;
}

/* Hide header search box on mobile/tablet */
@media (max-width: 980px) {
  .header-search-box {
    display: none;
  }
}

/* Domain Checker Card */
.domain-checker-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checker-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.checker-header p {
  color: #94a3b8 !important;
  font-size: 13px !important;
  margin-bottom: 0 !important;
}

.checker-input-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.checker-input-group input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: all 0.25s;
}

.checker-input-group input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.checker-input-group button {
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.checker-input-group button:hover {
  background: #004bbf;
}

.default-domain-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0, 0, 0, 0.15);
  padding: 12px;
  border-radius: 10px;
}

.default-domain-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: #cbd5e1;
}

.default-domain-item .ext {
  font-weight: 700;
  color: #ffffff;
}

.domain-results-list {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 12px;
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.result-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.result-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.result-domain {
  font-weight: 700;
  color: #ffffff;
}

.result-price {
  color: #93c5fd;
  font-weight: 600;
}

.btn-result-order {
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-result-order:hover {
  opacity: 0.9;
}

/* Pricing Grid Styles */
.pricing-sec {
  border-bottom: 1px solid var(--border-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 35px 28px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.badge-card {
  align-self: flex-start;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card.popular .badge-card {
  background: rgba(0, 96, 223, 0.05);
  border-color: rgba(0, 96, 223, 0.15);
  color: var(--primary);
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
}

.price-box {
  display: flex;
  align-items: baseline;
  color: var(--text-main);
}

.price-box .currency {
  font-size: 16px;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 4px;
}

.price-box .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.price-box .period {
  font-size: 13px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
  margin-top: 6px;
}

.specs-list li {
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
}

.specs-list li strong {
  color: var(--text-main);
}

.btn-card-order {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-main);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: auto;
  text-align: center;
}

.btn-card-order:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.pricing-card.popular .btn-card-order {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.pricing-card.popular .btn-card-order:hover {
  background: #004bbf;
}

/* Ribbon badge */
.ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

.ribbon.red {
  background: var(--accent-red);
}

.ribbon.green {
  background: var(--accent-emerald);
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 10px;
  transition: all 0.3s linear;
}

/* Responsive Styling */
@media (max-width: 980px) {
  .header-top {
    display: none;
  }
  .header-menu-bar {
    display: block !important;
    position: static;
    height: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    overflow: visible;
  }
  .header-menu-bar .container {
    display: block !important;
    height: 0;
    padding: 0;
  }
  .home-icon-btn {
    display: none !important;
  }
  .header-main {
    height: 64px;
  }
  .header-main .container {
    width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  main.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid,
  .about-grid,
  .steps,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--text-main);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--text-main);
  }

  .menu {
    display: flex !important;
    position: fixed;
    top: 64px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 64px);
    background: #ffffff;
    border-left: 1px solid var(--border-color);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 15px;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    overflow-y: auto;
  }

  .menu.active {
    right: 0;
  }

  .menu-item-wrapper {
    width: 100%;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .menu a.menu-link {
    margin-left: 0;
    font-size: 16px;
    width: 100%;
    color: var(--text-main);
    padding: 8px 0;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
  }

  .menu a.menu-link.has-dropdown::after {
    border-color: var(--text-secondary);
  }

  .menu-item-wrapper.active .menu-link.has-dropdown::after {
    transform: rotate(225deg);
    margin-top: 1px;
  }

  /* Submenus on Mobile - Premium Styling with background & left border strip */
  .tvo-dropdown-menu {
    position: static;
    width: 100% !important;
    box-shadow: none;
    border: none;
    padding: 8px 12px;
    display: none;
    background: var(--bg-secondary) !important;
    border-left: 3px solid var(--primary);
    border-radius: 6px;
    margin-top: 6px;
  }

  .menu-item-wrapper.active .tvo-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .tvo-dropdown-item {
    color: var(--text-secondary) !important;
    font-size: 15px !important;
    font-weight: 500;
    padding: 10px 0 !important; /* Increased touch targets for easy finger tapping */
    display: block;
    border-bottom: none !important;
  }

  .tvo-dropdown-item:hover {
    color: var(--primary) !important;
    background: transparent !important;
  }

  /* Mega menu for mobile */
  .mega-menu {
    position: static;
    width: 100% !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 10px 0 0 10px;
    display: none;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-item-wrapper:hover .mega-menu,
  .menu-item-wrapper.active .mega-menu {
    display: grid;
  }

  .mega-cta {
    display: none;
  }

  .service {
    flex: 0 0 calc(50% - 11px);
  }

  .hero h1 {
    font-size: 40px;
  }

  .step {
    margin: 10px 0;
  }
}

@media (max-width: 600px) {
  .service {
    flex: 0 0 85%;
  }

  .hero {
    padding: 75px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-title h2,
  .contact-info h2 {
    font-size: 26px;
  }

  .contact-grid {
    padding: 24px;
  }
  
  .post-detail-title {
    font-size: 28px;
  }
}

/* Responsive overrides for slider buttons */
@media (max-width: 980px) {
  .prev-btn {
    left: -12px;
  }
  .next-btn {
    right: -12px;
  }
}

@media (max-width: 600px) {
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  .prev-btn {
    left: -5px;
  }
  .next-btn {
    right: -5px;
  }
}

/* ==========================================================================
   iNET Style Homepage Sections (TVO Software Premium Makeover)
   ========================================================================== */

/* 1. Centered Hero Section */
.inet-hero {
  background: radial-gradient(circle at top, #0c2b53 0%, #004bbf 100%);
  padding: 80px 0 90px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inet-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.inet-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.inet-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Centered iNET Search Panel */
.inet-search-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: left;
}

.inet-search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
  padding-left: 8px;
}

.inet-search-tab {
  border: none;
  background: transparent;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 6px 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.inet-search-tab.active {
  background: var(--primary);
  color: #ffffff;
}

.inet-search-row {
  display: flex;
  gap: 10px;
}

.inet-search-row input {
  flex: 1;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 15px;
  outline: none;
  font-weight: 500;
  color: var(--text-main);
  transition: border-color 0.2s;
}

.inet-search-row input:focus {
  border-color: var(--primary);
}

.inet-search-row button {
  background: #ff5722; /* High attention orange/red button */
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 0 35px;
  cursor: pointer;
  transition: background 0.2s;
}

.inet-search-row button:hover {
  background: #e64a19;
}

/* Extension Bubbles */
.inet-bubbles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 850px;
  margin: 0 auto;
}

.ext-bubble {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  cursor: pointer;
}

.ext-bubble:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
  border-color: #ffffff;
}

.ext-bubble .ext-name {
  font-weight: 800;
  font-size: 14px;
}

.ext-bubble .ext-price {
  font-size: 12.5px;
  opacity: 0.9;
}

.ext-bubble:hover .ext-price {
  color: #ff5722;
  font-weight: 700;
}

/* 2. Alternating Section Layouts */
.inet-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.inet-section.bg-white {
  background: #ffffff;
}

.inet-section.bg-ice {
  background: #f8fafc;
}

.inet-section.bg-orange {
  background: linear-gradient(135deg, #e65100 0%, #ff8f00 100%);
  color: #ffffff;
}

.inet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.section-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.inet-section.bg-orange .section-content h2 {
  color: #ffffff;
}

.section-content p.desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.inet-section.bg-orange .section-content p.desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Specs check lists */
.specs-check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.specs-check-list li {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.inet-section.bg-orange .specs-check-list li {
  color: #ffffff;
}

.specs-check-list li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 900;
  font-size: 16px;
}

.inet-section.bg-orange .specs-check-list li::before {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
}

.btn-inet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 35px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 96, 223, 0.25);
  transition: all 0.2s;
}

.btn-inet:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 96, 223, 0.35);
  background: #0050bc;
}

.inet-section.bg-orange .btn-inet {
  background: #ffffff;
  color: #e65100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.inet-section.bg-orange .btn-inet:hover {
  background: #f8fafc;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Beautiful Floating CSS Illustrations */
.illustration-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.inet-graphic-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--border-color);
  animation: floatIllustration 6s ease-in-out infinite;
}

@keyframes floatIllustration {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.inet-graphic-web {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.graphic-header {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.graphic-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.graphic-dot.red { background: #ff5f56; }
.graphic-dot.yellow { background: #ffbd2e; }
.graphic-dot.green { background: #27c93f; }

.graphic-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.graphic-line {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
}

.inet-graphic-web .graphic-line {
  background: rgba(255, 255, 255, 0.2);
}

.graphic-line.half { width: 50%; }
.graphic-line.quarter { width: 25%; }
.graphic-line.third { width: 75%; }

/* iNET Style Partner Trust Bar */
.partner-section {
  padding: 50px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.partner-section h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}

.partner-logo-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo-item {
  font-size: 18px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: -0.5px;
  transition: color 0.2s;
}

.partner-logo-item:hover {
  color: var(--text-main);
}

/* iNET Testimonials Grid */
.reviews-section {
  padding: 90px 0;
  background: #f8fafc;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.review-info h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--text-main);
}

.review-info span {
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* Benefit Cards at bottom */
.benefits-section {
  padding: 90px 0;
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.benefit-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* 5-Column iNET Style Footer */
.inet-footer {
  background: #0b1e33;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 40px;
  font-size: 13.5px;
  border-top: 4px solid var(--primary);
}

.inet-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-info p {
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile optimizations for iNET Grid */
@media (max-width: 768px) {
  .inet-grid, .reviews-grid, .benefits-grid, .inet-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   iNET Style Inner Service Details Pages (TVO Software Premium Styling)
   ========================================================================== */

/* 1. Comparison Table */
.inet-compare-wrapper {
  overflow-x: auto;
  margin: 20px 0 35px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.inet-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  text-align: left;
}

@media (max-width: 992px) {
  .inet-compare-table {
    min-width: 700px; /* Only scroll on smaller screen widths */
  }
}

.inet-compare-table th, .inet-compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13.5px;
  color: var(--text-main);
}

.inet-compare-table th {
  background: #f8fafc;
  font-weight: 700;
  border-bottom: 2px solid var(--border-color);
}

.inet-compare-table tr:hover td {
  background: #f8fafc;
}

.inet-compare-table td.highlight {
  font-weight: 700;
  color: var(--primary);
}

.inet-compare-table td.price {
  font-weight: 800;
  color: var(--accent-red);
}

.inet-compare-table .btn-table-order {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  background: var(--primary);
  color: #ffffff;
  border-radius: 4px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.inet-compare-table .btn-table-order:hover {
  background: #004bbf;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 96, 223, 0.2);
}

/* 2. Highlight Features Grid */
.inet-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin: 35px 0 20px;
  text-align: center;
  position: relative;
  padding-bottom: 8px;
}

.inet-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.inet-inner-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 15px;
  margin-bottom: 35px;
}

.inet-feature-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.inet-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.inet-feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: inline-block;
}

.inet-feature-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.inet-feature-card p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* 3. Accordion FAQs */
.inet-faq-accordions {
  margin: 20px 0 35px;
}

.inet-faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.inet-faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 96, 223, 0.05);
}

.inet-faq-item summary {
  padding: 15px 20px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inet-faq-item summary::-webkit-details-marker {
  display: none;
}

.inet-faq-item summary::after {
  content: "+";
  font-size: 18px;
  font-weight: bold;
  color: var(--text-secondary);
  transition: transform 0.2s ease;
}

.inet-faq-item[open] summary::after {
  content: "−";
  color: var(--primary);
}

.inet-faq-content {
  padding: 0 20px 15px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

/* Compact Dropdown style */
.tvo-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #ffffff !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  padding: 8px 0 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.menu-item-wrapper:hover .tvo-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tvo-dropdown-item {
  display: block !important;
  padding: 10px 18px !important;
  color: var(--text-main) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s !important;
  text-align: left !important;
}

.tvo-dropdown-item:hover {
  background: #f1f5f9 !important;
  color: var(--primary) !important;
}
