/* =======================================
   RESET + BASE VARIABLES
======================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #4a90e2;
  --secondary: #f5f7fa;
  --dark: #1a202c;
  --text: #4a5568;
  --light-text: #718096;
  --border: #e2e8f0;
  --yellow: #fff3cd;
  --success: #00b074;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth !important;
}

/* =======================================
   GLOBAL TYPOGRAPHY SYSTEM
======================================= */

/* Body font = Inter *//* ===== DESKTOP DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #333;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f5f7ff;
    color: #4f6df5;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.mobile-service-title {
    display: block;
    font-weight: 600;
    margin: 10px 0 5px;
    opacity: .7;
}
body {
  font-family: 'Inter', sans-serif !important;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
  overscroll-behavior: none;
}

/* All headings = DM Sans */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
}

p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* Buttons bolder */
button, .btn {
  font-weight: 600 !important;
}
button,
.btn,
.pricing-card .btn,
.header-login-btn,
.mobile-login-btn {
font-family: 'Inter', sans-serif !important;
font-style: normal !important;
}

/* Section titles */
.section-header h2 {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700;
  letter-spacing: -0.4px;
}

/* Hero title */
.hero-text h1 {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700;
  letter-spacing: -1px;
   line-height: 56px; !important;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in-down {
  animation: fadeInDown 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}



/* Smoother feel for mobile devices */
@media (max-width: 768px) {
    body {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    body::-webkit-scrollbar {
        display: none;
    }
}



.section-animate {
    opacity: 0;
    transform: translateY(60px);   /* MORE SLIDE */
    transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.25, 0.1, 0.25, 1.0);
    will-change: opacity, transform;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0px);
}


/* Button Link & Width Underline OFF*/


a.btn {
    text-decoration: none !important;
}


/* --------------------------------------------------
   HEADER — CLEAN, ALIGNED & FIXED
-------------------------------------------------- */

.header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999 !important;
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.sticky-shadow {
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;       /* PERFECT ALIGNMENT */
    padding: 0.7rem 0;
}

/* LOGO */
.logo img {
    height: 34px !important; 
    display: block;
    transition: 0.2s ease;
}

/* Desktop Navigation */
.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.25s;
}

.nav a:hover {
    color: var(--primary);
}

/* Desktop Button (Normal) */
.header-login-btn {
    padding: 12px 22px !important;
    border-radius: 8px !important;
    font-size: 0.92rem !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;       /* alignment fix */
}

/* Sticky header → smaller button */
.header.sticky-shadow .header-login-btn {
    /*padding: 6px 14px !important;   */
    /*font-size: 0.75rem !important;*/
    padding: 12px 22px !important;
    font-size: 0.92rem !important;
    transition: 0.2s ease;
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    font-size: 1.7rem;
    cursor: pointer;
    color: #333;
    margin-left: 10px;
}

/* MOBILE NAV PANEL */
.mobile-nav {
    max-height: 0;
    overflow: hidden;
    background: #070B1A;
    padding: 0 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.15);

    opacity: 0;
    transform: translateY(-10px);

    /*  smoother + slower animation */
    transition: max-height 0.55s ease, opacity 0.55s ease, transform 0.55s ease;
}




.mobile-nav.open {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: max-height 0.65s ease, opacity 0.65s ease, transform 0.65s ease;
}

