/* Material Design Inspired CSS for 365always.online */

/* CTA Section */

.secondary-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  max-width: 500px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transition: var(--transition-slow);
}

.bg-brand\/5 {
  background-color: rgba(46, 194, 167, 0.05);
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-lg {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-lg svg {
  transition: transform 0.3s ease;
}

.btn-lg:hover svg {
  transform: translateX(4px);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .dark\:bg-surface {
    background-color: var(--surface);
  }

  .shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

/* Base Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* Header */


/* Base Header Styles */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
}

.header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  position: relative;
}

.header .logo {
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
  z-index: 1001;
  display: flex;
  align-items: center;
}
.header .logo img {
  max-height: 68px;
}

/* Navigation Menu */
.header .nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header .nav-links {
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  position: relative;
}

.header .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #2EC2A7;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header .nav-links a:hover {
  color: #2EC2A7;
  transform: translateY(-1px);
}

.header .nav-links a:hover::after {
  width: 60%;
}

.header .nav-buttons {
  display: flex;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.header .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  line-height: 1.5;
  border: 1px solid transparent;
}

.header .btn-secondary {
  background-color: #f1f5f9;
  color: #1e293b;
}

.header .btn-secondary:hover {
  background-color: #e2e8f0;
  transform: translateY(-1px);
}

.header .btn-primary {
  background-color: #2EC2A7;
  color: white;
}

.header .btn-primary:hover {
  background-color: #2EC2A7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Mobile Menu Toggle */
.header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}



.header .hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.header .hamburger::before,
.header .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.header .mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
  background: #1F2937;
}

.header .mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
  background: #1F2937;
}

.header .hamburger::before {
  transform: translateY(-8px);
}

.header .hamburger::after {
  transform: translateY(8px);
}

/* Responsive Breakpoints */
/* Large desktops */
@media (max-width: 1440px) {
  .header .nav-links {
    gap: 1rem;
  }

  .header .nav-buttons {
    margin-left: 1rem;
  }
}

/* Standard desktops */
@media (max-width: 1280px) {
  .header .container {
    max-width: 100%;
    padding: 0 2rem;
  }
}

/* Small desktops and large tablets */
@media (max-width: 1200px) {
  .header .logo {
    font-size: 1.4rem;
  }

  .header .nav-links {
    gap: 0.8rem;
  }

  .header .nav-links a {
    font-size: 0.95rem;
    padding: 0.5rem 0.6rem;
  }

  .header .nav-buttons {
    gap: 0.6rem;
  }

  .header .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

/* Tablets and small desktops */
@media (max-width: 1024px) {
  .header .nav-links {
    gap: 0.6rem;
  }

  .header .nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem 0.5rem;
  }

  .header .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
  }
}

/* Tablets and below */
@media (max-width: 991px) {
  .header .mobile-menu-toggle {
    display: block;
    z-index: 1210;
  }

  .header .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 3rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.5rem;
    z-index: 1200;
    overflow-y: auto;
    display: none;
  }

  .header .nav-menu.active {
    right: 0;
    display: flex;
  }

  .header .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .header .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    width: 100%;
    color: #1F2937;
  }

  .header .nav-links a:hover {
    background-color: #f8fafc;
  }

  .header .nav-links a::after {
    display: none;
  }

  .header .nav-buttons {
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 0;
    gap: 0.75rem;
  }

  .header .nav-buttons .btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }

  /* Animate hamburger to X when menu is open */
  .header .mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }

  .header .mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(0) rotate(45deg);
  }

  .header .mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(0) rotate(-45deg);
  }
}

/* Small tablets and large phones */
@media (max-width: 767px) {
  .header .container {
    padding: 0 1.5rem;
  }

  .header .logo {
    font-size: 1.6rem;
  }

  .header .nav-menu {
    width: 85%;
    padding: 5.5rem 2rem 2.5rem;
  }
}

