/* Fonts */
:root {
  --default-font: "Inter", sans-serif, "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Inter", sans-serif;

  font-family: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #242424; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0b2341; /* Color for headings, subheadings and title throughout the website */
  --accent-color: red; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #242424;  /* The default color of the main navmenu links */
  --nav-hover-color: #red; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #242424; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: red; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f9fd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
.about .section {
  min-height: 80vh;   /* try 70vh, 80vh, 100vh */
  padding: 0px 0;    /* keep padding so content isn’t glued to edges */
}
/* ===== Background Video Section ===== */
/* Full-bleed responsive video section */
.about-video-section {
  position: relative;
  width: 100vw;            /* force full viewport width */
  height: clamp(420px, 75vh, 760px);
  overflow: hidden;
  margin-left: calc(50% - 50vw);  /* breaks out of any parent width */
  margin-right: calc(50% - 50vw);
}

/* Video fills container */
.about-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* covers edge-to-edge */
  object-position: center;
  z-index: 1;
}

/* Overlay for readability */
.about-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,35,65,0.70),
    rgba(11,35,65,0.45)
  );
}

/* Text sits above */
.about-video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
/* ===== Blog Card ===== */
.blog-card {
  position: relative;
  display: block;
  height: 300px;
  -radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  transition: transform .35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* Background image */
.blog-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

/* Dark gradient overlay */
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.45)
  );
  z-index: 1;
}

.blog-card,
.blog-card * {
  color: #ffffff !important;
}
/* Content (hidden by default) */
.blog-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
}

/* Reveal on hover */
.blog-card:hover .blog-card-content {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle zoom effect */
.blog-card:hover .blog-card-bg {
  transform: scale(1.08);
}

/* Typography */
.blog-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: .9;
  margin-bottom: 14px;
}

.blog-card-link {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
}
.nav-pills .nav-link {
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  color: #333;
  border: 1px solid rgba(0,0,0,.1);
}

.nav-pills .nav-link.active {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

/* =========================
   How We Work (Modern)
========================= */
.how-we-work{
  background: #f1f1f1;
  padding: 10px 0;
}

.how-we-work-header{
  margin-bottom: 22px;
}

.how-we-work-steps{
  display: grid;
  gap: 14px;
}

.how-step{
  display: flex;
  gap: 14px;
  padding: 18px 18px;
  -radius: 18px;
  background: #fff;
  
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.how-step-icon{
  width: 56px;
  height: 56px;
  -radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.04);
  flex: 0 0 auto;
}

.how-step-icon img{
  width: 30px;
  height: 30px;
  display: block;
}

.how-step-body h5{
  margin: 0 0 6px 0;
  font-weight: 900;
}

.how-step-body p{
  margin: 0;
  opacity: .85;
  line-height: 1.6;
}

/* Video Placeholder */
.how-we-work-video{
  width: 100%;
}

.how-video-placeholder{
  position: relative;
  width: 100%;
 height: 75%;
margin-top:280px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  cursor: pointer;
  display: flex;
}
.how-video-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how-video-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
}

.how-video-content{
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.how-video-badge{
  display: inline-block;
  align-self: flex-start;
  padding: 8px 12px;
  -radius: 999px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  background: rgba(255,255,255,.14);
  margin-bottom: 10px;
}

.how-video-title{
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 14px 0;
  max-width: 28ch;
}

.how-video-play{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.how-play-btn{
  width: 44px;
  height: 44px;
  -radius: 999px;
  background: rgba(255,255,255,.18);
  position: relative;
  display: inline-block;
}

.how-play-btn::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  -left: 12px solid #fff;
  -top: 8px solid transparent;
  -bottom: 8px solid transparent;
}

.how-video-note{
  margin-top: 10px;
  opacity: .7;
  font-size: 14px;
}

/* Hover polish */
.how-video-placeholder:hover{
  transform: translateY(-2px);
  transition: transform .18s ease;
}



/* Responsive tweaks */
@media (max-width: 991.98px){
  .how-we-work{
    padding: 70px 0;
  }
  .how-video-title{
    font-size: 20px;
  }
}

@media (max-width: 575.98px){
  .how-step{
    padding: 16px;
    -radius: 16px;
  }
  .how-step-icon{
    width: 50px;
    height: 50px;
    -radius: 12px;
  }
}


.video-text-inner { max-width: 920px; }

.video-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 16px 0;
}

.video-subtext {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .about-video-section {
    height: clamp(360px, 60vh, 520px);
  }
  .video-title { font-size: 32px; }
}

/* Make "Featured visuals" match the size of "Our Services" */
.section.social-offer .premium-kicker {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.6px;/* increase from default */
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Optional: tighten hierarchy so it feels intentional */
.section.social-offer .premium-title {
  margin-top: 6px;
}

/* ===== Contact Cinematic Image Block ===== */


.contact-modern.section {
  padding: 110px 0;
}
@media (max-width: 768px) {
  .contact-modern.section {
    padding: 80px 0;
  }
}

/* ---------- Cinematic Image Strip ---------- */
.contact-hero-image-wrap {

 position: relative;
overflow: hidden;
width: 100vw;
margin-left: calc(-50vw + 50%);
margin-right: calc(-50vw + 50%);
border: none;
box-shadow: none;
}

/* The image itself */
.contact-hero-image {
  width: 100%;
  height: 480px;              /* cinematic strip height */
  object-fit: cover;
  object-position: center 35%; /* default crop anchor */
  display: block;
  filter: saturate(0.9) contrast(0.95);
}

/* Overlay gradient */
.contact-hero-image-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(11, 35, 65, 0.45) 0%,
    rgba(11, 35, 65, 0.28) 45%,
    rgba(11, 35, 65, 0.12) 100%
  );
}

/* Overlay container (centers everything) */
.contact-hero-image-text {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 28px;
}

/* Force overlay text to white */
.contact-hero-image-text,
.contact-hero-image-text * {
  color: #fff !important;
}

/* Center stack wrapper */
.contact-hero-centerstack {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Headline */
.contact-hero-h2 {
  margin: 0 0 10px 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* Tagline under headline */
.contact-hero-tagline {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 640px;
  opacity: 0.95;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Small kicker */
.contact-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* Big statement */
.contact-hero-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.40);
}

/* ---------- Info Card (left column) ---------- */
.contact-card {
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  padding: 22px;
  height: 100%;
}

.contact-card-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.contact-card-row:first-child {
  padding-top: 0;
  -top: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  -radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 18px;
  flex: 0 0 auto;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 800;
  line-height: 1.35;
}

#contact{ 
padding: 10px;}

.contact-note {
  margin-top: 16px;
  padding-top: 16px;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  opacity: 0.85;
  line-height: 1.6;
}

/* ---------- Form Card (right column) ---------- */
.contact-form-card {
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  padding: 26px;
}