.mobile-nav a {
    display: block;
    padding: 0.8rem 0;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== MOBILE SERVICES SECTION IMPROVED ===== */
.mobile-services {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-service-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 14px 0 8px;
    pointer-events: none; /* prevents click */
}

/* indent service links slightly */
.mobile-services a {
    padding-left: 10px;
}
.mobile-nav a:last-child {
    border-bottom: none;
}

/* MOBILE LOGIN BUTTON */
.mobile-login-btn {
    margin-top: 1rem;
    width: 100%;
    font-size: 0.85rem;
    padding: 14px 0 !important;
    border-radius: 8px !important;
    text-align: center;
}

/* When menu opens → hide desktop button */
.header.mobile-open .header-login-btn {
    display: none !important;
}

/* When menu opens → dark mode */
.header.mobile-open {
    background: #070B1A !important;
}

.header.mobile-open .logo img {
    filter: brightness(0) invert(1);
}

.header.mobile-open .mobile-menu-btn i {
    color: white !important;
}
/* =========================================
   HOSTING PREMIUM BENEFITS — FINAL CLEAN
========================================= */

.hosting-benefits{
    margin-top:22px;
}

.hosting-benefits .benefit-title{
    font-size:15px;
    font-weight:700;
    margin-bottom:14px;
    font-family:'DM Sans',sans-serif;
}

/* LIST */
.benefit-list{
    list-style:none;
    padding:0;
    margin:0;
}

.benefit-list li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#4a5568;
    line-height:1.6;
    margin-bottom:8px;
}

/* remove bottom extra space */
.benefit-list li:last-child{
    margin-bottom:0;
}