/* Small devices */
@media (max-width: 480px) {
  .header .container {
    padding: 0 1.25rem;
  }

  .header .logo {
    font-size: 1.5rem;
  }

  .header .nav-menu {
    width: 90%;
    padding: 5.5rem 1.5rem 2.5rem;
  }

  .header .nav-links a {
    padding: 0.7rem 1rem;
    font-size: 1.05rem;
  }

  .header .mobile-menu-toggle {
    padding: 0.6rem;
  }
}

/* Main Content */
main {
  min-height: calc(100vh - 300px);
  /* Adjust based on header/footer height */
}

/* Footer */
footer {
  background: var(--surface);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand);
  padding-left: 0.5rem;
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
}

/* Base Styles */
:root {
  /* Color System */
  --bg: #0B1220;
  --surface: #0F172A;
  --text: #E6EAF2;
  --muted: #9AA4B2;
  --brand: #2EC2A7;
  --brand-600: #1AA58C;
  --accent: #FF8A3D;
  --border: #1F2937;

  /* Typography */
  --font-base: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.2s ease-in-out;
  --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Base Typography */
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-base);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Typography Scale */
h1,
.h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 var(--space-6);
  letter-spacing: -0.025em;
}

h2,
.h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 var(--space-5);
  letter-spacing: -0.02em;
}

h3,
.h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 var(--space-4);
}

h4,
.h4 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 var(--space-3);
}

p {
  margin: 0 0 var(--space-4);
}

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

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

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

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

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 2rem;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

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

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

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Mobile Navigation */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition-slow);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu .nav-menu {
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.5rem;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
}

.mobile-menu .nav-actions {
  padding: 1rem 1.5rem 0;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  padding-top: 1rem;
}

/* Responsive Typography */
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

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

/* Spacing Utilities */
.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.max-w-2xl {
  max-width: 42rem;
}

/* Responsive CTA Section */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:text-left {
    text-align: left;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:mb-0 {
    margin-bottom: 0;
  }

  .sm\:mt-0 {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .md\:p-12 {
    padding: 3rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu .nav-actions {
    display: flex;
  }
}

/* Responsive Spacing */
.section {
  padding: var(--space-16) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-20) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(12, 1fr);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 194, 167, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  background: linear-gradient(to right, #ffffff, #e0e0e0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: var(--space-8);
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-left: auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transition: var(--transition-slow);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--transition-slow);
}

.hero-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: var(--transition-slow);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.05);
}

.card:hover::before {
  opacity: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text);
}

.card-description {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: rgba(46, 194, 167, 0.1);
  color: var(--brand);
  margin-bottom: var(--space-4);
  font-size: 1.5rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--brand);
  color: #07120f;
  transform: rotate(5deg) scale(1.1);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-6);
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--muted);
  transition: var(--transition);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background-color: rgba(255, 255, 255, 0.03);
  background-clip: padding-box;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: var(--shadow-sm);
}

.form-control:not(textarea) {
  height: 3rem;
}

.form-control:focus {
  color: var(--text);
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--brand);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(46, 194, 167, 0.1);
}

/* Form control focus state */
.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
  color: var(--brand);
  transform: translateY(-0.5rem) scale(0.9);
}

/* Form control disabled and read-only styles */
.form-control:disabled,
.form-control[readonly] {
  background-color: rgba(255, 255, 255, 0.02);
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form control with icons */
.form-group.has-icon {
  position: relative;
}

.form-group .form-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  transition: var(--transition);
}

.form-group .form-control {
  padding-left: 3rem;
}

.form-group:focus-within .form-icon {
  color: var(--brand);
}

/* Form validation states */
.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: var(--brand);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%232EC2A7' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #ff4444;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff4444' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #ff4444;
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
  display: block;
}

/* Checkboxes and Radios */
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check-input {
  float: left;
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: var(--surface);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--border);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: var(--transition);
}

.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}

.form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: var(--brand);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(46, 194, 167, 0.25);
}

.form-check-input:checked {
  background-color: var(--brand);
  border-color: var(--brand);
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2307120f' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%2307120f'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.form-check-input[disabled]~.form-check-label,
.form-check-input:disabled~.form-check-label {
  opacity: 0.5;
}

/* Form Switch */
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%232EC2A7'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2307120f'/%3e%3c/svg%3e");
}

