/*--------------------------------------------------------------
    Zax Telecom - Ultra Premium Design System
    Version: 4.0
    Description: Enterprise-grade telecommunications design
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Design Tokens & CSS Variables
--------------------------------------------------------------*/
:root {
  /* Brand Colors - Refined Orange Palette */
  --color-primary: #f46201;
  --color-primary-50: #fff7ed;
  --color-primary-100: #ffedd5;
  --color-primary-200: #fed7aa;
  --color-primary-300: #fdba74;
  --color-primary-400: #fb923c;
  --color-primary-500: #f46201;
  --color-primary-600: #ea580c;
  --color-primary-700: #c2410c;
  --color-primary-800: #9a3412;
  --color-primary-900: #7c2d12;

  /* Neutral Colors - Sophisticated Gray Scale */
  --color-white: #ffffff;
  --color-gray-25: #fcfcfd;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-gray-950: #030712;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-success-light: #d1fae5;
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-error: #ef4444;
  --color-error-light: #fee2e2;
  --color-info: #3b82f6;
  --color-info-light: #dbeafe;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', var(--font-sans);

  /* Font Sizes - Fluid Typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
  --text-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
  --text-xl: clamp(1.1875rem, 1.1rem + 0.4vw, 1.25rem);
  --text-2xl: clamp(1.4rem, 1.2rem + 0.8vw, 1.5rem);
  --text-3xl: clamp(1.75rem, 1.5rem + 1vw, 2rem);
  --text-4xl: clamp(2rem, 1.6rem + 1.5vw, 2.5rem);
  --text-5xl: clamp(2.5rem, 2rem + 2vw, 3.25rem);
  --text-6xl: clamp(3rem, 2.25rem + 3vw, 4rem);
  --text-7xl: clamp(3.5rem, 2.5rem + 4vw, 5rem);

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Spacing Scale */
  --space-0: 0;
  --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;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --radius-4xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow: 0 0 60px -15px var(--color-primary);
  --shadow-glow-lg: 0 0 80px -10px var(--color-primary);
  --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07), 0 0 0 1px rgb(0 0 0 / 0.03);
  --shadow-card-hover: 0 20px 40px -10px rgb(0 0 0 / 0.15), 0 0 0 1px var(--color-primary-100);

  /* Transitions */
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --duration-150: 150ms;
  --duration-200: 200ms;
  --duration-300: 300ms;
  --duration-500: 500ms;

  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Base Reset & Typography
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: 1.7;
  color: var(--color-gray-600);
  background-color: var(--color-white);
  overflow-x: hidden;
  min-height: 100vh;
}

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

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  line-height: 1.25;
  color: var(--color-gray-900);
  letter-spacing: -0.025em;
}

h1 { font-size: var(--text-5xl); font-weight: var(--font-bold); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-500);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-150) var(--ease-out);
}

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

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

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

.container-fluid {
  width: 100%;
  padding: 0 var(--space-6);
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary) !important; }
.text-white { color: var(--color-white) !important; }
.text-green-500 { color: var(--color-success) !important; }
.mb-25 { margin-bottom: var(--space-6); }
.mr-15 { margin-right: var(--space-4); }
.mr-20 { margin-right: var(--space-5); }
.mt-4 { margin-top: var(--space-4); }
.rounded-4 { border-radius: var(--radius-2xl); }

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section, .section {
  padding: var(--space-24) 0;
  position: relative;
}

.section-grey, .sections-bg {
  background-color: var(--color-gray-50);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section-header h2 {
  color: var(--color-gray-900);
  margin-bottom: var(--space-6);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-400), var(--color-primary), var(--color-primary-400));
  border-radius: var(--radius-full);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-gray-500);
  margin-top: var(--space-8);
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: var(--z-modal-backdrop);
  transition: all var(--duration-300) var(--ease-out);
  background: transparent;
}

.header.sticked,
.header.stikcy-menu {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-600) 100%);
  box-shadow: var(--shadow-lg), 0 4px 30px rgba(244, 98, 1, 0.2);
}

.header .container-fluid {
  height: 100%;
}

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