/* Make your submit button feel premium */
.contact-submit {
  background: var(--accent-color);
  color: var(--contrast-color);
  : 0;
  padding: 12px 34px;
  -radius: 999px;
  font-weight: 800;
  letter-spacing: 0.4px;
  transition: 0.25s ease;
}
.contact-submit:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .contact-hero-image {
    height: 150px;
    object-position: center 40%;
  }

  .contact-hero-image-text {
    padding: 18px 18px;
  }

  .contact-hero-h2 {
    font-size: 26px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-hero-tagline {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

/* ---------- Ultra-wide crop tuning ---------- */
@media (min-width: 1400px) {
  .contact-hero-image {
    object-position: center 40%;
  }
}
@media (min-width: 1800px) {
  .contact-hero-image {
    object-position: center 40%;
  }
}


.tall-about {
  padding: 140px 0;
  display: flex;
  align-items: center;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/

/* Make message box clearly visible and taller */
.php-email-form textarea {
  min-height: 180px;
  resize: vertical;
}

/* Give the contact form visual weight */
.php-email-form {
  width: 100%;
  padding: 100px 32px 32px;
}
.php-email-form button[type="submit"] {
  margin-top: 20px;
  padding: 12px 32px;
}
/* Vertically center the entire form column inside the contact row */
.contact .row.gy-4 > .col-lg-6:last-child{
  display: flex;
  align-items: center;      /* vertical center */
}

/* Make the form take the full column width */
.contact .php-email-form{
  width: 100%;
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  -radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  : 3px solid var(--accent-color);
  -top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 75px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  -radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    -radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    -radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    -radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
      box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color:  rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--default-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--default-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -radius: 50%;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  -color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  -radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
 
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  : 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  -radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 87px;
  overflow: visible;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 63px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  -radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* Modern About styling */


.about-hero {
  background: #f7f9fd;
}

#about-approach {
	padding: 20px;
	margin-top: 30px;
}

#about-team {
	pdding:50px;
}

#about{
	padding-top: 50px;
	padding-bottom: 70px;
}


.about-card,
.modern-card {
  background: var(--surface-color);
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.about-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.about-checklist li:first-child {
  border-top: 0;
}

.about-checklist i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

/* What We Do card with soft background image */
.about-what-we-do {
  position: relative;
  overflow: hidden;
  background-image: url("/Cinlix/assets/img/livestream.jpg"); /* update path */
  background-size: cover;
  background-position: center;
  -radius: px;
}

/* Light overlay to soften image */
.about-what-we-do::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88); /* light wash */
  z-index: 1;
}

/* Ensure content stays above overlay */
.about-what-we-do > * {
  position: relative;
  z-index: 2;
}

.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--background-color), transparent 0%);
  : 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
  transition: 0.2s ease;
}

.service-link:hover {
  transform: translateY(-1px);
  -color: color-mix(in srgb, var(--accent-color), transparent 65%);
  color: var(--heading-color);
}

.about-cred {
  background: #0b2341;
  color: #fff;
}

.about-cred .mini-stat {
  padding: 20px;
  border-radius: 14px;
  : 1px solid rgba(255,255,255,0.15);
}

.about-cred .mini-stat-number {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.team-portrait {
  width: 100%;
  max-height: 400px;  /* ← ajustează după gust */
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.about-cred .mini-stat-label {
  opacity: 0.9;
  margin-top: 6px;
}

#about-cred.section {
  padding: 40px 0;  /* ← reduce din 150px cât e implicit */
}

/* Buttons (if you want them more modern) */
.btn-primary {
  background: var(--accent-color);
  -color: var(--accent-color);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  -color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.about ul {
  list-style: none;
  padding: 100px;
  min-height: 80vh;   /* try 70vh, 80vh, 100vh */
  padding: 80px 0;    /* keep padding so content isn’t glued to edges */
  display: flex;
  align-items: center; /* vertically centers your inner content */


}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  -radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  -radius: 50px;
  : 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  -radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features h3 {
  font-size: 20px;
  font-weight: 700;
}

.features p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  -radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  -radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--accent-color);
  -color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  -radius: 5px;
  transition: 0.5s;
  margin: 10px;
  color: var(--contrast-color);

}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
	
  
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  -bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}
.info-item a{
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.info-item a:hover{
  text-decoration: underline;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  -radius: 4px;
  transition: all 0.3s ease-in-out;
 
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  -radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  -color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
 
  padding: 10px 30px;
  transition: 0.4s;
  -radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  -top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  -radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  -radius: 4px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  -top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}
/* ===== Premium Agency Homepage ===== */

/*
.home-premium section.section {
  padding: 110px 0;
}
*/
/*

@media (max-width: 768px) {
  .home-premium section.section {
    padding: 80px 0;
  }
}
*/

.premium-kicker {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 30px;
  opacity: .75;
  margin-bottom: 10px;
}

.premium-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
	padding-top: 20px;
	padding-bottom: 10px;
}

@media (max-width: 768px) {
  .premium-title { font-size: 30px; }
}

.premium-lead {
  font-size: 18px;
  line-height: 1.65;
  opacity: .9;
}

.premium-card {
  border-radius: 18px;
  background: var(--surface-color);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  overflow: hidden;
}

.premium-card-body {
  padding: 26px;
}

.premium-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .premium-img { height: 360px; }
}

.premium-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-bullets li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.premium-bullets li:first-child { border-top: 0; }

.premium-bullets i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}
.premium-gallery-header {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .premium-gallery-header {
    margin-bottom: 60px;
  }
}


/* Make the column a flex container so the card can stretch */
.section.light-background .row.g-4 > [class*="col-"] {
  display: flex;
}

.premium-service {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  
}

/* Image stays at top */
.premium-service .thumb {
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
  height: 210px;
  display: block;
}

/* Meta content fills remaining space */
.premium-service .meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 22px;
}

.premium-service h4 {
  margin: 0 0 8px 0;
  font-weight: 900;
}

.premium-service p {
  margin: 0 0 14px 0;
  opacity: .85;
  line-height: 1.6;
}

.premium-service .link {
  font-weight: 800;
  margin-top: auto;	
  color: black;
}

.premium-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  -radius: 16px;
  display: block;
}

.premium-trust img {
  height: 34px;
  opacity: .7;
}
/* =========================================================
   ENGAGING SOCIAL MEDIA SERVICES — MODERN PAGE
========================================================= */
/* mai întâi blocul normal */
.social-hero {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 140px;
}

/* după aceea media query */
@media (max-width: 768px) {
  .social-hero {
    height: 800px;
    padding-top: 100px;
  }
}

.social-hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.social-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.72), rgba(11,35,65,.35));
}

.social-hero-content{
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  padding-bottom: 90px;
}

.social-hero-kicker{
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 12px;
}

.social-hero-title{
  font-weight: 900;
  font-size: 54px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin-bottom: 14px;
}

.social-hero-lead{
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
}

.social-hero-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Head blocks */
.social-head{ margin-bottom: 34px; }
.social-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .7;
  margin-bottom: 10px;
}
.social-title{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.social-lead{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Proof strip */
.social-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.social-strip img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Cards */
.social-card{
  background: var(--surface-color);
  -radius: 18px;
  overflow: hidden;
  border : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  transition: transform .2s ease;
  height: 100%;
}
.social-card:hover{ transform: translateY(-3px); }
.social-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.social-card-body{ padding: 16px 16px 18px; }
.social-card-body h3{
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}
.social-card-body p{
  margin: 0;
  opacity: .85;
  line-height: 1.6;
}

/* Videos */
.social-video{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  background: #000;
}
.social-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Process blocks */
.social-process-card{
  background: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
}

.social-steps{
  background: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 10px;
  height: 100%;
}

.social-step{
  display: flex;
  gap: 14px;
  padding: 16px 14px;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.social-step:first-child{ border-top: 0; }

.social-step-num{
  width: 44px;
  height: 44px;
  -radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 900;
}

.social-step-title{ font-weight: 900; margin-bottom: 4px; }
.social-step-text{ opacity: .85; line-height: 1.6; }

/* CTA */
.social-cta{ padding-top: 20px; padding-bottom: 110px; }
.social-cta-box{
  background: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.social-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .social-cta-box{ flex-direction: column; text-align: center; }
  .social-cta-actions{ justify-content: center; }
  .social-strip{ grid-template-columns: repeat(2, 1fr); }
  .social-strip img{ height: 140px; }
}

@media (max-width: 768px){
  .social-hero-title{ font-size: 34px; }
  .social-hero-lead{ font-size: 16px; }
  .social-title{ font-size: 28px; }
  .social-card img{ height: 150px; }
}
/* =========================================================
   FREE CONSULTATION — MODERN PAGE
========================================================= */

.consult-hero{
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.consult-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}

.consult-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.78), rgba(11,35,65,.35));
}