/* Form Select */
select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239AA4B2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.25rem;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

/* Form Range */
.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-range:focus {
  outline: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: var(--brand);
  border: 0;
  border-radius: 1rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-range::-webkit-slider-thumb:active {
  background-color: var(--brand-600);
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--border);
  border-radius: 1rem;
}

/* Form Floating Labels */
.form-floating {
  position: relative;
}

.form-floating>.form-control,
.form-floating>.form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  padding: 1rem 0.75rem;
}

.form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Form Groups */
.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--muted);
}

/* Input Groups */
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group>.form-control,
.input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Form Sizes */
.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--radius-lg);
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Helper Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.p-4 {
  padding: var(--space-4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: 0.75rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.6rem;
}

/* Infrastructure & Security Section */
.infrastructure-section {
  position: relative;
  overflow: hidden;
}

.infrastructure-content {
  position: relative;
  z-index: 2;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.infrastructure-header {
  margin-bottom: 3rem;
  text-align: center;
}

.infrastructure-header h2 {
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--brand), var(--brand-400));
  display: inline-block;
}

.infrastructure-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.infrastructure-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.infrastructure-feature {
  display: flex;
  align-items: flex-start;
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.infrastructure-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-100);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  transition: all 0.3s ease;
}

.infrastructure-feature:hover .feature-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
}

.feature-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand);
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.infrastructure-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.infrastructure-image:hover {
  transform: translateY(-5px);
}

.infrastructure-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.image-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.image-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

/* Testimonials Section */
.section.testimonials-section {
  padding-bottom: 0;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
  display: inline-block;
}

.testimonials-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.cta-band .grid{
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Hide scrollbar for Chrome, Safari and Opera */
.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--surface);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-100);
}

.testimonial-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--brand);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-icon {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--brand-200);
  position: absolute;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-content::before {
  top: -1.5rem;
  left: -0.5rem;
}

.testimonial-content::after {
  bottom: -2.5rem;
  right: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--brand-100);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.testimonial-info p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.testimonial-rating {
  display: flex;
  margin-top: 0.5rem;
}

.testimonial-rating svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #F59E0B;
  margin-right: 0.25rem;
}

@media (min-width: 1024px) {
  .infrastructure-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .infrastructure-features {
    order: 2;
  }

  .infrastructure-image {
    order: 1;
  }
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(46, 194, 167, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.feature-description {
  color: var(--text-muted);
  flex-grow: 1;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Grid Layout */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--span-2 {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card--span-2 {
    grid-column: span 2;
  }

  .feature-card--span-1 {
    grid-column: span 1;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: white;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brand);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 0.5rem;
}

.btn-outline:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-600);
}

.btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Button Sizes */
.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1.0625rem;
  border-radius: 1rem;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  .btn-primary {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .btn-primary:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  }

  .btn-outline {
    border-color: var(--brand-400);
  }

  .btn-outline:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 194, 167, 0.3);
}