.header .logo img {
  height: 50px;
  width: auto;
  transition: transform var(--duration-300) var(--ease-out);
}

.header .logo:hover img {
  transform: scale(1.03);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    display: flex;
    align-items: center;
  }

  .navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--space-1);
    margin: 0;
    padding: 0;
  }

  .navbar > ul > li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    transition: all var(--duration-200) var(--ease-out);
    white-space: nowrap;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar li:hover > a {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.18);
  }

  .navbar a i {
    font-size: 10px;
    transition: transform var(--duration-200) var(--ease-out);
  }

  .navbar li:hover > a i {
    transform: rotate(180deg);
  }

  /* Dropdown */
  .navbar .dropdown ul {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 260px;
    padding: var(--space-3);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(0,0,0,0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--duration-200) var(--ease-out);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown ul::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 28px;
    width: 16px;
    height: 16px;
    background: var(--color-white);
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -2px -2px 5px rgba(0,0,0,0.02);
  }

  .navbar .dropdown ul li {
    padding: 0;
  }

  .navbar .dropdown ul a {
    color: var(--color-gray-700);
    padding: 12px 16px;
    font-weight: var(--font-normal);
    border-radius: var(--radius-lg);
  }

  .navbar .dropdown ul a:hover {
    color: var(--color-primary);
    background: var(--color-primary-50);
  }

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation - FIXED
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--color-gray-900) 0%, var(--color-gray-950) 100%);
    transition: right var(--duration-300) var(--ease-out);
    z-index: var(--z-modal);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .navbar ul {
    list-style: none;
    padding: 100px var(--space-6) var(--space-8);
    margin: 0;
  }

  .navbar > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-3);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--duration-150) var(--ease-out);
    border-radius: var(--radius-md);
  }

  .navbar a:hover {
    color: var(--color-primary);
    background: rgba(244, 98, 1, 0.1);
    padding-left: var(--space-5);
  }

  .navbar a i {
    font-size: 12px;
    transition: transform var(--duration-200) var(--ease-out);
  }

  .navbar .dropdown ul {
    padding: var(--space-2) 0 var(--space-2) var(--space-4);
    margin: 0;
    background: transparent;
    border-left: 2px solid var(--color-primary);
    display: none;
  }

  .navbar .dropdown ul li {
    border-bottom: none;
  }

  .navbar .dropdown ul a {
    padding: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
  }

  .navbar .dropdown > .dropdown-active {
    display: block;
  }

  /* Mobile Nav Toggle - VISIBLE */
  .mobile-nav-show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-white);
    font-size: 26px;
    cursor: pointer;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--duration-150) var(--ease-out);
    border: none;
    outline: none;
  }

  .mobile-nav-show:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  /* Close Button - VISIBLE */
  .mobile-nav-hide {
    display: flex !important;
    position: fixed;
    top: var(--space-5);
    right: var(--space-5);
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    z-index: calc(var(--z-modal) + 10);
    transition: all var(--duration-200) var(--ease-out);
    box-shadow: var(--shadow-lg);
    border: none;
    outline: none;
  }

  .mobile-nav-hide:hover {
    background: var(--color-primary-700);
    transform: rotate(90deg);
  }

  /* Hide close button when menu is not active */
  body:not(.mobile-nav-active) .mobile-nav-hide {
    display: none !important;
  }

  /* Backdrop */
  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: var(--z-modal-backdrop);
    animation: fadeIn var(--duration-200) var(--ease-out);
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

/*--------------------------------------------------------------
# Buttons - Premium Style
--------------------------------------------------------------*/
.default-theme-btn,
.default-theme-btn-one,
.default-theme-btn-two {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  line-height: 1;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--duration-200) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.default-theme-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-600) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(244, 98, 1, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.default-theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 98, 1, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  color: var(--color-white);
}

.default-theme-btn-one {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.default-theme-btn-one:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), 0 8px 30px rgba(244, 98, 1, 0.35);
}

.default-theme-btn-two {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.default-theme-btn-two:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-3px);
}

