/* ==================== VARIABLES ==================== */
:root {
    --background: #0a0f1a;
    --foreground: #e8f0f5;
    --card: #111827;
    --card-foreground: #e8f0f5;
    --primary: #0ea5e9;
    --primary-foreground: #ffffff;
    --secondary: #1e3a5f;
    --secondary-foreground: #e8f0f5;
    --muted: #1a2744;
    --muted-foreground: #8ba3b8;
    --accent: #38bdf8;
    --accent-foreground: #0a0f1a;
    --border: #1e3a5f;
    --radius: 0.625rem;
  
    --font-sans: "Inter", system-ui, sans-serif;
    --font-heading: "Space Grotesk", system-ui, sans-serif;
  }
  
  /* ==================== RESET & BASE ==================== */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }
  
  input {
    font-family: inherit;
    border: none;
    outline: none;
  }
  
  ul {
    list-style: none;
  }
  
  /* ==================== UTILITIES ==================== */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    /* Increased base padding for better spacing on mobile */
    padding: 0 1.5rem;
  }
  
  @media (min-width: 640px) {
    .container {
      padding: 0 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  .text-gradient {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 50%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .glass-card {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 1rem;
  }
  
  .bg-grid {
    background-image: linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  
  /* ==================== ANIMATIONS ==================== */
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes pulse-glow {
    0%,
    100% {
      box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
    }
    50% {
      box-shadow: 0 0 40px rgba(14, 165, 233, 0.6);
    }
  }
  
  @keyframes slide-up {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes scale-in {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  @keyframes gradient-shift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  
  .animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  .animate-slide-up {
    animation: slide-up 0.8s ease-out forwards;
  }
  
  .animate-scale-in {
    animation: scale-in 0.6s ease-out forwards;
  }
  
  .animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
  }
  
  /* Scroll animations */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ==================== BUTTONS ==================== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
  }
  
  .btn-primary:hover {
    background-color: rgba(14, 165, 233, 0.9);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
  }
  
  .btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(14, 165, 233, 0.05);
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  @media (max-width: 639px) {
    .btn-lg {
      padding: 1rem 1.5rem;
      font-size: 0.9375rem;
      min-height: 3.5rem;
    }
  }
  
  .btn-full {
    width: 100%;
  }
  
  @media (max-width: 639px) {
    .btn-full {
      min-height: 3.5rem;
    }
  }
  
  .btn-glow {
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  .btn svg {
    transition: transform 0.3s ease;
  }
  
  .btn:hover svg {
    transform: translateX(4px);
  }
  
  /* ==================== HEADER ==================== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
  }
  
  .header.scrolled {
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(14, 165, 233, 0.05);
    border-bottom: 1px solid rgba(30, 58, 95, 0.5);
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
  
  .logo img {
    width: 12rem;
    object-fit: contain;
  }
  
  .nav {
    display: none;
    align-items: center;
    gap: 2rem;
  }
  
  @media (min-width: 1024px) {
    .nav {
      display: flex;
    }
  }
  
  .nav-link {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--primary);
  }
  
  .header-btn {
    display: none;
  }
  
  @media (min-width: 1024px) {
    .header-btn {
      display: inline-flex;
    }
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
  }
  
  @media (min-width: 1024px) {
    .mobile-menu-btn {
      display: none;
    }
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    animation: slide-up 0.3s ease;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  @media (min-width: 1024px) {
    .mobile-menu {
      display: none !important;
    }
  }
  
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .mobile-nav-link {
    color: var(--foreground);
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
  }
  
  .mobile-nav-link:hover {
    color: var(--primary);
  }
  
  .mobile-cta {
    margin-top: 1rem;
    width: 100%;
  }
  
  /* ==================== HERO SECTION ==================== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
  }
  
  .hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  }
  
  .floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
  }
  
  .orb-1 {
    top: 25%;
    left: -8rem;
    width: 24rem;
    height: 24rem;
    background: rgba(14, 165, 233, 0.2);
  }
  
  .orb-2 {
    bottom: 25%;
    right: -8rem;
    width: 24rem;
    height: 24rem;
    background: rgba(56, 189, 248, 0.2);
    animation-delay: 3s;
  }
  
  .particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  
  .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(14, 165, 233, 0.4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
  }
  
  .hero-container {
    position: relative;
    display: grid;
    gap: 3rem;
    padding: 5rem 0;
  }

  @media (max-width: 768px) {
    .hero-container {
      padding: 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-container {
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 9999px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
  }
  
  .hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
  }
  
  @media (min-width: 640px) {
    .hero-title {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3.75rem;
    }
  }
  
  @media (min-width: 1280px) {
    .hero-title {
      font-size: 4.5rem;
    }
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    line-height: 1.7;
  }
  
  @media (min-width: 640px) {
    .hero-description {
      font-size: 1.25rem;
    }
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 58, 95, 0.5);
  }
  
  .stat {
    text-align: center;
  }
  
  @media (min-width: 640px) {
    .stat {
      text-align: left;
    }
  }
  
  .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  @media (min-width: 640px) {
    .stat-value {
      font-size: 1.875rem;
    }
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .hero-visual {
    position: relative;
  }
  
  .hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(56, 189, 248, 0.3));
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  .hero-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
  }
  
  .hero-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary), var(--card));
  }
  
  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
  }
  
  .hero-image-overlay span {
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .floating-card {
    position: absolute;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .floating-card-1 {
    top: -1rem;
    right: -1rem;
  }
  
  .floating-card-2 {
    bottom: -1rem;
    left: -1rem;
  }
  
  .floating-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  .floating-card-icon.accent {
    background: rgba(56, 189, 248, 0.2);
    color: var(--accent);
  }
  
  .floating-card-title {
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  .floating-card-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
  }
  
  .hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--background), transparent);
  }
  
  /* ==================== SECTION STYLES ==================== */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-label {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
  }
  
  @media (min-width: 640px) {
    .section-title {
      font-size: 2.25rem;
    }
  }
  
  @media (min-width: 1024px) {
    .section-title {
      font-size: 3rem;
    }
  }
  
  .section-description {
    color: var(--muted-foreground);
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
  }
  
  /* ==================== GET STARTED SECTION ==================== */
  .get-started {
    padding: 6rem 0;
    background: rgba(17, 24, 39, 0.3);
  }
  
  .options-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .options-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .option-card {
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.5s ease;
    cursor: pointer;
  }
  
  .option-card:hover {
    transform: scale(1.05);
    border-color: rgba(14, 165, 233, 0.5);
  }
  
  .option-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
  }
  
  .option-card:hover .option-icon {
    background: rgba(14, 165, 233, 0.2);
  }
  
  .option-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  
  .option-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
  }
  
  .option-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    transition: gap 0.3s ease;
  }
  
  .option-card:hover .option-link {
    gap: 0.75rem;
  }
  
  /* ==================== FEATURES SECTION ==================== */
  .features {
    padding: 6rem 0;
    position: relative;
  }
  
  .features-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    opacity: 0.5;
  }
  
  .features .container {
    position: relative;
  }
  
  .features-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .feature-card {
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.5s ease;
  }
  
  .feature-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
  }
  
  .feature-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.5s ease;
  }
  
  .feature-card:hover .feature-icon {
    background: rgba(14, 165, 233, 0.2);
    transform: scale(1.1);
  }
  
  .feature-icon-glow {
    position: absolute;
    inset: -0.5rem;
    background: rgba(14, 165, 233, 0.2);
    border-radius: 1rem;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .feature-card:hover .feature-icon-glow {
    opacity: 1;
  }
  
  .feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  
  .feature-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.7;
  }
  
  /* ==================== SECURITY SECTION ==================== */
  .security {
    padding: 6rem 0;
    overflow: hidden;
  }
  
  .security-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
  }
  
  @media (min-width: 1024px) {
    .security-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .security-image {
    position: relative;
  }
  
  .security-orb-1 {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 8rem;
    height: 8rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    filter: blur(40px);
  }
  
  .security-orb-2 {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 12rem;
    height: 12rem;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50%;
    filter: blur(40px);
  }
  
  .security-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
  }
  
  .security-image-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  
  .security-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.8), transparent);
  }
  
  .security-image-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .security-overlay-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  .security-overlay-title {
    font-weight: 600;
  }
  
  .security-overlay-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .security-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .security-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
  }
  
  .security-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .security-buttons {
      flex-direction: row;
    }
  }
  
  /* ==================== QUOTE SECTION ==================== */
  .quote {
    padding: 4rem 0;
    position: relative;
    background: rgba(17, 24, 39, 0.5);
  }
  
  @media (min-width: 640px) {
    .quote {
      padding: 6rem 0;
    }
  }
  
  .quote-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
  }
  
  .quote .container {
    position: relative;
  }
  
  .quote-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  
  @media (min-width: 640px) {
    .quote-card {
      padding: 2rem;
    }
  }
  
  @media (min-width: 1024px) {
    .quote-card {
      padding: 4rem;
    }
  }
  
  .quote-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  @media (min-width: 640px) {
    .quote-grid {
      gap: 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .quote-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .quote-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  @media (min-width: 640px) {
    .quote-title {
      font-size: 1.875rem;
    }
  }
  
  @media (min-width: 768px) {
    .quote-title {
      font-size: 2.25rem;
    }
  }
  
  @media (min-width: 1024px) {
    .quote-title {
      font-size: 3rem;
    }
  }
  
  .quote-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  @media (min-width: 640px) {
    .quote-description {
      font-size: 1.125rem;
    }
  }
  
  .quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .quote-form {
      gap: 1.25rem;
    }
  }
  
  .form-input {
    width: 100%;
    height: 3.5rem;
    padding: 0 1.25rem;
    background: rgba(10, 15, 26, 0.5);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  
  @media (max-width: 639px) {
    .form-input {
      height: 3.75rem;
      padding: 0 1.5rem;
      margin-top: 1rem;

      font-size: 1rem;
    }

    .form-submit-btn{
      margin-top: 1rem;
    }
  }
  
  .form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  }
  
  .form-input::placeholder {
    color: var(--muted-foreground);
    opacity: 0.7;
  }
  
  .form-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    text-align: center;
  }
  
  @media (min-width: 640px) {
    .form-disclaimer {
      text-align: left;
    }
  }
  
  /* ==================== BENEFITS SECTION ==================== */
  .benefits {
    padding: 6rem 0;
  }
  
  .benefits-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 640px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .benefit-card {
    padding: 1.5rem;
    border-radius: 1rem;
    height: 100%;
    transition: all 0.5s ease;
  }
  
  .benefit-card:hover {
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-8px);
  }
  
  .benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
  }
  
  .benefit-card:hover .benefit-icon {
    background: rgba(14, 165, 233, 0.2);
  }
  
  .benefit-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  
  .benefit-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
  }
  
  .commitment {
    margin-top: 5rem;
    text-align: center;
  }
  
  .commitment-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 640px) {
    .commitment-title {
      font-size: 2.25rem;
    }
  }
  
  .commitment-description {
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
  }
  
  /* ==================== WHAT WE DO SECTION ==================== */
  .what-we-do {
    padding: 6rem 0;
    background: rgba(17, 24, 39, 0.3);
  }
  
  .services-grid {
    display: grid;
    gap: 1.5rem;
  }
  
  @media (min-width: 640px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .service-card {
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.5s ease;
    cursor: pointer;
    height: 100%;
  }
  
  .service-card:hover {
    transform: scale(1.05);
    border-color: rgba(14, 165, 233, 0.5);
  }
  
  .service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary);
  }
  
  .service-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .service-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
  }
  
  .service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
  }
  
  /* ==================== WHY US SECTION ==================== */
  .why-us {
    padding: 6rem 0;
    overflow: hidden;
  }
  
  .why-us-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
  }
  
  @media (min-width: 1024px) {
    .why-us-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .why-us-image {
    position: relative;
    order: 2;
  }
  
  @media (min-width: 1024px) {
    .why-us-image {
      order: 1;
    }
  }
  
  .why-us-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(56, 189, 248, 0.2));
    border-radius: 50%;
    filter: blur(60px);
  }
  
  .why-us-image-wrapper {
    position: relative;
    padding: 1.5rem;
    border-radius: 1.5rem;
    max-width: 32rem;
    margin: 0 auto;
  }
  
  .why-us-image-wrapper img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
  }
  
  .why-us-floating-card {
    position: absolute;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .why-us-card-1 {
    bottom: -1rem;
    left: -1rem;
  }
  
  .why-us-card-2 {
    top: -1rem;
    right: -1rem;
  }
  
  .why-us-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  .why-us-card-icon.accent {
    background: rgba(56, 189, 248, 0.2);
    color: var(--accent);
  }
  
  .why-us-card-title {
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  .why-us-card-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
  }
  
  .why-us-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    order: 1;
  }
  
  @media (min-width: 1024px) {
    .why-us-content {
      order: 2;
    }
  }
  
  .why-us-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
  }
  
  .why-us-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .why-us-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .why-us-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  .why-us-feature span {
    font-weight: 500;
  }
  
  /* ==================== TESTIMONIALS SECTION ==================== */
  .testimonials {
    padding: 6rem 0;
    position: relative;
    background: rgba(17, 24, 39, 0.5);
    overflow: hidden;
  }
  
  .testimonials-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    opacity: 0.3;
  }
  
  .testimonials .container {
    position: relative;
  }
  
  .awards-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
  }
  
  .awards-track {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  
  .award-card {
    padding: 1.5rem;
    border-radius: 1rem;
    min-width: 300px;
    flex-shrink: 0;
  }
  
  .award-card .award-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
  }
  
  .award-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .award-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
  }
  
  .award-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .award-source {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
  }
  
  .marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    pointer-events: none;
    z-index: 10;
  }
  
  .marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
  }
  
  .marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
  }
  
  /* ==================== FOOTER ==================== */
  .footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
  }
  
  .footer-grid {
    display: grid;
    gap: 3rem;
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: 1.5fr 1fr 1.5fr;
    }
  }
  
  .footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo img {
    width: 9rem;
    height: 2.5rem;
    object-fit: contain;
  }
  
  .footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
  }
  
  .footer-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary);
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
  }
  
  .social-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
  }
  
  .social-links {
    display: flex;
    gap: 0.75rem;
  }
  
  .social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary);
  }
  
  .footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-legal a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
  }
  
  .footer-legal a:hover {
    color: var(--primary);
  }
  