.consult-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  text-align: left;
  padding: 130px 0 90px;
}


/* Match Free Consultation kicker to Social hero kicker */
.consult-hero-kicker{
  /* copy the exact look from .social-hero-kicker */
  display: inline-block;
  padding: 8px 14px;
  -radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
  opacity: .92;
  margin-bottom: 12px;

  /* keep same visual treatment */
  background: rgba(255,255,255,.12);
  
  color: #fff;

  /* spacing similar to social hero */
  margin-bottom: 14px;
}
.consult-hero-title{
  font-weight: 900;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 14px 0;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
  margin: 0 auto 22px auto;
  max-width: 900px;
}

.consult-hero-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin: 0 auto 22px auto; 
}

.consult-hero-chips{
  display: flex;
  gap: 10px;
	justify-content: center;
  flex-wrap: wrap;
}

.consult-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

/* Cards */
.consult-section{ padding-top: 30px; 
margin-botto:2pxx;}

.consult-card{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
}

.consult-card--soft{
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 25%);
}

.consult-card-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .7;
  margin-bottom: 10px;
}

.consult-card-title{
  font-weight: 900;
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.consult-card-lead{
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 18px;
}

.consult-bullets{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.consult-bullet{
  display: flex;
  gap: 12px;
  padding-top: 14px;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.consult-bullet:first-child{
  border-top: 0;
  padding-top: 0;
}

.consult-bullet-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 18px;
  flex: 0 0 auto;
}

.consult-bullet-title{
  font-weight: 900;
  margin-bottom: 4px;
}

.consult-bullet-text{
  opacity: .85;
  line-height: 1.6;
}

.consult-mini-note{
  margin-top: 18px;
  padding-top: 16px;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  opacity: .9;
  line-height: 1.7;
}

/* Form */
.consult-form-card{ padding: 26px; }

.consult-form-head{ margin-bottom: 14px; }

.consult-label{
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 6px;
  display: block;
}

.consult-form .form-control{
  border-radius: 12px;
  padding: 12px 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 82%);
  box-shadow: none;
}

.consult-form .form-control:focus{
  border-color: var(--accent-color);
}

.consult-consent{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
}

.consult-consent input{ margin-top: 4px; }

.consult-submit{
  background: var(--accent-color);
  color: var(--contrast-color);
  
  padding: 12px 34px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .3px;
  transition: .25s ease;
}

.consult-submit:hover{
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.consult-form-meta{
  margin-top: 10px;
  opacity: .75;
  font-size: 13px;
}

/* Micro row */
.consult-micro{
  background: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}

.consult-micro-icon{
  width: 44px;
  height: 44px;
  -radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.consult-micro-title{ font-weight: 900; margin-bottom: 6px; }
.consult-micro-text{ opacity: .85; line-height: 1.6; }

/* Responsive */
@media (max-width: 768px){
  .consult-hero-inner{ padding: 110px 0 70px; text-align: center; }
  .consult-hero-title{ font-size: 34px; margin-left: auto; margin-right: auto; }
  .consult-hero-lead{ font-size: 16px; margin-left: auto; margin-right: auto; }
  .consult-hero-chips{ justify-content: center; }
}

/* =========================================================
   FULL-SERVICE VIDEO PRODUCTION — MODERN PAGE
========================================================= */

.fsvp-hero{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fsvp-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.fsvp-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.78), rgba(11,35,65,.35));
}
.fsvp-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 60px 90px;
  text-align: center;
	width: 100%;
}
.fsvp-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 20px;
  opacity: .85;
  margin-bottom: 10px;
}
.fsvp-title{
  font-weight: 900;
  font-size: 34px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 auto 22px auto;
 max-width: 980px;
}

.fsvp-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin: 0 auto 22px auto;
}
.fsvp-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
	justify-content: center;
}
.fsvp-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
	justify-content: center;
}
.fsvp-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

/* Head blocks */
.fsvp-head{ margin-bottom: 34px; text-align: center; }
.fsvp-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.fsvp-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Strip */
.fsvp-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fsvp-strip img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Cards */
.fsvp-card{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 18px;
  height: 100%;
  transition: transform .2s ease;
}
.fsvp-card:hover{ transform: translateY(-3px); }
.fsvp-card-icon{
  width: 46px;
  height: 46px;
  -radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 12px;
}
.fsvp-card h3{
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px 0;
}
.fsvp-card p{
  margin: 0;
  opacity: .85;
  line-height: 1.6;
}

/* Process */
.fsvp-process-card{
  background: var(--surface-color);
 
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
}
.fsvp-steps{
  background: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 10px;
  height: 100%;
}
.fsvp-step{
  display: flex;
  gap: 14px;
  padding: 16px 14px;
  -top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.fsvp-step:first-child{ border-top: 0; }
.fsvp-step-num{
  width: 44px;
  height: 44px;
  -radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 900;
}
.fsvp-step-title{ font-weight: 900; margin-bottom: 4px; }
.fsvp-step-text{ opacity: .85; line-height: 1.6; }

/* Videos */
.fsvp-video{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  background: #000;
}
.fsvp-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA */
.fsvp-cta{ padding-top: 20px; padding-bottom: 110px; }
.fsvp-cta-box{
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.fsvp-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .fsvp-cta-box{ flex-direction: column; text-align: center; }
  .fsvp-cta-actions{ justify-content: center; }
  .fsvp-strip{ grid-template-columns: 1fr; }
  .fsvp-strip img{ height: 180px; }
}

@media (max-width: 768px){
  .fsvp-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .fsvp-title{ font-size: 34px; margin-left: auto; margin-right: auto; }
  .fsvp-lead{ font-size: 16px; margin-left: auto; margin-right: auto; }
  .fsvp-hero-actions{ justify-content: center; }
  .fsvp-chips{ justify-content: center; }
  .fsvp-h2{ font-size: 28px; }
}
/* =========================================================
   PACKAGES & PRICES — MODERN PAGE
========================================================= */

.pp-hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pp-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.pp-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.78), rgba(11,35,65,.35));
}
.pp-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 0 90px;
}
.pp-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.pp-title{
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 0 14px 0;
  max-width: 980px;
}
.pp-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
}
.pp-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.pp-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pp-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