/* SVG BLUE CHECK */
.check-icon{
    width:18px;
    height:18px;
    min-width:18px;
    background-color:#4770ff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 13.5L4 10l-1.5 1.5L7.5 16 18 5.5 16.5 4 7.5 13.5z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 13.5L4 10l-1.5 1.5L7.5 16 18 5.5 16.5 4 7.5 13.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Mobile tuning */
@media (max-width:768px){
    .benefit-list li{
        font-size:14px;
        gap:8px;
        margin-bottom:7px;
    }
}
.out-of-stock {
    background: #bfc3c9 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.8;
    pointer-events: none;
}



/* ======================================
   LEGAL / TERMS PAGE
====================================== */

.legal-section {
    padding: 4rem 0;
    background: #ffffff;
}

.legal-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.legal-meta {
    background: #f9fafb;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.legal-meta p {
    margin-bottom: 6px;
    font-size: 15px;
}

/* ===== TYPOGRAPHY STRUCTURE ===== */

.legal-content h3 {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-content h4 {
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Base body size */
.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
}

.legal-content p {
    margin-bottom: 1.1rem;
}

.legal-content ul {
    margin: 0.9rem 0 1.6rem 1.2rem;
}

.legal-content ul li {
    margin-bottom: 8px;
}

/* ======================================
   UNIVERSAL RED HIGHLIGHT
====================================== */


.text-danger,
.text-danger-soft,
.text-danger-strong {
    font-size: inherit;
}

/* Normal red text */
.text-danger {
    color: #dc2626;
    font-weight: 600;
}

/* Soft highlight */
.text-danger-soft {
    color: #b91c1c;
    background: rgba(220, 38, 38, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Strong badge */
.text-danger-strong {
    color: #ffffff;
    background: #dc2626;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
}

/* ======================================
   MOBILE
====================================== */

@media (max-width: 768px) {

    .legal-section .container {
        padding: 0 14px;
    }

    .legal-card {
        padding: 1.8rem;
        border-radius: 14px;
    }

    .legal-content h3 {
        font-size: 1.25rem;
    }

    .legal-content h4 {
        font-size: 1.05rem;
    }

    
    .legal-content p,
    .legal-content li {
        font-size: 15px;
        line-height: 1.7;
    }

}

/* RESPONSIVE */
@media (max-width: 768px) {

    .nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    /* mobile header button slightly smaller */
    .header-login-btn {
        padding: 9px 14px !important;
        font-size: 0.8rem !important;
    }
    
.header.sticky-shadow .header-login-btn {
        padding: 9px 14px !important;
        font-size: 0.8rem !important;
    }

    /* logo vertical alignment on mobile */
    .logo img {
        height: 32px !important;
    }

    /* push everything slightly down for perfect alignment */
    .header-content {
        padding: 0.55rem 0 !important;
    }
}


/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: #4770ff;
  color: white;
  padding: 18px 22px 18px 22px;
  border-radius: 8px;
}

.btn-primary:hover {
  background: #4770ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-secondary-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary-outline:hover {
  background: var(--secondary);
}

.btn-dark {
  background: var(--dark);
  color: white;
  padding: 18px 22px 18px 22px;
  margin-top: 2rem;
}

.btn-dark:hover {
  background: #0d1419;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-image {
  display: flex;
  align-items: stretch;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F2F2F2;
  color: #191919;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}
.mobile-br {
    display: none;
}

@media (max-width: 768px) {
    .mobile-br {
        display: block;
    }
}
.benefits-list {
  list-style: none;
  margin: 1.5rem 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0;
  color: var(--text);
}

.benefits-list i {
  color: var(--success);
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  position: relative;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  max-height: 550px;
  border-radius: 1rem;
  padding-top: 10px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Deploy Section */
.deploy-section {
  padding: 4rem 0;
  background: #ffffff;
}

.deploy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.deploy-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.deploy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.deploy-card .icon {
  /*font-size: 2.5rem;*/
  color: var(--primary);
  margin-bottom: 1rem;
}

.deploy-card h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.deploy-card p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* Solutions Section */
.solutions-section {
  padding: 4rem 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Solutions Section */
.solutions-section {
  padding: 4rem 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* NEW PREMIUM CARD STYLE */
.solution-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 24px; /* BIG ROUNDED CORNER like reference */
  border: 1px solid rgba(0, 0, 0, 0.06); /* very soft border */
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* soft floating shadow */
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08); /* stronger hover shadow */
  border-color: rgba(0, 0, 0, 0.12);
}

.solution-card .icon {
  margin-bottom: 1rem;
}

.solution-card .icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.solution-card .icon i {
  font-size: 3rem;
  color: var(--primary);
}

.solution-card h3 {
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.solution-card p {
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.solution-card .icon {
  margin-bottom: 1rem;
}

.solution-card .icon img {
  width: 100%;
  max-width: 56px;
  height: auto;
}

.solution-card .icon i {
  font-size: 3rem;
  color: var(--primary);
}

.solution-card h3 {
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.solution-card p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
  margin-top: 0rem;
  padding: 2rem 0;
  background: #FFFFFF;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pricing-card .btn {
    width: 100% !important;
    display: block;
    text-align: center;
    padding: 14px 0 !important;
    border-radius: 8px;
    font-size: 15px;
    margin-top: 8px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
}
.pricing-card .renewal {
    margin-top: 40px;  
    margin-bottom: 10px;
    text-align:center;
}

.pricing-card .btn {
     /* pulls button a bit closer to renewal text */
}
.tab-btn {
  font-size: 0.9rem !important; 
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  transition: all 0.3s;
}

.tab-btn.active {
  background: #4770ff;
  color: white;
  border-color: #4770ff;
}

.tab-btn:hover {
  border-color: var(--primary);
}

.billing-cycles {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  margin-bottom: 84px;
}

.cycle-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.cycle-btn.active {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}

/*.pricing-card:hover {*/
/*  transform: translateY(-10px);*/
/*  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
/*}*/
.pricing-grid {
    align-items: start;
}

.pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #fff3cd;
  color: #856404;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.pricing-card > p {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
}

.price .cycle {
  color: var(--light-text);
  font-size: 0.95rem;
}

.features {
  list-style: none;
  margin: 1.5rem 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.features i {
  color: var(--primary);
}

.renewal {
  color: var(--light-text);
  font-size: 0.85rem;
  margin: 1.5rem 0;
}

.pricing-footer {
  text-align: center;
}

.pricing-footer a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.pricing-footer a:hover {
  color: var(--dark);
}

/* RDP Section */
.rdp-section {
  margin-top: 9rem;
  padding: 4rem 0;
}

.rdp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.rdp-text h2 {
  font-size: 40px;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.rdp-text > p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.rdp-features {
  list-style: none;
  margin: 0.35rem 0;
  line-height: 0.25;
}

.rdp-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  margin: 0.75rem 0;
}

.rdp-features i {
  color: var(--success);
}

.rdp-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* =======================================
   PERFORMANCE SECTION — 5 + 6 EXACT GRID
======================================= */

.performance-section {
    margin-top: 5rem;
    padding: 4rem 0;
    background: #FFFFFF;
}

.performance-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

/* ROWS */
.performance-grid .row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* ROW 1: 5 ITEMS */
.performance-grid .row-1 {
    width: 100%;
}

/* ROW 2: 6 ITEMS */
.performance-grid .row-2 {
    width: 100%;
}

/* ICON BOX */
.app-box {
    width: 110px;
    height: 110px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.app-box:hover,
.app-box.auto-animate {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.app-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

@media (max-width: 768px) {

    /* Merge the two rows into a single flow */
    .performance-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.4rem !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        justify-items: center !important;
    }

    /* Disable per-row grid so they don't act separately */
    .performance-row {
        display: contents !important; 
    }

    /* Same box sizing */
    .app-box {
        width: 140px !important;
        height: 140px !important;
        border-radius: 20px !important;
    }

    .app-box img {
        width: 62px !important;
        height: 62px !important;
    }
}



/* Support Section */
/* Full width yellow background */
.support-section {
  margin-top: 8rem;
  background: #FFFFEA;
  position: relative;
  padding: 0;
  overflow-y: visible;
}

/* Content container */
.support-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid */
.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 360px;
}

/* Image */
.support-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}

.support-image img {
  height: 480px;
  width: auto;
  object-fit: contain;

  margin-top: -160px;
  margin-bottom: -40px;

  max-width: 100%;
  margin-right: 0 !important;   /* FIX horizontal scroll */
  overflow: hidden;
  position: relative;
  z-index: 5;
}


/* Mobile */
@media (max-width: 768px) {
  
  /* hide <br> ONLY on mobile */
  .rdp-text h2 br {
    display: none;
  }
  /* Stack image first */
  .support-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    display: flex;
    flex-direction: column-reverse !important;
    gap: 35px; /* spacing between image and text */
  }

  /* Center image */
  .support-image {
    justify-content: center;
    order: -1; /* ensure image appears first */
  }

.support-image img {
        height: auto !important;
        max-width: 85% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: block;
        transform: translateY(0) !important; /* force bottom alignment */
    }

    .support-content {
        align-items: flex-end !important;
    }

  /* Text spacing improvements */
  .support-text h2 {
    margin-bottom: 18px !important; /* heading gap */
  }

  .support-text p {
    margin-bottom: 25px !important; /* paragraph gap */
    line-height: 1.6;
  }

  .support-text button,
  .support-text a {
    margin-top: 10px !important;
  }
}

/* Global Section */
.global-section {
  margin-top: 5rem;  
  padding: 4rem 0;
}

.world-map {
    width: 100%;
    display: flex;             
    justify-content: center;    
    align-items: center;        
    margin-top: 2rem;
}

.world-map img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}


/* NEW Footer */
.footer {
  margin-top: 6rem;
  background: #070B1A !important;
  color: #a0aec0;
  padding: 3rem 0 1rem;
}

/* Desktop 4-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Logo Column */
.footer-logo-col img {
  height: 38px;
  margin-bottom: 1rem;
}

.footer-logo-col p {
  margin: 0.35rem 0;
}

/* Titles */
.footer-col h4,
.footer-logo-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.65rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.social-links a {
  color: #a0aec0;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  padding-bottom: 0.96rem;
  text-align: center;
  color: #a0aec0;
  font-size: 0.95rem;
}

/* -----------------------------------------
   MOBILE LAYOUT (exact request)
   ----------------------------------------- */
@media (max-width: 768px) {

  /* 2×2 Grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.8rem !important;
    text-align: left !important;
  }

  /* ORDERING */
  .footer-order-logo   { order: 1; }  /* Top-left */
  .footer-order-support { order: 2; } /* Top-right */
  .footer-order-social { order: 3; }  /* Bottom-left */
  .footer-order-product { order: 4; } /* Bottom-right */

  /* Left align */
  .footer-col,
  .footer-logo-col {
    text-align: left !important;
  }

  /* Social aligned left */
  .social-links {
    justify-content: flex-start !important;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }

  .footer-col,
  .footer-logo-col {
    text-align: left !important;
  }

  .social-links {
    justify-content: flex-start !important;
  }
}




/* =======================================
   PRICING2 — CLEAN, FIXED, CONFLICT-FREE
======================================= */

/* Outer container */
.pricing2-page .pricing2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header section */
.pricing2-page .pricing2-header {
    text-align: center;
    margin: 3.5rem 0 2.8rem;
}

.pricing2-page .pricing2-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
}

.pricing2-page .pricing2-header p {
    font-size: 1rem;
    color: #4a5568;
}

/* Remove underline */
.pricing2-page a {
    text-decoration: none !important;
}

/* COUNTRY SELECTOR */
.pricing2-page .pricing2-country-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem !important;
}

.pricing2-page .pricing2-country-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    transition: 0.3s ease;
}

.pricing2-page .pricing2-country-btn.active {
    background: #070B1A;
    border-color: #070B1A;
    color: white;
}

/* TABLE */
.pricing2-page .pricing2-table-wrapper {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
}

.pricing2-page .pricing2-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.pricing2-page .pricing2-table thead {
    background: #001B77;
    color: white;
}

.pricing2-page .pricing2-table th,
.pricing2-page .pricing2-table td {
    padding: 1.2rem; /* ORIGINAL SIZE RESTORED */
    white-space: nowrap;
    font-size: 1rem; /* ORIGINAL SIZE */
}

.pricing2-page .pricing2-table td {
    border-bottom: 1px solid #e5e7eb;
}

/* Price */
.pricing2-page .pricing2-price-cell {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff8c00;
}

/* -------------------------------
   DESKTOP DEPLOY BUTTON (ONLY SLIGHTLY SMALLER)
-------------------------------- */
.pricing2-page .pricing2-deploy-btn {
    padding: 9px 18px;     /* slightly reduced */
    font-size: 0.95rem;    /* slightly smaller text */
    background: #4670ff;
    color: white !important;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
    display: inline-block;
}

.pricing2-page .pricing2-deploy-btn:hover {
    background: #3558db;
    transform: translateY(-2px);
}

/* ===============================
   MOBILE — CARD SYSTEM
=============================== */

.pricing2-page #pricing2Cards {
    display: none;
}