.default-theme-btn span,
.default-theme-btn-one span,
.default-theme-btn-two span {
  display: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.12) 0%, transparent 70%);
  animation: heroFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  animation: heroFloat 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(2deg); }
  66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

#particles-js {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .caption h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
  font-weight: var(--font-bold);
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}

.hero .caption h2 {
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 560px;
}

.hero .social {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: var(--text-xl);
  transition: all var(--duration-200) var(--ease-out);
}

.hero .social a:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hero .foto-efeito {
  position: relative;
}

.hero .foto-efeito::before {
  display: none;
}

.hero .foto-efeito img {
  filter: none;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl), 0 30px 60px rgba(0,0,0,0.3);
}

.sticked-header-offset {
  scroll-margin-top: 80px;
}

/*--------------------------------------------------------------
# Download App Promo (Central do Assinante)
--------------------------------------------------------------*/
.download-app-promo {
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-950) 100%);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
  position: relative;
  overflow: hidden;
}

.download-app-promo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--color-primary));
  opacity: 0.15;
}

.download-app-promo-text {
  position: relative;
  z-index: 1;
}

.download-app-promo-text__tagline {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--color-primary-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-2);
}

.download-app-promo-text__download {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
}

.download-app-promo__section {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Services / Icon Boxes
--------------------------------------------------------------*/
.top-icon-box {
  margin-top: calc(-1 * var(--space-20));
  position: relative;
  z-index: 10;
}

.icon-box {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-3xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--duration-300) var(--ease-out);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-card);
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-400));
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
  opacity: 0;
  transition: opacity var(--duration-300) var(--ease-out);
}

.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
  border-color: var(--color-primary-100);
}

.icon-box:hover::before {
  opacity: 1;
}

.icon-box .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-50), var(--color-primary-100));
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-6);
  transition: all var(--duration-300) var(--ease-out);
}

.icon-box:hover .icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-600));
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(244, 98, 1, 0.35);
}

.icon-box .icon i,
.icon-box .icon i::before,
[class^="flaticon-"]::before,
[class*=" flaticon-"]::before {
  font-size: 36px;
  color: var(--color-primary);
  transition: color var(--duration-300) var(--ease-out);
}

.icon-box:hover .icon i,
.icon-box:hover .icon i::before,
.icon-box:hover [class^="flaticon-"]::before,
.icon-box:hover [class*=" flaticon-"]::before {
  color: var(--color-white);
}

.icon-box .title,
.icon-box h4.title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.icon-box p {
  font-size: var(--text-base);
  color: var(--color-gray-500);
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.icon-box > span:empty {
  display: none;
}

a:has(.icon-box) {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/*--------------------------------------------------------------
# PRICING SECTION - ULTRA PREMIUM
--------------------------------------------------------------*/
.pricing {
  background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-gray-100) 50%, var(--color-gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, var(--color-white), transparent);
  pointer-events: none;
}

/* Pricing Card - Premium Redesign */
.pricing .card {
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-3xl);
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--duration-300) var(--ease-out);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pricing .card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl), var(--shadow-glow-lg);
}

/* Card Header with Gradient */
.pricing .card .price:first-child {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-600) 100%);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing .card .price:first-child::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Plan Name - BIG & BOLD */
.pricing .card .price:first-child h4 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

/* Speed Badge - MEGA Highlight */
.pricing .card .price:first-child .price-tag {
  display: inline-flex;
  align-items: baseline;
  background: var(--color-white);
  color: var(--color-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
}

.pricing .card .price:first-child .price-tag sup {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-left: 4px;
  opacity: 0.8;
}

/* Options List */
.pricing .option {
  padding: var(--space-6);
  flex-grow: 1;
}

.pricing .option ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .option ul li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-100);
  transition: all var(--duration-150) var(--ease-out);
}

.pricing .option ul li:last-child {
  border-bottom: none;
}

.pricing .option ul li:hover {
  padding-left: var(--space-2);
  background: var(--color-gray-50);
  margin: 0 calc(-1 * var(--space-3));
  padding-right: var(--space-3);
  padding-left: var(--space-5);
  border-radius: var(--radius-md);
}