/* Head blocks */
.pp-head{ margin-bottom: 34px; text-align: center; }
.pp-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.pp-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Trust + images */
.pp-trust{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.pp-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.pp-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

.pp-images{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pp-images img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Package cards */
.pp-card{
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pp-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.pp-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  -radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.pp-card-top{ margin-bottom: 12px; }
.pp-plan{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}
.pp-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pp-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.pp-note{
  opacity: .85;
  line-height: 1.6;
}

.pp-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
  line-height: 1.55;
}
.pp-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.pp-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.pp-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.pp-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.pp-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

/* FAQ */
.pp-faq{
  background: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pp-faq-q{ font-weight: 900; margin-bottom: 6px; }
.pp-faq-a{ opacity: .85; line-height: 1.7; }

/* CTA box */
.pp-cta-box{
  background: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pp-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .pp-cta-box{ flex-direction: column; text-align: center; }
  .pp-cta-actions{ justify-content: center; }
  .pp-card--featured{ transform: none; }
}
@media (max-width: 768px){
  .pp-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .pp-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .pp-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .pp-hero-actions{ justify-content: center; }
  .pp-chips{ justify-content: center; }
  .pp-h2{ font-size: 28px; }
  .pp-images img{ height: 150px; }
}
/* =========================================================
   PRICE — COMMERCIAL ADS (price-com-ads.html)
========================================================= */

.pca-hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pca-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.pca-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.78), rgba(11,35,65,.35));
}
.pca-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 0 90px;
}
.pca-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.pca-title{
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 0 14px 0;
  max-width: 980px;
}
.pca-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
}
.pca-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.pca-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pca-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
 
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.pca-head{ margin-bottom: 34px; text-align: center; }
.pca-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.pca-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Info + bullets */
.pca-info{
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.pca-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pca-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.pca-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

/* Visuals */
.pca-visuals{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pca-visuals img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Package cards */
.pca-card{
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pca-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.pca-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  -radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.pca-card-top{ margin-bottom: 12px; }
.pca-plan{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}
.pca-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pca-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.pca-note{
  opacity: .85;
  line-height: 1.6;
}

.pca-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pca-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
  line-height: 1.55;
}
.pca-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.pca-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  -radius: 999px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.pca-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.pca-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.pca-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

/* Add-ons */
.pca-addon{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pca-addon-title{ font-weight: 900; margin-bottom: 6px; }
.pca-addon-sub{ opacity: .85; line-height: 1.6; margin: 0; }

/* FAQ */
.pca-faq{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pca-faq-q{ font-weight: 900; margin-bottom: 6px; }
.pca-faq-a{ opacity: .85; line-height: 1.7; }

/* CTA box */
.pca-cta-box{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pca-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .pca-cta-box{ flex-direction: column; text-align: center; }
  .pca-cta-actions{ justify-content: center; }
  .pca-card--featured{ transform: none; }
  .pca-visuals{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
  .pca-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .pca-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .pca-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .pca-hero-actions{ justify-content: center; }
  .pca-chips{ justify-content: center; }
  .pca-h2{ font-size: 28px; }
  .pca-visuals img{ height: 150px; }
}
/* =========================================================
   PRICE — CORPORATE SERVICES (price-corporate-services.html)
========================================================= */

.pcs-hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pcs-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.pcs-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.78), rgba(11,35,65,.35));
}
.pcs-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 0 90px;
}
.pcs-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.pcs-title{
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 0 14px 0;
  max-width: 980px;
}
.pcs-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
}
.pcs-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.pcs-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pcs-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.pcs-head{ margin-bottom: 34px; text-align: center; }
.pcs-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.pcs-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Info + bullets */
.pcs-info{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.pcs-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcs-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.pcs-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

/* Visuals */
.pcs-visuals{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pcs-visuals img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Package cards */
.pcs-card{
  position: relative;
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pcs-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.pcs-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  -radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.pcs-card-top{ margin-bottom: 12px; }
.pcs-plan{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}
.pcs-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pcs-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.pcs-note{
  opacity: .85;
  line-height: 1.6;
}

.pcs-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcs-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
  line-height: 1.55;
}
.pcs-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.pcs-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  -radius: 999px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.pcs-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.pcs-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.pcs-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

/* Retainer section */
.pcs-retainer{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.pcs-retainer-points{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcs-point{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.pcs-point i{ color: var(--accent-color); font-size: 18px; }

.pcs-retainer-card{
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 18px;
}
.pcs-retainer-label{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .75;
  margin-bottom: 8px;
}
.pcs-retainer-price{
  font-weight: 900;
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.pcs-retainer-price span{
  font-size: 13px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.pcs-retainer-note{
  opacity: .85;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* FAQ */
.pcs-faq{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pcs-faq-q{ font-weight: 900; margin-bottom: 6px; }
.pcs-faq-a{ opacity: .85; line-height: 1.7; }

/* CTA box */
.pcs-cta-box{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pcs-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .pcs-cta-box{ flex-direction: column; text-align: center; }
  .pcs-cta-actions{ justify-content: center; }
  .pcs-card--featured{ transform: none; }
}
@media (max-width: 768px){
  .pcs-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .pcs-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .pcs-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .pcs-hero-actions{ justify-content: center; }
  .pcs-chips{ justify-content: center; }
  .pcs-h2{ font-size: 28px; }
  .pcs-visuals img{ height: 150px; }
}
/* =========================================================
   PRICE — COVERAGE & NEWS (price-coverage-news.html)
========================================================= */

.pcn-hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pcn-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.pcn-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.78), rgba(11,35,65,.35));
}
.pcn-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 0 90px;
}
.pcn-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.pcn-title{
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 0 14px 0;
  max-width: 980px;
}
.pcn-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
}
.pcn-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.pcn-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pcn-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.pcn-head{ margin-bottom: 34px; text-align: center; }
.pcn-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.pcn-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Info + bullets */
.pcn-info{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.pcn-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcn-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.pcn-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

/* Visuals */
.pcn-visuals{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pcn-visuals img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Package cards */
.pcn-card{
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pcn-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.pcn-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  -radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.pcn-card-top{ margin-bottom: 12px; }
.pcn-plan{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}
.pcn-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pcn-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.pcn-note{
  opacity: .85;
  line-height: 1.6;
}

.pcn-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcn-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
  line-height: 1.55;
}
.pcn-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.pcn-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  -radius: 999px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.pcn-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.pcn-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.pcn-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

/* Add-ons */
.pcn-addon{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pcn-addon-title{ font-weight: 900; margin-bottom: 6px; }
.pcn-addon-sub{ opacity: .85; line-height: 1.6; margin: 0; }

/* FAQ */
.pcn-faq{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pcn-faq-q{ font-weight: 900; margin-bottom: 6px; }
.pcn-faq-a{ opacity: .85; line-height: 1.7; }

/* CTA box */
.pcn-cta-box{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pcn-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .pcn-cta-box{ flex-direction: column; text-align: center; }
  .pcn-cta-actions{ justify-content: center; }
  .pcn-card--featured{ transform: none; }
}
@media (max-width: 768px){
  .pcn-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .pcn-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .pcn-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .pcn-hero-actions{ justify-content: center; }
  .pcn-chips{ justify-content: center; }
  .pcn-h2{ font-size: 28px; }
  .pcn-visuals img{ height: 150px; }
}
/* =========================================================
   PRICE — FILM DOC (price-film-doc.html)
========================================================= */

.pfd-hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pfd-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.pfd-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.80), rgba(11,35,65,.35));
}
.pfd-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 0 90px;
}
.pfd-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.pfd-title{
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 0 14px 0;
  max-width: 980px;
}
.pfd-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
}
.pfd-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.pfd-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pfd-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.pfd-head{ margin-bottom: 34px; text-align: center; }
.pfd-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.pfd-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Info + bullets */
.pfd-info{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.pfd-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pfd-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.pfd-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

/* Visuals */
.pfd-visuals{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pfd-visuals img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Package cards */
.pfd-card{
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pfd-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.pfd-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  -radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.pfd-card-top{ margin-bottom: 12px; }
.pfd-plan{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}
.pfd-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pfd-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.pfd-note{
  opacity: .85;
  line-height: 1.6;
}

.pfd-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pfd-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
  line-height: 1.55;
}
.pfd-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.pfd-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  -radius: 999px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.pfd-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.pfd-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.pfd-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

/* Video strip */
.pfd-strip{
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -10px;
}
.pfd-strip-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: .55;
}
.pfd-strip-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.72), rgba(11,35,65,.25));
}
.pfd-strip-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 70px 0;
}
.pfd-strip-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.pfd-strip-title{
  font-weight: 900;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.pfd-strip-sub{
  max-width: 820px;
  opacity: .92;
  line-height: 1.7;
  margin: 0;
}

/* Add-ons */
.pfd-addon{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pfd-addon-title{ font-weight: 900; margin-bottom: 6px; }
.pfd-addon-sub{ opacity: .85; line-height: 1.6; margin: 0; }

/* FAQ */
.pfd-faq{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pfd-faq-q{ font-weight: 900; margin-bottom: 6px; }
.pfd-faq-a{ opacity: .85; line-height: 1.7; }

/* CTA box */
.pfd-cta-box{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pfd-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .pfd-cta-box{ flex-direction: column; text-align: center; }
  .pfd-cta-actions{ justify-content: center; }
  .pfd-card--featured{ transform: none; }
}
@media (max-width: 768px){
  .pfd-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .pfd-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .pfd-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .pfd-hero-actions{ justify-content: center; }
  .pfd-chips{ justify-content: center; }
  .pfd-h2{ font-size: 28px; }
  .pfd-visuals img{ height: 150px; }
  .pfd-strip{ min-height: 38vh; }
  .pfd-strip-title{ font-size: 26px; }
}
/* =========================================================
   PRICE — LIVE STREAM (price-live-stream.html)
========================================================= */

.pls-hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pls-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.pls-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.80), rgba(11,35,65,.35));
}
.pls-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 0 90px;
}
.pls-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.pls-title{
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 0 14px 0;
  max-width: 980px;
}
.pls-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
}
.pls-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.pls-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pls-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.pls-head{ margin-bottom: 34px; text-align: center; }
.pls-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.pls-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Info box */
.pls-info{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.pls-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pls-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.pls-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

/* Visual area */
.pls-visuals{
  display: grid;
  gap: 12px;
}
.pls-visual-card{
  position: relative;
  -radius: 18px;
  overflow: hidden;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  min-height: 260px;
}
.pls-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}
.pls-video-shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,35,65,.55), rgba(11,35,65,.15));
}
.pls-video-text{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  z-index: 2;
}
.pls-video-kicker{
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.pls-video-title{
  font-weight: 900;
  font-size: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.pls-visual-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pls-visual-row img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Package cards */
.pls-card{
  position: relative;
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pls-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.pls-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  -radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.pls-card-top{ margin-bottom: 12px; }
.pls-plan{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}
.pls-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pls-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.pls-note{
  opacity: .85;
  line-height: 1.6;
}

.pls-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pls-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
  line-height: 1.55;
}
.pls-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.pls-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  -radius: 999px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.pls-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.pls-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.pls-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

/* Add-ons */
.pls-addon{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pls-addon-title{ font-weight: 900; margin-bottom: 6px; }
.pls-addon-sub{ opacity: .85; line-height: 1.6; margin: 0; }

/* FAQ */
.pls-faq{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pls-faq-q{ font-weight: 900; margin-bottom: 6px; }
.pls-faq-a{ opacity: .85; line-height: 1.7; }

/* CTA box */
.pls-cta-box{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pls-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .pls-cta-box{ flex-direction: column; text-align: center; }
  .pls-cta-actions{ justify-content: center; }
  .pls-card--featured{ transform: none; }
}
@media (max-width: 768px){
  .pls-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .pls-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .pls-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .pls-actions{ justify-content: center; }
  .pls-chips{ justify-content: center; }
  .pls-h2{ font-size: 28px; }
  .pls-visual-card{ min-height: 220px; }
  .pls-visual-row img{ height: 140px; }
}
/* =========================================================
   PRICE — MUSIC VIDEO (price-music-video.html)
========================================================= */

.pmv-hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pmv-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.pmv-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.82), rgba(11,35,65,.30));
}
.pmv-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 0 90px;
}