@media (max-width: 768px) {

    .pricing2-page .pricing2-table-wrapper {
        display: none;
    }

    .pricing2-page #pricing2Cards {
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
    }

    .pricing2-page .pricing2-card {
        background: white;
        border-radius: 1rem;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .pricing2-page .pricing2-card-header {
        background: #001B77;
        color: white;
        padding: 0.7rem;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        border-radius: 1rem 1rem 0 0;
    }

    .pricing2-page .pricing2-card-body {
        padding: 1.3rem 1.5rem;
    }

    .pricing2-page .pricing2-spec {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .pricing2-page .pricing2-card-footer {
        padding: 1.2rem;
        text-align: center;
        background: #f9fafb;
        border-radius: 0 0 1rem 1rem;
    }

    /* Price text mobile size */
    .pricing2-page .pricing2-price {
        font-size: 1.4rem;
        font-weight: 700;
        color: #ff8c00;
    }

    /* MOBILE BUTTON (ONLY SLIGHTLY SMALLER) */
    .pricing2-page .pricing2-card-btn {
        margin-top: 1rem;
        width: 100%;
        padding: 0.85rem;         /* slightly smaller */
        font-size: 0.95rem;       /* slightly smaller */
        background: #4670ff;
        color: white !important;
        border: none;
        border-radius: 8px;
        display: inline-block;
        text-decoration: none !important;
        font-weight: 600;
    }
}



/* =====================================================
   FLEXIBLE DISCOUNT + OLD PRICE SYSTEM (POLISHED)
===================================================== */

/* ===== HEADER ROW ALIGNMENT ===== */
.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* ===== DISCOUNT BADGE (NEON GREEN BACK) ===== */
.discount-badge {
    background: #b6ff00;          /* Previous neon green */
    color: #000;
    font-size: 12px;              /* Slightly reduced */
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 999px;
    display: none;
    white-space: nowrap;
    letter-spacing: .3px;
}

/* ===== PRICE AREA ===== */
.price-area {
    margin: 14px 0;
}

/* ===== OLD PRICE (MORE HIGHLIGHTED) ===== */
.old-price {
    font-size: 16px;              /* Increased size */
    font-weight: 600;             /* Stronger weight */
    color: #6b7280;               /* Slightly darker gray */
    text-decoration: line-through;
    margin-bottom: 6px;
    display: none;
}

/* ===== MAIN PRICE ===== */
.price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.price .cycle {
    font-size: 0.9rem;            /* Slightly reduced */
    color: var(--light-text);
    margin-bottom: 4px;
}

/* ===== EXTRA OFFER TEXT ===== */
.extra-offer {
    color: #6c5ce7;
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
    display: none;
}

/* =====================================================
   MOBILE OPTIMIZATION
===================================================== */

@media (max-width: 768px) {

    .price-area {
        margin: 12px 0;
    }

    .discount-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .old-price {
        font-size: 14px;
    }

    .price .amount {
        font-size: 2.1rem;
    }

    .price .cycle {
        font-size: 0.8rem;
    }

    .extra-offer {
        font-size: 13px;
    }
}

/* =========================================
   FAQ SECTION — ULTRA SMOOTH PREMIUM FINAL
========================================= */

.faq-section {
    padding: 5rem 0;
    /*background: #f9fafb;*/
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-mini {
    font-size: 13px;
    font-weight: 600;
    color: #6c7cff;
    letter-spacing: .5px;
}

.faq-header h2 {
    font-size: 2.2rem;
    margin-top: 8px;
}

.faq-header p {
    color: var(--light-text);
    margin-top: 8px;
}

/* =========================================
   GRID LAYOUT (FAQ LEFT — CARD RIGHT)
========================================= */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 380px; /* FAQ big left, card right */
    gap: 2rem;
    align-items: start;
}

/* ORDER CONTROL */
.faq-accordion { order: 1; }
.faq-contact-card { order: 2; }

/* =========================================
   RIGHT CONTACT CARD
========================================= */

.faq-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}