.pricing .option ul li i {
  font-size: var(--text-lg);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.pricing .option ul li i.bi-check2-circle {
  color: var(--color-primary);
}

.pricing .option ul li i.bi-check2 {
  color: var(--color-success);
}

.pricing .option ul li i.bi-x-circle {
  color: var(--color-gray-300);
}

.pricing .option ul li.disabled {
  color: var(--color-gray-400);
  opacity: 0.7;
}

.pricing .option ul li hr {
  display: none;
}

.pricing .option ul li strong {
  color: var(--color-primary);
  font-weight: var(--font-bold);
}

/* Benefits Section Divider */
.pricing .option ul li:has(strong:only-child) {
  background: linear-gradient(90deg, var(--color-primary-50), transparent);
  margin: var(--space-4) calc(-1 * var(--space-6));
  padding: var(--space-3) var(--space-6);
  border-bottom: none;
  border-radius: 0;
}

.pricing .option ul li:has(strong:only-child) strong {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-700);
}

/* Price Footer - MEGA VALUE DISPLAY */
.pricing .card .price:last-child {
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-950) 100%);
  padding: var(--space-6);
  text-align: center;
  position: relative;
}

.pricing .card .price:last-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-400), var(--color-primary), var(--color-primary-400));
}

.pricing .card .price:last-child h4 {
  margin: 0 0 var(--space-4);
  font-size: var(--text-base);
  color: var(--color-gray-400);
  font-weight: var(--font-normal);
}

.pricing .card .price:last-child .price-tag {
  display: block;
  background: transparent;
  color: var(--color-white);
  padding: 0;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(244, 98, 1, 0.4);
  box-shadow: none;
  border-radius: 0;
}

.pricing .card .price:last-child .price-tag sup {
  font-size: var(--text-2xl);
  vertical-align: super;
}

/* CTA Button in Card */
.pricing .card > a.default-theme-btn-two {
  margin: 0 var(--space-6) var(--space-6);
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.pricing .card > a.default-theme-btn-two:hover {
  background: var(--color-primary-700);
  border-color: var(--color-primary-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 98, 1, 0.4);
}

/* Equal Card Heights */
.pricing .row > div {
  display: flex;
}

.pricing .card {
  width: 100%;
}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.featured {
  background: var(--color-white);
  position: relative;
}

.big-text {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: 1.3;
}

.small-text {
  color: var(--color-gray-900);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
}

.list-wrap {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-gray-50);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-4);
  transition: all var(--duration-200) var(--ease-out);
  border: 1px solid transparent;
}

.list-wrap:hover {
  transform: translateY(-4px);
  background: var(--color-white);
  border-color: var(--color-primary-100);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(244, 98, 1, 0.08);
}

.list-wrap .icon {
  flex-shrink: 0;
  width: 64px;
}

.list-wrap .icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.list-wrap h4 {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.list-wrap h4 span {
  color: var(--color-primary);
}

.list-wrap p {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  margin: 0;
  line-height: 1.7;
}

.list-wrap .description {
  flex-grow: 1;
}

.list-center-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.list-center-wrap img {
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
}

/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-950) 100%);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--color-primary) 100%);
  opacity: 0.12;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}

.call-to-action::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.call-to-action .container {
  position: relative;
  z-index: 1;
}

.call-to-action h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin: 0;
}

.call-to-action p {
  color: var(--color-gray-400);
  margin: var(--space-2) 0 0;
}