.pmv-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.pmv-title{
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 0 14px 0;
  max-width: 980px;
}
.pmv-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
}
.pmv-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.pmv-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pmv-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.pmv-head{ margin-bottom: 34px; text-align: center; }
.pmv-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.pmv-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Info box */
.pmv-info{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.pmv-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pmv-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.pmv-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

/* Visual area */
.pmv-visuals{ display: grid; gap: 12px; }
.pmv-visual-card{
  position: relative;
  -radius: 18px;
  overflow: hidden;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  min-height: 260px;
}
.pmv-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .70;
}
.pmv-video-shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,35,65,.55), rgba(11,35,65,.15));
}
.pmv-video-text{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  z-index: 2;
}
.pmv-video-kicker{
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.pmv-video-title{
  font-weight: 900;
  font-size: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.pmv-visual-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pmv-visual-row img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Package cards */
.pmv-card{
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pmv-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.pmv-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  -radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.pmv-card-top{ margin-bottom: 12px; }
.pmv-plan{ font-weight: 900; font-size: 18px; margin-bottom: 6px; }
.pmv-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pmv-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.pmv-note{ opacity: .85; line-height: 1.6; }

.pmv-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pmv-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
  line-height: 1.55;
}
.pmv-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.pmv-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  -radius: 999px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.pmv-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.pmv-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.pmv-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.pmv-mini-note{
  margin-top: 18px;
  padding: 14px 16px;
  -radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  line-height: 1.6;
  opacity: .9;
}

/* Add-ons */
.pmv-addon{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pmv-addon-title{ font-weight: 900; margin-bottom: 6px; }
.pmv-addon-sub{ opacity: .85; line-height: 1.6; margin: 0; }

/* FAQ */
.pmv-faq{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.pmv-faq-q{ font-weight: 900; margin-bottom: 6px; }
.pmv-faq-a{ opacity: .85; line-height: 1.7; }

/* CTA box */
.pmv-cta-box{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pmv-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .pmv-cta-box{ flex-direction: column; text-align: center; }
  .pmv-cta-actions{ justify-content: center; }
  .pmv-card--featured{ transform: none; }
}
@media (max-width: 768px){
  .pmv-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .pmv-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .pmv-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .pmv-actions{ justify-content: center; }
  .pmv-chips{ justify-content: center; }
  .pmv-h2{ font-size: 28px; }
  .pmv-visual-card{ min-height: 220px; }
  .pmv-visual-row img{ height: 140px; }
}
/* =========================================================
   PRICE — PROMO CLIPS (price-promo-clips.html)
========================================================= */

.ppc-hero{
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ppc-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.ppc-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.82), rgba(11,35,65,.30));
}
.ppc-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 0 80px;
}

.ppc-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.ppc-title{
  font-weight: 900;
  font-size: 50px;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 0 14px 0;
  max-width: 980px;
}
.ppc-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
}
.ppc-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.ppc-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ppc-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.ppc-head{ margin-bottom: 34px; text-align: center; }
.ppc-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.ppc-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Info box */
.ppc-info{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.ppc-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ppc-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.ppc-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

/* Visual area */
.ppc-visuals{ display: grid; gap: 12px; }
.ppc-visual-card{
  position: relative;
  -radius: 18px;
  overflow: hidden;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  min-height: 240px;
}
.ppc-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .70;
}
.ppc-video-shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,35,65,.55), rgba(11,35,65,.15));
}
.ppc-video-text{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  z-index: 2;
}
.ppc-video-kicker{
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.ppc-video-title{
  font-weight: 900;
  font-size: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.ppc-visual-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ppc-visual-row img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Package cards */
.ppc-card{
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ppc-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.ppc-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  -radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.ppc-card-top{ margin-bottom: 12px; }
.ppc-plan{ font-weight: 900; font-size: 18px; margin-bottom: 6px; }
.ppc-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ppc-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.ppc-note{ opacity: .85; line-height: 1.6; }

.ppc-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ppc-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
  line-height: 1.55;
}
.ppc-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.ppc-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  -radius: 999px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.ppc-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.ppc-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.ppc-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.ppc-mini-note{
  margin-top: 18px;
  padding: 14px 16px;
  -radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  line-height: 1.6;
  opacity: .9;
}

/* Add-ons */
.ppc-addon{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.ppc-addon-title{ font-weight: 900; margin-bottom: 6px; }
.ppc-addon-sub{ opacity: .85; line-height: 1.6; margin: 0; }

/* CTA box */
.ppc-cta-box{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.ppc-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .ppc-cta-box{ flex-direction: column; text-align: center; }
  .ppc-cta-actions{ justify-content: center; }
  .ppc-card--featured{ transform: none; }
}
@media (max-width: 768px){
  .ppc-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .ppc-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .ppc-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .ppc-actions{ justify-content: center; }
  .ppc-chips{ justify-content: center; }
  .ppc-h2{ font-size: 28px; }
  .ppc-visual-card{ min-height: 210px; }
  .ppc-visual-row img{ height: 135px; }
}
/* =========================================================
   PRICE — SHORT VIDEO (price-short-video.html)
========================================================= */

.psv-hero{
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.psv-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.psv-hero-shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.82), rgba(11,35,65,.28));
}
.psv-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 0 80px;
}

