/* =========================================================
   OBRIS VPN LANDING PAGE - CLEAN PRODUCTION CSS
   Sections:
   - Root / Base
   - Utilities
   - Preloader
   - Shared headings / buttons
   - Header
   - Hero
   - Locations
   - Pricing
   - Download
   - About
   - Footer
   - Scroll top
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap');

:root{
  --obris-orange: #ff6a00;
  --obris-orange-light: #ff8c32;
  --obris-orange-dark: #ff3c00;
  --obris-bg: #050505;
  --obris-bg-soft: #070707;
  --obris-surface: #0f0f10;
  --obris-surface-2: #16181c;
  --obris-text: #f5f5f5;
  --obris-text-soft: rgba(255,255,255,0.82);
  --obris-text-muted: rgba(255,255,255,0.72);
  --obris-text-faint: rgba(255,255,255,0.58);
  --obris-border: rgba(255,255,255,0.08);
  --obris-border-soft: rgba(255,255,255,0.06);
  --obris-shadow: 0 24px 60px rgba(0,0,0,0.28);
  --obris-shadow-soft: 0 18px 40px rgba(0,0,0,0.22);
  --obris-shadow-orange: 0 16px 34px rgba(255,122,0,0.24);
}

/* =========================
   BASE
   ========================= */
html{
  scroll-behavior: smooth;
}

*, *::before, *::after{
  box-sizing: border-box;
}

body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--obris-bg);
  color: var(--obris-text);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

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

a{
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover{
  color: var(--obris-orange);
}

ul{
  margin: 0;
  padding: 0;
}

li{
  list-style: none;
}

p{
  margin: 0;
}

h1,h2,h3,h4,h5,h6{
  margin: 0;
  font-family: 'Barlow', sans-serif;
  line-height: 1.15;
  color: #fff;
}

::selection{
  background: #333;
  color: #fff;
}

.main{
  margin-top: 0 !important;
}

.bg{
  background: #0a0a0a !important;
}

@media (min-width: 1200px){
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl{
    max-width: 1185px;
  }
}

/* =========================
   UTILITIES
   ========================= */
.py-120{
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.pt-70{
  padding-top: 70px !important;
}

.pb-120{
  padding-bottom: 100px !important;
}

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

.mt-3{
  margin-top: 1rem !important;
}

.mb-3{
  margin-bottom: 1rem !important;
}

.mt-4{
  margin-top: 1.5rem !important;
}

/* =========================
   PRELOADER
   ========================= */
.preloader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
}

.loader{
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}

.loader-box-1, .loader-box-2{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--obris-orange);
  opacity: 0.6;
  animation: loader-bounce 2s infinite ease-in-out;
}

.loader-box-2{
  animation-delay: -1s;
}

@keyframes loader-bounce{
  0%,100%{ transform: scale(0); }
  50%{ transform: scale(1); }
}

/* =========================
   SHARED HEADING
   ========================= */
.site-heading{
  margin-bottom: 50px;
}

.site-title-tagline{
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  color: var(--obris-orange);
}

.site-title{
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff !important;
}

.site-heading p{
  margin-top: 14px;
  font-size: 16px;
  color: var(--obris-text-muted);
}

@media (max-width: 767px){
  .site-title{
    font-size: 35px;
  }
  .site-title-tagline{
    font-size: 15px;
  }
}

/* =========================
   BUTTONS
   ========================= */
.theme-btn, .theme-btn.theme-btn2{
  min-height: 54px;
  padding: 0 26px !important;
  border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700 !important;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent !important;
  transition: all 0.3s ease;
}

.theme-btn{
  color: #fff !important;
  background: linear-gradient(180deg, #ff7a00 0%, #ff6a00 100%) !important;
  border-color: rgba(255,106,0,0.85) !important;
  box-shadow: 0 10px 30px rgba(255,106,0,0.28);
}

.theme-btn:hover{
  color: #fff !important;
  background: linear-gradient(180deg, #ff8a1f 0%, #ff7410 100%) !important;
  transform: translateY(-2px);
}

.theme-btn.theme-btn2{
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.14) !important;
  box-shadow: 0 10px 30px rgba(255,106,0,0.10);
}

.theme-btn.theme-btn2:hover{
  color: var(--obris-orange) !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,106,0,0.45) !important;
}

/* =========================
   HEADER
   ========================= */
.header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.main-navigation{
  position: relative;
  padding: 18px 0;
}