.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Button Variants */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow, background;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: #07120f;
  border: none;
  box-shadow: 0 4px 15px rgba(46, 194, 167, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* ==========================================================================
   BLOG LAYOUT STYLES
   ========================================================================== */

/* Blog Container */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.blog-hero {
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.blog-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.blog-category {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-hero h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: var(--heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-meta {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.blog-featured-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.blog-featured-image:hover img {
  transform: scale(1.03);
}

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Main Content */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Table of Contents */
.blog-toc {
  position: relative;
}

.toc-sticky {
  position: sticky;
  top: 2rem;
  background: var(--bg-alt);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.blog-toc h3 {
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--heading);
  position: relative;
  padding-bottom: 0.75rem;
}

.blog-toc h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

.blog-toc nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-toc nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-toc nav a:hover,
.blog-toc nav a:focus {
  background: rgba(46, 194, 167, 0.1);
  color: var(--brand);
  transform: translateX(4px);
}

/* Article Content */
.blog-article {
  line-height: 1.8;
  color: var(--text);
  font-size: 1.1rem;
}

.blog-section {
  margin-bottom: 3rem;
}

.blog-section:last-child {
  margin-bottom: 0;
}

.blog-article h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin: 3rem 0 1.5rem;
  color: var(--heading);
  position: relative;
  padding-bottom: 0.75rem;
}

.blog-article h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
  opacity: 0.7;
}

.blog-article p {
  margin-bottom: 1.5rem;
}

.blog-article a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.2s ease;
}

.blog-article a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Author Bio */
.blog-author {
  display: flex;
  gap: 1.5rem;
  margin: 4rem 0;
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: 1rem;
  align-items: center;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--brand);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  color: var(--heading);
}

.author-title {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.author-bio {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--bg-alt);
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: var(--heading);
}

/* CTA Card */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Related Articles */
.related-articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.related-article:hover {
  background: var(--bg-alt);
  border-color: var(--brand);
  transform: translateX(4px);
}

.related-article span {
  flex: 1;
  margin-right: 1rem;
}

.related-article svg {
  color: var(--brand);
  transition: transform 0.2s ease;
}

.related-article:hover svg {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-toc {
    order: -1;
  }

  .toc-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 3rem 0 2rem;
  }

  .blog-hero h1 {
    font-size: 2.25rem;
  }

  .blog-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .blog-article h2 {
    font-size: 1.5rem;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .author-avatar {
    margin-bottom: 1rem;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Add smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #07120f;
  box-shadow: 0 8px 20px rgba(46, 194, 167, 0.4);
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(46, 194, 167, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--muted);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--brand);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Button Sizes */
.btn-sm {
  height: 2.25rem;
  padding: 0 var(--space-3);
  font-size: 0.8125rem;
}

.btn-lg {
  height: 3.5rem;
  padding: 0 var(--space-8);
  font-size: 1.125rem;
}

/* Full Width Button */
.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

h1 {
  font-size: clamp(32px, 5vw, 38px);
  line-height: 1.2;
  margin: 12px 0;
}

h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.25;
  margin: 0 0 16px;
}

h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 24px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.section {
  padding: 72px 0;
}

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

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

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

.muted {
  color: var(--muted);
}

/* Pricing Table Styles */
.comparisonTableContainer{
  overflow: auto;
}
.comparisonTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 3rem 0;
  font-size: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15), 0 10px 20px -10px rgba(0, 0, 0, 0.1);
  background: var(--surface);
  color: var(--text);
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparisonTable:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.comparisonTable th,
.comparisonTable td {
  padding: 1.5rem 2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.comparisonTable th {
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.comparisonTable th::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  pointer-events: none;
  opacity: 0.8;
}

.comparisonTable th:first-child {
  border-top-left-radius: 1rem;
}

.comparisonTable th:last-child {
  border-top-right-radius: 1rem;
}

.comparisonTable tbody tr:last-child td {
  border-bottom: none;
}

.comparisonTable tbody tr {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.04) 50%,
      rgba(255, 255, 255, 0.02) 100%);
}

.comparisonTable tbody tr:nth-child(even) {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.01) 0%,
      rgba(255, 255, 255, 0.02) 50%,
      rgba(255, 255, 255, 0.01) 100%);
}

.comparisonTable tbody tr:hover {
  background: linear-gradient(90deg,
      rgba(46, 194, 167, 0.05) 0%,
      rgba(46, 194, 167, 0.08) 50%,
      rgba(46, 194, 167, 0.05) 100%);
  transform: translateX(5px);
}

.comparisonTable tbody tr:active {
  transform: translateX(3px) scale(0.995);
  transition: transform 0.1s ease;
}

.comparisonTable td:not(:first-child) {
  text-align: center;
  font-weight: 500;
  position: relative;
  font-size: 1.05em;
}

.comparisonTable td:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent);
  opacity: 0.7;
}