.psv-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .85;
  margin-bottom: 10px;
}
.psv-title{
  font-weight: 900;
  font-size: 50px;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 0 14px 0;
  max-width: 980px;
}
.psv-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
}
.psv-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.psv-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.psv-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.psv-head{ margin-bottom: 34px; text-align: center; }
.psv-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.psv-sub{
  max-width: 820px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Info box */
.psv-info{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.psv-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.psv-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .9;
}
.psv-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

/* Visual area */
.psv-visuals{ display: grid; gap: 12px; }
.psv-visual-card{
  position: relative;
  -radius: 18px;
  overflow: hidden;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  min-height: 240px;
}
.psv-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .70;
}
.psv-video-shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,35,65,.55), rgba(11,35,65,.12));
}
.psv-video-text{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  z-index: 2;
}
.psv-video-kicker{
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.psv-video-title{
  font-weight: 900;
  font-size: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.psv-visual-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.psv-visual-row img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Package cards */
.psv-card{
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.psv-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.psv-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.psv-card-top{ margin-bottom: 12px; }
.psv-plan{ font-weight: 900; font-size: 18px; margin-bottom: 6px; }
.psv-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.psv-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.psv-note{ opacity: .85; line-height: 1.6; }

.psv-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.psv-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .9;
  line-height: 1.55;
}
.psv-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.psv-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  -radius: 999px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.psv-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.psv-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.psv-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.psv-mini-note{
  margin-top: 18px;
  padding: 14px 16px;
  -radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  line-height: 1.6;
  opacity: .9;
}

/* Process cards */
.psv-addon{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.psv-addon-title{ font-weight: 900; margin-bottom: 6px; }
.psv-addon-sub{ opacity: .85; line-height: 1.6; margin: 0; }

/* CTA box */
.psv-cta-box{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.psv-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .psv-cta-box{ flex-direction: column; text-align: center; }
  .psv-cta-actions{ justify-content: center; }
  .psv-card--featured{ transform: none; }
}
@media (max-width: 768px){
  .psv-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .psv-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .psv-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .psv-actions{ justify-content: center; }
  .psv-chips{ justify-content: center; }
  .psv-h2{ font-size: 28px; }
  .psv-visual-card{ min-height: 210px; }
  .psv-visual-row img{ height: 135px; }
}
/* =========================================================
   SERVICE — PROFESSIONAL LIVESTREAMING & EVENT COVERAGE
   (professional-livestreaming-event-coverage.html)
========================================================= */

.live-hero{
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.live-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.95) contrast(.95);
}
.live-hero-shade{
  position: absolute;
  inset: 0;
	text-align: center;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,35,65,.82), rgba(11,35,65,.25));
}
.live-hero-inner{
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 130px 60px 80px;
  text-align: center;
  width: 100%;
}

.live-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 20px;
  opacity: .85;
  margin-bottom: 10px;
}
.live-title{
  font-weight: 900;
  font-size: 34px;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  margin: 0 auto 14px auto;
  max-width: 980px;
}
.live-lead{
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
	margin: 0 auto 22px auto;
  margin-bottom: 22px;
}
.live-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
	justify-content: center;
}
.live-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
	justify-content: center;
}
.live-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  -radius: 999px;
  background: rgba(255,255,255,.14);
  : 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

/* Trust strip */
.live-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.live-strip-item{
  background: var(--surface-color);
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 16px;
}
.live-strip-title{ font-weight: 900; margin-bottom: 4px; }
.live-strip-sub{ opacity: .8; }

/* Headings */
.live-head{ margin-bottom: 34px; text-align: center; }
.live-h2{
  font-weight: 900;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.live-sub{
  max-width: 840px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* Content cards */
.live-card{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
}
.live-bullets{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.live-bullet{
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .92;
}
.live-bullet i{
  color: var(--accent-color);
  font-size: 18px;
}

/* Video visual */
.live-visual{
  position: relative;
  -radius: 18px;
  overflow: hidden;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  min-height: 260px;
}
.live-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}
.live-video-shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,35,65,.55), rgba(11,35,65,.12));
}
.live-video-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  z-index: 2;
}
.live-video-kicker{
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.live-video-title{
  font-weight: 900;
  font-size: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.live-visual-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.live-visual-row img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
}

/* Pricing cards */
.live-price-card{
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.live-price-card--featured{
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.live-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 10px;
  -radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.live-plan{ font-weight: 900; font-size: 18px; margin-bottom: 6px; }
.live-price{
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.live-price span{
  font-size: 14px;
  opacity: .7;
  font-weight: 700;
  margin-left: 6px;
}
.live-note{ opacity: .85; line-height: 1.6; }

.live-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.live-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: .92;
  line-height: 1.55;
}
.live-list i{
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.live-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  -radius: 999px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 900;
  color: var(--heading-color);
  transition: .25s ease;
}
.live-cta:hover{
  transform: translateY(-1px);
  -color: var(--accent-color);
  color: var(--accent-color);
}
.live-cta--featured{
  background: var(--accent-color);
  -color: var(--accent-color);
  color: var(--contrast-color);
}
.live-cta--featured:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.live-mini-note{
  margin-top: 28px;
  padding: 14px 16px;
  -radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  line-height: 1.6;
  opacity: .9;
}

/* Small cards */
.live-small-card{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.live-small-title{ font-weight: 900; margin-bottom: 6px; }
.live-small-sub{ opacity: .85; line-height: 1.6; margin: 0; }

/* CTA box */
.live-cta-box{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.live-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 992px){
  .live-strip{ grid-template-columns: 1fr 1fr; }
  .live-cta-box{ flex-direction: column; text-align: center; }
  .live-cta-actions{ justify-content: center; }
  .live-price-card--featured{ transform: none; }
}
@media (max-width: 768px){
  .live-hero-inner{ padding: 115px 0 70px; text-align: center; }
  .live-title{ font-size: 34px; margin-left:auto; margin-right:auto; }
  .live-lead{ font-size: 16px; margin-left:auto; margin-right:auto; }
  .live-actions{ justify-content: center; }
  .live-chips{ justify-content: center; }
  .live-h2{ font-size: 28px; }
  .live-visual{ min-height: 220px; }
  .live-visual-row img{ height: 135px; }
}
@media (max-width: 480px){
  .live-strip{ grid-template-columns: 1fr; }
}
/* =========================================================
   Profile Page – Modern Upgrade
   ========================================================= */
.profile-page .section {
  padding: 50px 0;
}

/* Hero */
.profile-hero {
  position: relative;
 width: 100%;
  display: flex;
  place-items: center;
  overflow: hidden;
}

.profile-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.profile-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 6, 0.65),
    rgba(6, 6, 6, 0.55),
    rgba(6, 6, 6, 0.70)
  );
}

.profile-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 110px 0 70px 0;
}