/* nice floating hover */
.faq-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

/* sticky premium feel */
.faq-contact-card {
    position: sticky;
    top: 110px;
}

.faq-contact-card h3 {
    margin-bottom: 10px;
}

.faq-contact-card p {
    font-size: 0.95rem;
    margin-bottom: 18px;
}

/* =========================================
   ACCORDION
========================================= */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ITEM */
.faq-item {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition:
        transform .35s cubic-bezier(.22,1,.36,1),
        box-shadow .35s ease,
        border-color .3s ease;
}

/* Hover */
.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Active */
.faq-item.active {
    border-color: #e8ecff;
    box-shadow: 0 20px 45px rgba(71,112,255,0.10);
    transform: translateY(-3px);
}

/* QUESTION */
.faq-question {
    padding: 20px 22px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================================
   ULTRA SMOOTH ANSWER ANIMATION
========================================= */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(-6px) scale(.98);
    transition:
        grid-template-rows 0.55s cubic-bezier(.22,1,.36,1),
        opacity .45s ease,
        transform .45s ease;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 22px;
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.faq-item.active .faq-answer-inner {
    padding: 0 22px 22px;
}

/* ICON */
.faq-icon {
    font-size: 20px;
    font-weight: 700;
    color: #4770ff;
    transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* =========================================
   MOBILE (FAQ FIRST → CARD AFTER)
========================================= */

@media (max-width: 768px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-accordion { order: 1; }   /* FAQ first */
    .faq-contact-card { order: 2; } /* card after */

    .faq-section {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 15px;
    }

    .faq-answer-inner {
        padding: 0 18px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer-inner {
        padding: 0 18px 18px;
    }

    /* disable sticky on mobile */
    .faq-contact-card {
        position: relative;
        top: auto;
    }
}

/* collapse benefit list */
.pricing-card.collapsed .benefit-list li:nth-child(n+7) {
    display: none;
}

/* show more button */
.show-more-btn {
    margin-top: 14px;
    background: transparent;
    border: none;
    color: #4770ff;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.show-more-btn:hover {
    text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
    
    
  .footer,
  .global-section,
  .performance-section,
  .rdp-section,
  .section-header {
    margin-top: 2rem !important;
  }
  
  .pricing-section{
     margin-top: 2rem !important;
  }
  
  .pricing-section{
     padding-top: 1.80rem !important;
  }
  
    .pricing-grid {
     gap: 5rem;
  }

.rdp-text h2 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
}
  .solution-card .icon img {
    width: 56px;
    height: 56px;
    image-rendering: crisp-edges;
  }
.hero-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    image-rendering: crisp-edges !important;
    -webkit-image-rendering: crisp-edges !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0); /* HD fix for safari */
  }
  
/*.hero-image img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*    image-rendering: auto !important;*/
/*    -webkit-font-smoothing: subpixel-antialiased !important;*/
/*}*/

.deploy-card .icon img,
.solution-card .icon img {
    image-rendering: crisp-edges;
}

  /* Constrain support image width on mobile and tablet */
  .support-image img {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
  }

  /* Fixed performance apps to center and not stretch */
  .performance-apps {
    gap: 1.5rem;
    max-width: 100%;
  }

  .nav {
    display: none;
  }
        /* Hero Section */
        .hero {
          padding: 2rem 0;
        }
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    /*flex-direction: column;*/
    text-align: center;
  }

  .rdp-content,
  .support-content {
    grid-template-columns: 1fr;
  }
  