.main-navigation::before{
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 28px));
  height: 72px;
  border-radius: 18px;
  background: rgba(10,10,10,0.42);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.navbar{
  min-height: 86px;
  padding: 0;
  background: transparent !important;
}

.navbar .container{
  padding: 0 18px;
}

.navbar-brand{
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.header-logo{
  width: auto;
  height: 62px;
}

.navbar-collapse{
  justify-content: flex-end;
}

.navbar-nav{
  align-items: center;
  gap: 10px;
}

.navbar .nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
  color: #fff;
}

.navbar .nav-link::after{
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a00 0%, #ff9500 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{
  transform: scaleX(1);
}

.nav-cta-item{
  margin-left: 10px;
}

.nav-download-btn{
  min-width: 146px;
  height: 48px;
  padding: 0 22px !important;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
  box-shadow: 0 10px 24px rgba(255,122,0,0.22);
}

.nav-download-btn:hover{
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255,122,0,0.28);
}

.navbar-toggler{
  border: 0;
  box-shadow: none !important;
  padding: 8px 10px;
}

.navbar-toggler-icon{
  background: none !important;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler-icon i{
  font-size: 24px;
  color: #fff;
}

@media (max-width: 991px){
  .main-navigation{
    padding: 14px 0;
  }
  .main-navigation::before{
    top: 8px;
    width: calc(100% - 20px);
    height: 68px;
    border-radius: 16px;
  }
  .navbar{
    min-height: 74px;
  }
  .header-logo{
    height: 54px;
  }
  .navbar-collapse{
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(8,8,8,0.96);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  }
  .navbar-nav{
    align-items: stretch !important;
    gap: 6px;
  }
  .navbar .nav-link{
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 12px;
  }
  .navbar .nav-link::after{
    display: none;
  }
  .navbar .nav-link:hover,
  .navbar .nav-link.active{
    background: rgba(255,255,255,0.04);
  }
  .nav-cta-item{
    margin-left: 0;
    margin-top: 8px;
  }
  .nav-download-btn{
    width: 100%;
    min-width: 100%;
    height: 50px;
  }
}

@media (max-width: 767px){
  .navbar .container{
    padding: 0 14px;
  }
  .header-logo{
    height: 48px;
  }
}

/* =========================
   HERO
   ========================= */
.hero-section{
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background:
          radial-gradient(circle at 18% 28%, rgba(255,136,0,0.07), transparent 26%),
          radial-gradient(circle at 78% 34%, rgba(255,136,0,0.06), transparent 22%),
          linear-gradient(180deg, #040404 0%, #070707 48%, #040404 100%);
}

.hero-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.14;
  pointer-events: none;
}

.hero-bg-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-1{
  top: 70px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(255,122,0,0.08);
}

.hero-glow-2{
  right: -100px;
  bottom: 60px;
  width: 300px;
  height: 300px;
  background: rgba(255,122,0,0.05);
}

.hero-row{
  position: relative;
  z-index: 2;
  min-height: 680px;
}

.hero-content{
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.hero-sub-title{
  display: inline-block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9f9f9f;
}

.hero-title{
  margin: 0 0 22px;
  font-size: 72px;
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -2.2px;
  color: #fff;
}

.hero-title span{
  display: block;
}

.hero-text{
  max-width: 510px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.65;
  color: #c7c7c7;
}

.hero-btn{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-btn .theme-btn{
  min-width: 210px;
  height: 58px;
  padding: 0 28px !important;
  font-size: 16px;
}

.hero-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: #a9a9a9;
  font-size: 15px;
  font-weight: 500;
}

.hero-meta span{
  position: relative;
}

.hero-meta span:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255,136,0,0.75);
}

.hero-device-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 680px;
}

.hero-device-glow{
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255,122,0,0.10);
  filter: blur(80px);
  z-index: 1;
}