/*--------------------------------------------------------------
# Stats Counter
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

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

.stats-counter .container {
  position: relative;
  z-index: 1;
}

.stats-counter .stats-item {
  text-align: center;
  padding: var(--space-8);
}

.stats-counter .stats-item .icon {
  margin-bottom: var(--space-5);
}

.stats-counter .stats-item .icon img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.stats-counter .stats-item span,
.stats-counter .stats-item .purecounter {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  color: var(--color-white);
  display: block;
  line-height: 1;
}

.stats-counter .stats-item p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  margin: var(--space-3) 0 0;
  font-weight: var(--font-medium);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  position: relative;
  text-align: center;
}

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

.breadcrumbs .page-header h2,
.breadcrumbs .page-header h3 {
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.breadcrumbs .page-header h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.breadcrumbs .page-header h3 {
  font-size: var(--text-5xl);
  font-weight: var(--font-light);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
}

.breadcrumbs nav {
  background: var(--color-gray-50);
  padding: var(--space-5) 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.breadcrumbs nav ol li {
  color: var(--color-gray-500);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  font-weight: var(--font-semibold);
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li + li::before {
  content: '/';
  padding-right: var(--space-2);
  color: var(--color-gray-300);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  background: var(--color-white);
  padding: var(--space-24) 0;
  position: relative;
}

.contact-section::before {
  display: none;
}

.contact-section .form-control {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-gray-900);
  background: var(--color-gray-50);
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  transition: all var(--duration-200) var(--ease-out);
}

.contact-section .form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px var(--color-primary-100);
}

.contact-section .form-control::placeholder {
  color: var(--color-gray-400);
}

.contact-section textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.contact-information-box-3 {
  background: var(--color-gray-50);
  padding: var(--space-8);
  border-radius: var(--radius-3xl);
}

.contact-information-box-3 .single-contact-info-box {
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  border-radius: var(--radius-xl);
  transition: all var(--duration-200) var(--ease-out);
}

.contact-information-box-3 .single-contact-info-box:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.contact-information-box-3 .contact-info h6 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.contact-information-box-3 .contact-info p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  margin: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  padding: var(--space-24) 0 0;
  position: relative;
  overflow: hidden;
}

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

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-logo {
  margin-bottom: var(--space-8);
}

.footer-logo img {
  max-width: 160px;
  height: auto;
}

.footer-text p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: var(--space-3);
}

.footer-widget {
  margin-bottom: var(--space-10);
}

.footer-widget-heading h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  position: relative;
}

.footer-widget-heading h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
}

.footer-widget ul,
.footer-widget .list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: var(--space-3);
  display: block;
  float: none;
  width: auto;
}

.footer-widget ul li a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  transition: all var(--duration-150) var(--ease-out);
  padding: var(--space-1) 0;
}

.footer-widget ul li a:hover {
  color: var(--color-white);
  padding-left: var(--space-3);
}

.footer-social-icon {
  margin-top: var(--space-8);
}

.footer-social-icon span {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  display: block;
  margin-bottom: var(--space-4);
}

.footer-social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: var(--text-lg);
  margin-right: var(--space-3);
  transition: all var(--duration-200) var(--ease-out);
}

.footer-social-icon a:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.footer-social-icon a i {
  line-height: 1;
}

.copyright-text {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: var(--space-16);
  padding: var(--space-10) 0;
  text-align: center;
}

.copyright-text p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  margin: var(--space-1) 0;
}

/*--------------------------------------------------------------
# Scroll to Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  right: var(--space-6);
  bottom: -70px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-600));
  color: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transition: all var(--duration-300) var(--ease-out);
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
}

.scroll-top.active {
  bottom: var(--space-6);
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-gray-900);
  transform: translateY(-5px);
  color: var(--color-white);
  box-shadow: var(--shadow-2xl);
}

.scroll-top i {
  font-size: var(--text-2xl);
  line-height: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-600));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-500) var(--ease-out);
}

#preloader::before {
  content: '';
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-white);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-card);
  margin: var(--space-4);
  transition: all var(--duration-300) var(--ease-out);
  border: 1px solid var(--color-gray-100);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary-100);
}

.testimonials .testimonial-item .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin-right: var(--space-5);
  border: 4px solid var(--color-primary-100);
}

.testimonials .testimonial-item h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-gray-900);
  margin: 0 0 var(--space-1);
}

.testimonials .testimonial-item h4 {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  font-weight: var(--font-normal);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: var(--space-4) 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  font-size: var(--text-base);
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--color-primary-200);
  font-size: var(--text-3xl);
  line-height: 1;
}

/*--------------------------------------------------------------
# Clients / Partners
--------------------------------------------------------------*/
.clients {
  padding: var(--space-20) 0;
  background: var(--color-gray-50);
}

.clients .swiper-slide img {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all var(--duration-300) var(--ease-out);
  border-radius: var(--radius-xl);
}