.profile-hero-kicker {
  display: inline-block;
  padding: 6px 14px;
  -radius: 999px;
  : 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 14px;
}

.profile-hero-title {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,0.35);
  margin-bottom: 12px;
}

.profile-hero-lead {
  max-width: 860px;
  margin: 0 auto 22px auto;
  opacity: 0.95;
  font-size: 18px;
  line-height: 1.7;
}

.profile-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.profile-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  -radius: 999px;
  : 1px solid rgba(255,255,255,0.25);
  color: #fff;
  transition: 0.25s ease;
}

.profile-cta-secondary:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

/* Metrics */
.profile-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.profile-metric {
  background: rgba(255,255,255,0.08);
  : 1px solid rgba(255,255,255,0.14);
  -radius: 16px;
  padding: 14px 16px;
  backdrop-filter: blur(8px);
}

.profile-metric-num {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.profile-metric-label {
  opacity: 0.9;
  font-size: 13px;
  margin-top: 2px;
}

/* Split section */
.profile-h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.profile-lead {
  line-height: 1.7;
  opacity: 0.9;
  font-weight: 500;
}

.profile-bullets {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.profile-bullet {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  opacity: 0.95;
}

.profile-bullet i {
  color: var(--accent-color);
  font-size: 18px;
}

.profile-image-card {
  border-radius: 18px;
  overflow: hidden;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
}

.profile-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pillars cards */
.profile-card {
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 22px;
  height: 100%;
  transition: transform 0.25s ease;
}

.profile-card:hover {
  transform: translateY(-3px);
}

.profile-card-icon {
  width: 56px;
  height: 56px;
  -radius: 14px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 14px;
}

.profile-card-icon img {
  width: 28px;
  height: 28px;
}

.profile-card h4 {
  font-weight: 900;
  margin-bottom: 8px;
}

.profile-card p {
  opacity: 0.85;
  line-height: 1.65;
  margin: 0;
}

/* Visuals strip */
.profile-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  height: 100%;
}

.profile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-visual-lg {
  min-height: 420px;
}

.profile-visual-sm {
  min-height: 204px;
}

.profile-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.65), rgba(6,6,6,0.00));
}

.profile-visual-text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #fff;
  z-index: 2;
}

.profile-visual-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.95;
}

.profile-visual-title {
  font-size: 22px;
  font-weight: 900;
  margin-top: 6px;
  text-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

/* Process */
.profile-step {
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px 18px 16px 18px;
  height: 100%;
}

.profile-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  -radius: 14px;
  font-weight: 900;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 12px;
}

.profile-step h5 {
  font-weight: 900;
  margin-bottom: 8px;
}

.profile-step p {
  margin: 0;
  opacity: 0.85;
  line-height: 1.65;
}

/* CTA */
.profile-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.profile-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 6, 0.55),
    rgba(6, 6, 6, 0.65)
  );
}

.profile-cta-inner {
  position: relative;
  z-index: 2;
}

.profile-cta-card {
  max-width: 920px;
  margin: 0 auto;
  -radius: 22px;
  padding: 28px;
  : 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.profile-cta-kicker {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: 0.95;
  margin-bottom: 10px;
}

.profile-cta-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  margin-bottom: 10px;
}

.profile-cta-lead {
  max-width: 760px;
  margin: 0 auto 18px auto;
  opacity: 0.92;
  line-height: 1.7;
}

.profile-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 991px) {
  .profile-metrics {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .profile-visual-lg {
    min-height: 320px;
  }

  .profile-visual-sm {
    min-height: 180px;
  }
}
/* =========================================================
   Strategic Corporate Videos – Modern Page
   ========================================================= */
.corporate-page .section { padding: 90px 0; }

/* HERO */
.corp-hero{
 position: relative;
 width: 100%;
  display: flex;
	height: 500px;
  align-items: flex-start;   /* top align */
  justify-content: center;   /* horizontal center */
  overflow: hidden;
  padding-top: 140px;
}
.corp-hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
}
.corp-hero-shade{
  position:absolute; inset:0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,6,.65),
    rgba(6,6,6,.55),
    rgba(6,6,6,.72)
  );
}
.corp-hero-inner{
  position: relative;
  z-index:2;
  text-align:center;
  color:#fff;
  padding: 0 0 70px 0;
}

.corp-hero-kicker{
  display:inline-block;
  padding: 6px 14px;
  -radius: 999px;
  : 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 14px;
}
.corp-hero-title{
  font-size: clamp(32px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: -0.6px;
  color:#fff;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
  margin-bottom: 12px;
}
.corp-hero-lead{
  max-width: 900px;
  margin: 0 auto 22px auto;
  opacity: .95;
  font-size: 18px;
  line-height: 1.7;
}
.corp-hero-cta{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom: 22px;
}
.corp-cta-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 22px;
  -radius: 999px;
  : 1px solid rgba(255,255,255,0.25);
  color:#fff;
  transition: .25s ease;
}
.corp-cta-secondary:hover{
  background: rgba(255,255,255,0.10);
  color:#fff;
}

/* Proof row */
.corp-proof{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.corp-proof-item{
  background: rgba(255,255,255,0.08);
  : 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 14px 16px;
  backdrop-filter: blur(8px);
}
.corp-proof-big{ font-weight: 900; font-size: 18px; }
.corp-proof-small{ opacity: .9; font-size: 13px; margin-top: 2px; }

/* Split */
.corp-h3{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
.corp-lead{
  line-height: 1.7;
  opacity: .9;
  font-weight: 500;
}
.corp-bullets{ margin-top: 18px; display:grid; gap: 10px; }
.corp-bullet{
  display:flex; gap: 10px; align-items:center;
  font-weight: 650; opacity: .95;
}
.corp-bullet i{ color: var(--accent-color); font-size: 18px; }

.corp-image-card{
  border-radius: 18px;
  overflow:hidden;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
}
.corp-image-card img{ display:block; width:100%; height:100%; object-fit: cover; }

/* Offer cards */
.corp-card{
  background: var(--surface-color);
  border-radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 22px;
  height:100%;
  transition: transform .25s ease;
}
.corp-card:hover{ transform: translateY(-3px); }
.corp-card-icon{
  width: 56px; height: 56px;
  -radius: 14px;
  display:grid; place-items:center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 22px;
}
.corp-card h4{ font-weight: 900; margin-bottom: 8px; }
.corp-card p{ opacity: .85; line-height: 1.65; margin:0; }

/* Video band – responsive edge-to-edge */
.corp-video-band{ padding: 0; }
.corp-video-wrap{
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow:hidden;
}
.corp-video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  opacity: .55; /* video opacity */
}
.corp-video-shade{
  position:absolute; inset:0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,6,.55),
    rgba(6,6,6,.15),
    rgba(6,6,6,.70)
  );
}
.corp-video-overlay{
  position: relative;
  z-index: 2;
  min-height: 520px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align:center;
  color:#fff;
  padding: 80px 0;
}
.corp-video-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 800;
  font-size: 12px;
  opacity: .95;
  margin-bottom: 10px;
}
.corp-video-title{
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  text-shadow: 0 10px 40px rgba(0,0,0,0.35);
  margin-bottom: 10px;
}
.corp-video-lead{
  max-width: 760px;
  opacity: .92;
  line-height: 1.7;
}

/* Gallery */
.corp-gallery-grid img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}
@media (max-width: 991px){
  .corp-gallery-grid img{ height: 180px; }
}

/* Process steps */
.corp-step{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.corp-step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  -radius: 14px;
  font-weight: 900;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 12px;
}
.corp-step h5{ font-weight: 900; margin-bottom: 8px; }
.corp-step p{ margin:0; opacity:.85; line-height:1.65; }