.comparisonTable td:first-child {
  font-weight: 600;
  color: var(--text);
  position: relative;
  font-size: 0.95em;
  padding-left: 1.5rem;
}

.comparisonTable td:first-child::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--brand);
  font-size: 1.2em;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}

.comparisonTable td:first-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  opacity: 0.7;
}

/* Checkmark and Cross Styling */
.comparisonTable td[data-feature="true"] {
  color: #10b981;
  font-weight: 600;
  position: relative;
  padding-left: 2.5rem;
}

.comparisonTable td[data-feature="true"]::before {
  content: '✓';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9em;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.comparisonTable td[data-feature="true"]:hover::before {
  transform: translateY(-50%) scale(1.1);
  background: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.comparisonTable td[data-feature="false"] {
  color: #ef4444;
  position: relative;
  padding-left: 2.5rem;
  opacity: 0.8;
}

.comparisonTable td[data-feature="false"]::before {
  content: '✕';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9em;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

.comparisonTable td[data-feature="false"]:hover::before {
  transform: translateY(-50%) scale(1);
  background: rgba(239, 68, 68, 0.15);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.blog-grid img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  aspect-ratio: 16/9;
  margin-bottom: 1rem;
  ;
}

/* Responsive table */
@media (max-width: 1024px) {
  /* .comparisonTable {
    margin: 2.5rem 0;
    font-size: 0.95rem;
  }

  .comparisonTable th,
  .comparisonTable td {
    padding: 1.25rem 1.5rem;
  } */
}

@media (max-width: 768px) {
  /* .comparisonTable {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .comparisonTable thead {
    display: none;
  }

  .comparisonTable tbody {
    display: block;
    width: 100%;
  }

  .comparisonTable tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    background: none !important;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
  }

  .comparisonTable td {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    font-size: 0.9rem;
    position: relative;
    border: none !important;
  }

  .comparisonTable td:first-child {
    grid-column: 1 / -1;
    background: linear-gradient(90deg,
        rgba(46, 194, 167, 0.1) 0%,
        rgba(46, 194, 167, 0.15) 50%,
        rgba(46, 194, 167, 0.1) 100%) !important;
    font-weight: 700;
    color: var(--brand) !important;
    padding: 1.25rem 1rem;
    text-align: center;
    justify-content: center;
    border: none;
    margin-bottom: 0;
    border-radius: 0.5rem 0.5rem 0 0;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .comparisonTable td:first-child::before {
    display: none;
  }

  .comparisonTable td:first-child::after {
    display: none;
  }

  .comparisonTable td:not(:first-child)::before {
    display: none;
  }

  .comparisonTable td[data-feature="true"],
  .comparisonTable td[data-feature="false"] {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
  }

  .comparisonTable td[data-feature="true"]::before,
  .comparisonTable td[data-feature="false"]::before {
    position: relative;
    left: auto;
    top: auto;
    transform: none !important;
    margin: 0 0 0.25rem 0;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8em;
  } */
  .cta-band .grid{
    grid-template-columns:1fr;
    
  }
}

/* For very small screens */
@media (max-width: 480px) {
  /* .comparisonTable {
    border-radius: 0.75rem;
    margin: 2rem 0;
  }

  .comparisonTable tr {
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .comparisonTable td:first-child {
    grid-column: 1 / -1;
    font-size: 0.9rem;
    padding: 1rem;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .comparisonTable td {
    padding: 0.9rem 0.3rem;
    font-size: 0.85rem;
  }

  .comparisonTable th {
    padding: 1rem 0.5rem;
    font-size: 0.75rem;
  }

  .comparisonTable td[data-feature="true"],
  .comparisonTable td[data-feature="false"] {
    padding: 0.75rem 0.25rem;
  }

  .comparisonTable td[data-feature="true"]::before,
  .comparisonTable td[data-feature="false"]::before {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.75em;
  } */
}

.trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cta-band {
  background: linear-gradient(180deg, rgba(46, 194, 167, .08), rgba(46, 194, 167, 0));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  color: #000;
  padding: 8px;
  border-radius: 6px;
}