.clients .swiper-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: var(--space-8);
}

.clients .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-gray-300);
  opacity: 1;
}

.clients .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 28px;
  border-radius: var(--radius-full);
}

/*--------------------------------------------------------------
# Text Utilities
--------------------------------------------------------------*/
.text-1-line,
.text-2-line,
.text-3-line,
.text-4-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.text-1-line { -webkit-line-clamp: 1; }
.text-2-line { -webkit-line-clamp: 2; }
.text-3-line { -webkit-line-clamp: 3; }
.text-4-line { -webkit-line-clamp: 4; }

/*--------------------------------------------------------------
# Form Messages
--------------------------------------------------------------*/
.form-message.success {
  background: var(--color-success-light);
  color: #065f46;
  border: 1px solid var(--color-success);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
  font-weight: var(--font-medium);
}

.form-message.error {
  background: var(--color-error-light);
  color: #991b1b;
  border: 1px solid var(--color-error);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
  font-weight: var(--font-medium);
}

.with-errors {
  color: var(--color-error);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
}

.hidden {
  display: none;
}

/*--------------------------------------------------------------
# Single Page
--------------------------------------------------------------*/
.single-page ul li {
  position: relative;
  color: var(--color-gray-700);
  margin-bottom: var(--space-2);
  border-radius: var(--radius-md);
}

.single-page .team h4,
.single-page .team span {
  color: var(--color-gray-900);
}

.single-page .recent-posts article {
  background-color: var(--color-gray-50);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  section, .section {
    padding: var(--space-16) 0;
  }

  .section-header {
    margin-bottom: var(--space-12);
  }

  .pricing .card .price:first-child {
    padding: var(--space-6);
  }

  .pricing .card .price:first-child h4 {
    font-size: var(--text-2xl);
  }

  .pricing .card .price:first-child .price-tag {
    font-size: var(--text-3xl);
  }

  .pricing .card .price:last-child .price-tag {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 768px) {
  section, .section {
    padding: var(--space-12) 0;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: var(--space-16);
    min-height: auto;
  }

  .hero .caption {
    text-align: center;
    margin-bottom: var(--space-10);
  }

  .hero .caption h2 {
    max-width: none;
  }

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

  .hero .d-flex.justify-content-start {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  .download-app-promo {
    flex-direction: column;
    text-align: center;
    padding: var(--space-10) var(--space-6);
  }

  .call-to-action {
    text-align: center;
  }

  .call-to-action .col-lg-3 {
    margin-top: var(--space-8);
  }

  .list-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .list-wrap .icon {
    margin-bottom: var(--space-3);
  }

  .footer-widget {
    margin-bottom: var(--space-10);
  }

  .pricing .card {
    margin-bottom: var(--space-6);
  }

  .pricing .card .price:first-child h4 {
    font-size: var(--text-xl);
  }

  .pricing .card .price:first-child .price-tag {
    font-size: var(--text-2xl);
    padding: var(--space-2) var(--space-4);
  }

  .pricing .card .price:last-child .price-tag {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .section-header h2::after {
    width: 60px;
  }

  .default-theme-btn,
  .default-theme-btn-one,
  .default-theme-btn-two {
    padding: 12px 24px;
    font-size: var(--text-sm);
  }

  .icon-box {
    padding: var(--space-6);
  }

  .pricing .card .price:first-child,
  .pricing .option,
  .pricing .card .price:last-child {
    padding: var(--space-5);
  }

  .footer-social-icon a {
    width: 44px;
    height: 44px;
  }

  .scroll-top {
    width: 48px;
    height: 48px;
  }
}

/*--------------------------------------------------------------
# Accessibility & Reduced Motion
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero::before,
  .hero::after {
    animation: none;
  }
}

@media (prefers-contrast: high) {
  .icon-box,
  .pricing .card,
  .testimonials .testimonial-item {
    border-width: 2px;
  }
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
  .header,
  .scroll-top,
  .footer-social-icon,
  #preloader,
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero {
    min-height: auto;
    padding: 20pt 0;
  }
}