/* CTA */
.corp-cta{
  position: relative;
  padding: 100px 0;
  overflow:hidden;
}
.corp-cta-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
}
.corp-cta-shade{
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(6,6,6,.55), rgba(6,6,6,.70));
}
.corp-cta-inner{ position: relative; z-index:2; }
.corp-cta-card{
  max-width: 940px;
  margin: 0 auto;
  -radius: 22px;
  padding: 28px;
  : 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color:#fff;
  text-align:center;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}
.corp-cta-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .95;
  margin-bottom: 10px;
}
.corp-cta-title{
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  margin-bottom: 10px;
}
.corp-cta-lead{
  max-width: 760px;
  margin: 0 auto 18px auto;
  opacity: .92;
  line-height: 1.7;
}
.corp-cta-actions{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap: wrap;
}

/* Responsive tweaks */
@media (max-width: 991px){
  .corp-proof{ grid-template-columns: 1fr; max-width: 520px; }
  .corp-video-wrap, .corp-video-overlay{ min-height: 420px; }
}
@media (max-width: 575px){
  .corp-video-wrap, .corp-video-overlay{ min-height: 360px; }
}
/* =========================================================
   Engaging Social Media Services – Modern Page
   ========================================================= */
.social-page .section { padding: 70px 0; }

/* HERO */
.social-hero{
  position: relative;
 width: 100%;
  display: flex;
  place-items: center;
  overflow: hidden;
}
.social-hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.03);
}
.social-hero-shade{
  position:absolute; inset:0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,6,.62),
    rgba(6,6,6,.48),
    rgba(6,6,6,.70)
  );
}
.social-hero-inner{
  position: relative;
  z-index:2;
  text-align:center;
  color:#fff;
  padding: 100px 0 70px 0;
}
.social-hero-kicker{
  display:inline-block;
  padding: 6px 14px;
  -radius: 999px;
  : 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08); 
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 14px;
}
.social-hero-title{
  font-size: clamp(32px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: -0.6px;
  color:#fff;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
  margin-bottom: 12px;
}
.social-hero-lead{
  max-width: 900px;
  margin: 0 auto 22px auto;
  opacity: .95;
  font-size: 18px;
  line-height: 1.7;
}
.social-hero-cta{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom: 22px;
}
.social-cta-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 22px;
  -radius: 999px;
  : 1px solid rgba(255,255,255,0.25);
  color:#fff;
  transition: .25s ease;
}
.social-cta-secondary:hover{
  background: rgba(255,255,255,0.10);
  color:#fff;
}

/* Proof row */
.social-proof{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.social-proof-item{
  background: rgba(255,255,255,0.08);
  : 1px solid rgba(255,255,255,0.14);
  -radius: 16px;
  padding: 14px 16px;
  backdrop-filter: blur(8px);
}
.social-proof-big{ font-weight: 900; font-size: 18px; }
.social-proof-small{ opacity: .9; font-size: 13px; margin-top: 2px; }

/* Split */
.social-h3{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
.social-lead{
  line-height: 1.7;
  opacity: .9;
  font-weight: 500;
}
.social-bullets{ margin-top: 18px; display:grid; gap: 10px; }
.social-bullet{
  display:flex; gap: 10px; align-items:center;
  font-weight: 650; opacity: .95;
}
.social-bullet i{ color: var(--accent-color); font-size: 18px; }
.social-image-card{
  border-radius: 18px;
  overflow:hidden;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
}
.social-image-card img{ display:block; width:100%; height:100%; object-fit: cover; }

/* Offer cards */
.social-card{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 22px;
  height:100%;
  transition: transform .25s ease;
}
.social-card:hover{ transform: translateY(-3px); }
.social-card-icon{
  width: 56px; height: 56px;
  -radius: 14px;
  display:grid; place-items:center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 22px;
}
.social-card h4{ font-weight: 900; margin-bottom: 8px; }
.social-card p{ opacity: .85; line-height: 1.65; margin:0; }

/* Video band – full width, responsive, overlay text */
.social-video-band{ padding: 0; }
.social-video-wrap{
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow:hidden;
}
.social-video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  opacity: .55;
}
.social-video-shade{
  position:absolute; inset:0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,6,.55),
    rgba(6,6,6,.15),
    rgba(6,6,6,.70)
  );
}
.social-video-overlay{
  position: relative;
  z-index: 2;
  min-height: 520px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align:center;
  color:#fff;
  padding: 80px 0;
}
.social-video-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 800;
  font-size: 12px;
  opacity: .95;
  margin-bottom: 10px;
}
.social-video-title{
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  text-shadow: 0 10px 40px rgba(0,0,0,0.35);
  margin-bottom: 10px;
}
.social-video-lead{
  max-width: 760px;
  opacity: .92;
  line-height: 1.7;
}

/* Gallery */
.social-gallery-grid img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  -radius: 16px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

/* Process steps */
.social-step{
  background: var(--surface-color);
  -radius: 18px;
  : 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
}
.social-step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  -radius: 14px;
  font-weight: 900;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  : 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 12px;
}
.social-step h5{ font-weight: 900; margin-bottom: 8px; }
.social-step p{ margin:0; opacity:.85; line-height:1.65; }

/* CTA */
.social-cta{
  position: relative;
  padding: 100px 0;
  overflow:hidden;
}
.social-cta-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
}
.social-cta-shade{
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(6,6,6,.55), rgba(6,6,6,.72));
}
.social-cta-inner{ position: relative; z-index:2; }
.social-cta-card{
  max-width: 940px;
  margin: 0 auto;
  -radius: 22px;
  padding: 28px;
  : 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color:#fff;
  text-align:center;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}
.social-cta-kicker{
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: .95;
  margin-bottom: 10px;
}
.social-cta-title{
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  margin-bottom: 10px;
}
.social-cta-lead{
  max-width: 760px;
  margin: 0 auto 18px auto;
  opacity: .92;
  line-height: 1.7;
}
.social-cta-actions{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap: wrap;
}
#production-packages {
  min-height: auto !important;
  height: auto !important;
}

#production-packages .tab-content,
#production-packages .tab-pane {
  min-height: auto !important;
}
/* Responsive tweaks */
@media (max-width: 991px){
  .social-proof{ grid-template-columns: 1fr; max-width: 520px; }
  .social-video-wrap, .social-video-overlay{ min-height: 420px; }
  .social-gallery-grid img{ height: 180px; }
}
@media (max-width: 575px){
  .social-video-wrap, .social-video-overlay{ min-height: 360px; }
}

@media (max-width: 576px){
	#about {padding-top: 20px;
	padding-bottom: 40px;}
}

@media (max-width: 991px){
	.how-video-placeholder {margin-top: 20px;}
}

@media (max-width: 768px){
	.how-video-placeholder {margin-top: 20px;}
}

@media (max-width: 576px){
	.how-video-placeholder {margin-top: 20px;}
}

@media (max-width: 768px) {
  .corp-hero {
    height: auto;
    min-height: 600px;
    padding-top: 80px;
    padding-bottom: 40px;
    align-items: center;
  }
  .corp-hero-inner {
    text-align: center;
    padding: 0 20px 40px 20px;
  }
  .corp-hero-title {
    font-size: 1.6rem;
  }
  .corp-hero-lead {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .corp-proof {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }
  .corp-proof-item {
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .social-proof {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }
	
  .social-proof-item {
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .profile-metrics {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }
	
  .profile-metrics-item {
    border-radius: 12px;
  }
}

#production-packages,
#production-packages * {
  min-height: auto !important;
  height: auto !important;
  overflow: visible !important;
}
/*--------------------------------------------------------------
# End of CSS
--------------------------------------------------------------*/