.hero-phone{
  position: relative;
  z-index: 3;
  width: 390px;
  max-width: 100%;
  padding: 12px;
  border-radius: 38px;
  background: linear-gradient(180deg, #1b1c1f 0%, #0a0a0b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
          0 28px 70px rgba(0,0,0,0.54),
          inset 0 1px 0 rgba(255,255,255,0.03);
}

.hero-phone-screen{
  width: 100%;
  border-radius: 28px;
  background: #000;
}

.hero-status-card{
  position: absolute;
  top: 120px;
  right: -10px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 235px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(10,10,10,0.90);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 30px rgba(0,0,0,0.32);
}

.hero-status-card strong{
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  color: #fff;
}

.hero-status-card small{
  display: block;
  font-size: 13px;
  color: #b6b6b6;
}

.status-dot{
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: #00c853;
  box-shadow: 0 0 0 6px rgba(0,200,83,0.12);
}

@media (max-width: 1199px){
  .hero-title{
    font-size: 62px;
  }
  .hero-phone{
    width: 360px;
  }
  .hero-status-card{
    right: 0;
  }
}

@media (max-width: 991px){
  .hero-section{
    padding: 105px 0 85px;
  }
  .hero-row{
    min-height: auto;
    row-gap: 50px;
  }
  .hero-content{
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .hero-title{
    font-size: 54px;
  }
  .hero-text{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btn,
  .hero-meta{
    justify-content: center;
  }
  .hero-device-wrap{
    min-height: auto;
  }
  .hero-status-card{
    top: 30px;
    right: 10px;
  }
}

@media (max-width: 767px){
  .hero-section{
    padding: 90px 0 75px;
  }
  .hero-sub-title{
    display: block;
    margin-top: 18px !important;
    margin-bottom: 12px !important;
    font-size: 10px !important;
    letter-spacing: 1.2px !important;
    white-space: nowrap;
  }
  .hero-title{
    font-size: 42px;
    letter-spacing: -1.3px;
  }
  .hero-text{
    font-size: 17px;
    line-height: 1.7;
  }
  .hero-btn .theme-btn{
    width: 100%;
    min-width: 100%;
    height: 54px;
  }
  .hero-phone{
    width: 310px;
    padding: 10px;
    border-radius: 32px;
  }
  .hero-phone-screen{
    border-radius: 22px;
  }
  .hero-status-card{
    position: static;
    min-width: 100%;
    margin-top: 14px;
  }
  .hero-meta{
    gap: 10px 18px;
    font-size: 14px;
  }
  .hero-meta span:not(:last-child)::after{
    right: -10px;
  }
}

/* =========================
   LOCATIONS
   ========================= */
.locations-section{
  position: relative;
  background: linear-gradient(180deg, #050505 0%, #080808 100%);
}

.locations-app-preview{
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(180deg, #16181c 0%, #0a0a0b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
          0 28px 70px rgba(0,0,0,0.50),
          inset 0 1px 0 rgba(255,255,255,0.03);
}

.locations-app-preview img{
  width: 100%;
  border-radius: 24px;
}

.locations-content .site-heading{
  text-align: left;
}

.locations-content .site-title{
  margin-bottom: 18px;
}

.locations-content .site-heading p{
  max-width: 560px;
  color: #c7c7c7;
}

.all-locations-card{
  padding: 26px;
  border-radius: 28px;
  background: rgba(12,12,14,0.88);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.all-flags-grid{
  display: grid;
  gap: 14px;
}

.all-flags-grid.five-columns{
  grid-template-columns: repeat(3, 1fr);
}

.flag-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.flag-pill:hover{
  transform: translateY(-2px);
  border-color: rgba(255,136,0,0.25);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

@media (max-width: 991px){
  .locations-content .site-heading{
    text-align: center;
  }
  .locations-content .site-heading p{
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px){
  .locations-app-preview{
    max-width: 360px;
    padding: 10px;
    border-radius: 26px;
  }
  .locations-app-preview img{
    border-radius: 18px;
  }
  .all-locations-card{
    padding: 18px;
    border-radius: 22px;
  }
  .all-flags-grid.five-columns{
    grid-template-columns: repeat(2, 1fr);
  }
  .flag-pill{
    min-height: 48px;
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* =========================
   PRICING
   ========================= */
.pricing-area{
  position: relative;
  background: linear-gradient(180deg, #050505 0%, #070707 100%);
}

.pricing-area .site-heading{
  margin-bottom: 54px;
}

.pricing-area .site-heading p{
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-item{
  position: relative;
  height: 100%;
  margin-bottom: 25px;
  overflow: hidden;
  text-align: center;
  background: var(--obris-surface);
  border: 1px solid var(--obris-border);
  border-radius: 24px;
  box-shadow: var(--obris-shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pricing-item:hover{
  transform: translateY(-8px);
  border-color: rgba(255,136,0,0.16);
  box-shadow: 0 26px 55px rgba(0,0,0,0.30);
}

.pricing-item.active{
  transform: translateY(-8px);
  border-color: rgba(255,136,0,0.28);
  box-shadow: 0 28px 60px rgba(0,0,0,0.34);
}

.pricing-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,136,0,0.12);
  border: 1px solid rgba(255,136,0,0.24);
  color: var(--obris-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-ribbon{
  position: absolute;
  top: 18px;
  right: -42px;
  display: inline-block;
  padding: 6px 42px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: var(--obris-orange);
  transform: rotate(45deg);
  box-shadow: 0 8px 18px rgba(255,122,0,0.24);
}

.pricing-header{
  display: block;
  padding: 8px 30px 0;
  text-align: center;
}

.pricing-header h5{
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
}

.pricing-save{
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
}

.pricing-amount{
  padding: 0 30px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-amount strong{
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.6px;
  color: #fff;
}

.pricing-amount strong:first-child{
  position: relative;
  top: 4px;
  margin-right: 3px;
  font-size: 30px;
  vertical-align: top;
}

.pricing-amount-type{
  position: relative;
  z-index: 1;
  margin-top: -18px;
}

.pricing-amount-type span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.06);
}

.pricing-feature{
  padding: 28px 34px 8px;
}

.pricing-feature ul{
  margin: 0;
  padding: 0;
}

.pricing-feature li{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
}

.pricing-feature li i{
  position: relative;
  top: 4px;
  flex: 0 0 auto;
  color: var(--obris-orange);
}

.pricing-footer{
  padding: 10px 30px 30px;
}

.pricing-footer .theme-btn{
  min-width: 210px;
  min-height: 56px;
  box-shadow: 0 14px 28px rgba(255,122,0,0.20);
}

.pricing-payment{
  margin-top: 44px;
  text-align: center;
}

.pricing-payment p{
  font-size: 18px;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 1199px){
  .pricing-header h5{
    font-size: 25px;
  }
  .pricing-amount strong{
    font-size: 50px;
  }
  .pricing-feature{
    padding-left: 26px;
    padding-right: 26px;
  }
  .pricing-feature li{
    font-size: 17px;
  }
}

@media (max-width: 992px){
  .pricing-item,
  .pricing-item.active{
    transform: none;
  }
  .pricing-header h5{
    font-size: 24px;
  }
  .pricing-amount strong{
    font-size: 48px;
  }
  .pricing-feature li{
    font-size: 16px;
  }
}

@media (max-width: 767px){
  .pricing-item{
    border-radius: 20px;
  }
  .pricing-badge{
    margin-top: 22px;
  }
  .pricing-header{
    padding-left: 22px;
    padding-right: 22px;
  }
  .pricing-header h5{
    font-size: 22px;
  }
  .pricing-save{
    font-size: 14px;
  }
  .pricing-amount{
    padding-left: 22px;
    padding-right: 22px;
  }
  .pricing-amount strong{
    font-size: 42px;
  }
  .pricing-amount strong:first-child{
    top: 3px;
    font-size: 24px;
  }
  .pricing-amount-type span{
    min-height: 34px;
    padding: 6px 14px;
    font-size: 13px;
  }
  .pricing-feature{
    padding: 24px 22px 6px;
  }
  .pricing-feature li{
    margin-bottom: 14px;
    font-size: 15px;
  }
  .pricing-footer{
    padding: 8px 22px 24px;
  }
  .pricing-footer .theme-btn{
    width: 100%;
    min-width: 100%;
    min-height: 52px;
  }
  .pricing-payment p{
    font-size: 16px;
  }
  .pricing-ribbon{
    top: 16px;
    right: -40px;
    padding: 5px 36px;
    font-size: 10px;
  }
}

/* =========================
   DOWNLOAD
   ========================= */
.download-area{
  position: relative;
  background:
          radial-gradient(circle at 50% 20%, rgba(255,136,0,0.07), transparent 28%),
          linear-gradient(180deg, #050505 0%, #070707 100%);
}

.download-card{
  position: relative;
  overflow: hidden;
  padding: 56px 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(14,14,16,0.94) 0%, rgba(10,10,12,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
          0 24px 60px rgba(0,0,0,0.28),
          inset 0 1px 0 rgba(255,255,255,0.03);
}

.download-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255,136,0,0.08), transparent 38%);
  pointer-events: none;
}

.download-card .site-title{
  margin-bottom: 18px !important;
}

.download-card-text{
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.download-now{
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.google-play{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 260px;
  min-height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
  box-shadow: 0 16px 34px rgba(255,122,0,0.24);
}

.google-play:hover{
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255,122,0,0.30);
}

.google-play i{
  font-size: 20px;
}

.download-meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
}

.download-meta span{
  position: relative;
}

.download-meta span:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255,136,0,0.72);
}

.download-support p{
  margin: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.72);
}

.download-support a{
  color: #fff;
  border-bottom: 1px solid rgba(255,136,0,0.28);
}

.download-support a:hover{
  color: var(--obris-orange);
  border-bottom-color: var(--obris-orange);
}

@media (max-width: 991px){
  .download-card{
    padding: 46px 28px;
    border-radius: 24px;
  }
  .download-card-text{
    font-size: 18px;
  }
}

@media (max-width: 767px){
  .download-card{
    padding: 38px 20px;
    border-radius: 20px;
  }
  .download-card-text{
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
  }
  .google-play{
    width: 100%;
    min-width: 100%;
    min-height: 56px;
    padding: 0 20px;
    font-size: 17px;
  }
  .download-meta{
    gap: 10px 18px;
    font-size: 14px;
  }
  .download-meta span:not(:last-child)::after{
    right: -10px;
  }
  .download-support p{
    font-size: 15px;
  }
}

/* =========================
   ABOUT
   ========================= */
.about-area{
  position: relative;
  background: linear-gradient(180deg, #050505 0%, #060606 100%);
}

.about-card{
  max-width: 860px;
  margin: 0 auto;
}

.about-title{
  margin: 14px 0 18px;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1.4px;
  color: #fff;
}

.about-card-text{
  max-width: 760px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255,255,255,0.80);
}

@media (max-width: 1199px){
  .about-title{
    font-size: 48px;
  }
  .about-card-text{
    font-size: 20px;
  }
}

@media (max-width: 991px){
  .about-title{
    font-size: 42px;
  }
  .about-card-text{
    font-size: 18px;
    line-height: 1.75;
  }
}

@media (max-width: 767px){
  .about-area{
    padding-top: 60px !important;
    padding-bottom: 90px !important;
  }
  .about-title{
    margin: 12px 0 16px;
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: -0.8px;
  }
  .about-card-text{
    font-size: 16px;
    line-height: 1.7;
  }
}

/* =========================
   FOOTER
   ========================= */
.footer-area{
  position: relative;
  padding: 0 0 28px;
  background: linear-gradient(180deg, #050505 0%, #040404 100%);
}

.footer-widget{
  padding-top: 0;
}

.footer-shell{
  padding: 46px 40px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13,13,15,0.96) 0%, rgba(9,9,11,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
          0 24px 60px rgba(0,0,0,0.24),
          inset 0 1px 0 rgba(255,255,255,0.03);
}

.footer-widget-wrapper{
  padding-bottom: 26px;
}

.footer-widget-title{
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer-brand-text{
  max-width: 360px;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}

.footer-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li{
  margin: 0;
}

.footer-list a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.72);
}

.footer-list a:hover{
  color: #fff;
  transform: translateX(4px);
}

.footer-email{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-email i{
  position: relative;
  top: 1px;
  font-size: 15px;
  color: var(--obris-orange);
}

.footer-bottom{
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.copyright-text{
  font-size: 15px;
  color: rgba(255,255,255,0.58);
}

/* =========================
   SECTION SPACING
   ========================= */
.locations-section{
  padding-top: 100px;
  padding-bottom: 100px;
}

.pricing-area{
  padding-top: 100px;
  padding-bottom: 100px;
}

.download-area{
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-area{
  padding-top: 70px;
  padding-bottom: 100px;
}

/* =========================
   MOBILE OVERRIDES
   ========================= */
@media (max-width: 767px){

  .hero-section{
    padding: 70px 0 32px !important;
  }

  .locations-section,
  .pricing-area,
  .download-area,
  .about-area{
    padding: 32px 0 !important;
  }

  .footer-area{
    padding-top: 32px !important;
  }

  .download-area{
    padding: 50px 0 !important;
  }

  .about-area{
    padding: 50px 0 70px !important;
  }

  /* ---------- hero ---------- */
  .hero-row > .col-lg-6:last-child{
    display: none !important;
  }

  .hero-content{
    max-width: 100%;
    text-align: center;
    margin-bottom: 0 !important;
  }

  .hero-sub-title{
    margin-bottom: 12px !important;
  }

  .hero-title{
    margin-bottom: 12px !important;
    font-size: 42px;
    letter-spacing: -1.3px;
  }

  .hero-text{
    margin-bottom: 16px !important;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-btn{
    margin-bottom: 12px !important;
  }

  .hero-btn .theme-btn{
    width: 100%;
    min-width: 100%;
    height: 54px;
  }

  .hero-meta{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    gap: 8px 16px !important;
    font-size: 13px;
    justify-content: center;
  }

  .hero-glow-1,
  .hero-glow-2{
    opacity: 0.45;
    filter: blur(70px);
  }

  /* ---------- locations ---------- */
  .locations-app-preview{
    display: none !important;
  }

  .locations-section .container,
  .locations-section .row,
  .locations-content,
  .all-locations-card,
  .all-flags-grid{
    margin-bottom: 0 !important;
  }

  .locations-section .row{
    row-gap: 20px !important;
  }

  .locations-content .site-heading{
    text-align: center;
    margin-bottom: 22px !important;
  }

  .locations-content .site-title{
    margin-bottom: 12px !important;
  }

  .locations-content .site-heading p{
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
  }

  .all-locations-card{
    padding: 16px !important;
    border-radius: 22px;
  }

  .all-flags-grid{
    gap: 12px !important;
  }

  .all-flags-grid.five-columns{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flag-pill{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }

  .all-flags-grid.five-columns .flag-pill:last-child:nth-child(odd){
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    justify-self: center;
  }

  /* ---------- pricing ---------- */
  .pricing-area .site-heading{
    margin-bottom: 28px !important;
  }

  .pricing-item{
    border-radius: 20px;
    margin-bottom: 18px;
  }

  .pricing-header{
    padding-left: 22px;
    padding-right: 22px;
  }

  .pricing-header h5{
    font-size: 22px;
  }

  .pricing-save{
    font-size: 14px;
  }

  .pricing-amount{
    padding-left: 22px;
    padding-right: 22px;
  }

  .pricing-amount strong{
    font-size: 42px;
  }

  .pricing-amount strong:first-child{
    top: 3px;
    font-size: 24px;
  }

  .pricing-amount-type span{
    min-height: 34px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .pricing-feature{
    padding: 24px 22px 6px;
  }

  .pricing-feature li{
    margin-bottom: 14px;
    font-size: 15px;
  }

  .pricing-footer{
    padding: 8px 22px 24px;
  }

  .pricing-footer .theme-btn{
    width: 100%;
    min-width: 100%;
    min-height: 52px;
  }

  .pricing-payment{
    margin-top: 22px;
  }

  .pricing-payment p{
    font-size: 16px;
  }

  .pricing-ribbon{
    top: 16px;
    right: -40px;
    padding: 5px 36px;
    font-size: 10px;
  }

  /* ---------- download ---------- */
  .download-card{
    padding: 38px 20px;
    border-radius: 20px;
  }

  .download-card-text{
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
  }

  .google-play{
    width: 100%;
    min-width: 100%;
    min-height: 56px;
    padding: 0 20px;
    font-size: 17px;
  }

  .download-meta{
    gap: 10px 18px;
    font-size: 14px;
  }

  .download-meta span:not(:last-child)::after{
    right: -10px;
  }

  .download-support p{
    font-size: 15px;
  }

  /* ---------- about ---------- */
  .about-title{
    margin: 12px 0 16px;
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: -0.8px;
  }

  .about-card-text{
    font-size: 16px;
    line-height: 1.7;
  }

  /* ---------- footer ---------- */
  .footer-shell{
    padding: 30px 20px 20px;
    border-radius: 22px;
  }

  .footer-widget-wrapper{
    padding-bottom: 18px;
    row-gap: 24px !important;
  }

  .footer-brand-box{
    text-align: center;
  }

  .footer-brand-box .site-title-tagline{
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-brand-box .footer-brand-text{
    margin: 0 auto;
    max-width: 320px;
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
  }

  .footer-product-box,
  .footer-support-box{
    text-align: center;
  }

  .footer-product-box .footer-list,
  .footer-support-box .footer-list{
    align-items: center;
    gap: 10px;
  }

  .footer-list a{
    justify-content: center;
    text-align: center;
  }

  .footer-email{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
  }

  .footer-email span{
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .copyright-text{
    text-align: center;
    line-height: 1.7;
  }
}