.deploy-section {
  padding: 3rem 0;
}

.solutions-section {
  padding: 3rem 0;
}

.performance-section {
  padding: 1rem 0;
}

.global-section {
  padding: 1rem 0;
}

.global-section {
  margin-bottom: 3rem;
}
  .section-header h2 {
    font-size: 1.75rem;
  }
  .pricing-grid {
    gap: 2rem;
  }

  .pricing-tabs,
  .billing-cycles {
    /*gap: 0.5rem;*/
  }

  .tab-btn,
  .cycle-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .app-logo {
    font-size: 2rem;
  }
    .world-map {
        overflow: hidden !important;
        position: relative;
        padding-top: 20px;   /* ADD SPACE ABOVE → fixes top cut */
    }

    .world-map img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        transform: scale(1.25);        
        transform-origin: top center;  /* SHIFT SCALE DOWN → no top cut */
        display: block;
        position: relative;
        left: 0;                       /* ensure no right cut */
    }
}

@media (max-width: 480px) {
  .solution-card .icon img {
    width: 56px;
    height: 56px;
    image-rendering: crisp-edges;
  }

  /* Enhanced image quality on mobile with crisp rendering */
.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

  /* Constrain support image on small screens */
  .support-image img {
    /*max-width: 70%;*/
    width: 100%;
    margin: 0 auto;
  }

  .performance-apps {
    gap: 1rem;
  }

  .hero-text h1 {
    font-size: 2.26rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
    line-height: 33px;
  }

  .pricing-tabs,
  .billing-cycles {
    flex-wrap: wrap;
  }

  .deploy-cards,
  .solutions-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .performance-apps {
    grid-template-columns: repeat(2, 1fr);
  }
}

