
/* =========================================
   Home Banner - Business Tools UI Concept
   (Strict Navy #041A50 & Teal #2F6F6F)
   ========================================= */

:root {
  --brand-navy: #041A50;
  --brand-teal: #2F6F6F;
  --bg-color: #FFFFFF;
  --text-main: #0f172a;
  --text-muted: #475569;
}

.premium-live-hero {
  position: relative;
  background-color: var(--bg-color);
  padding: 80px 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Subtle Gridline Overlay */
.live-grid-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(4, 26, 80, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(4, 26, 80, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
}

.live-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

/* ================= LEFT SIDE (Typography - Unchanged) ================= */
.hero-content-left { flex: 1.1; display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: #ffffff;
  border: 1px solid rgba(4, 26, 80, 0.1); padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; color: var(--brand-navy);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(4, 26, 80, 0.04);
}

.pulse-dot {
  width: 8px; height: 8px; background-color: var(--brand-teal);
  border-radius: 50%; box-shadow: 0 0 10px var(--brand-teal);
  animation: blinkPulse 2s infinite;
}

@keyframes blinkPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

.hero-title {
  font-size: 51px; font-weight: 800; color: var(--brand-navy);
  line-height: 1.3; letter-spacing: -1.5px; margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-navy) 20%, var(--brand-teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline;
}

.hero-subtitle {
  font-size: 1.2rem; color: var(--text-muted); line-height: 1.65;
  max-width: 650px; margin-bottom: 40px; font-weight: 400;
}

.hero-actions { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }

.btn-primary-elite, .btn-secondary-elite {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; font-size: 1.05rem; font-weight: 600;
  border-radius: 50px; text-decoration: none; transition: all 0.3s ease;
}

.btn-primary-elite {
  background-color: var(--brand-navy); color: #ffffff;
  box-shadow: 0 10px 25px rgba(4, 26, 80, 0.15); border: 1px solid var(--brand-navy);
}

.btn-primary-elite:hover {
  background-color: var(--brand-teal); border-color: var(--brand-teal);
  transform: translateY(-4px); box-shadow: 0 15px 35px rgba(47, 111, 111, 0.25); color: #ffffff;
}

.btn-secondary-elite {
  background-color: #ffffff; color: var(--brand-navy);
  border: 1px solid rgba(4, 26, 80, 0.15); box-shadow: 0 4px 10px rgba(4, 26, 80, 0.02);
}

.btn-secondary-elite:hover {
  border-color: var(--brand-navy); background-color: rgba(4, 26, 80, 0.02);
  transform: translateY(-4px);
}

.hero-trust-text {
  font-size: 0.95rem; color: var(--text-muted); display: flex;
  align-items: center; gap: 10px; font-weight: 500;
}
.hero-trust-text i { color: var(--brand-teal); font-size: 1.1rem; }


/* ================= RIGHT SIDE: NEW UI DASHBOARD CONCEPT ================= */
.hero-visual-right {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.dashboard-composition {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
}

/* Soft background glow */
.dash-aura {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(47, 111, 111, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

/* Base style for the UI Cards */
.ui-card {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(4, 26, 80, 0.08);
  border: 1px solid rgba(4, 26, 80, 0.05);
  padding: 24px;
  z-index: 2;
  animation: floatUI 6s ease-in-out infinite;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(4, 26, 80, 0.05);
}

.card-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-navy);
}

.icon-teal { color: var(--brand-teal); font-size: 1.2rem; }
.icon-navy { color: var(--brand-navy); font-size: 1.2rem; }

/* Card 1: Growth Chart (Back Right) */
.growth-chart-card {
  top: 0; right: 0;
  width: 280px;
  animation-delay: 0s;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  gap: 12px;
}

.chart-bars .bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  opacity: 0.85;
}

.bar-navy { background-color: var(--brand-navy); }
.bar-teal { background-color: var(--brand-teal); opacity: 1 !important; box-shadow: 0 -5px 15px rgba(47, 111, 111, 0.2); }

/* Card 2: Task List (Front Left) */
.task-list-card {
  bottom: 20px; left: 0;
  width: 300px;
  animation-delay: -3s; /* Staggered animation */
  z-index: 3;
}

.task-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.task {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.task i { font-size: 1.1rem; }

/* Card 3: Floating Metric Badge */
.ui-metric-badge {
  position: absolute;
  top: 15%; left: -20px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 30px rgba(4, 26, 80, 0.1);
  border: 1px solid rgba(4, 26, 80, 0.05);
  z-index: 4;
  animation: floatUI 5s ease-in-out infinite reverse;
}

.metric-icon {
  width: 36px; height: 36px;
  background: rgba(4, 26, 80, 0.05);
  color: var(--brand-navy);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
}

.metric-info { display: flex; flex-direction: column; }
.m-value { font-weight: 800; color: var(--brand-teal); font-size: 1.1rem; line-height: 1; }
.m-text { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

@keyframes floatUI {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .live-hero-container { flex-direction: column; text-align: center; gap: 60px; }
  .hero-content-left { align-items: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; width: 100%; }
  
  .dashboard-composition { width: 350px; height: 350px; margin: 0 auto; }
  .growth-chart-card { width: 240px; right: 0; }
  .task-list-card { width: 260px; left: 0; bottom: 0; }
  .ui-metric-badge { left: -60px; top: 5%; }
}

@media (max-width: 768px) {
  .premium-live-hero { padding: 100px 20px 60px 20px; }
  .hero-title { font-size: 2.6rem; letter-spacing: -0.5px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary-elite, .btn-secondary-elite { width: 100%; justify-content: center; }
  
  /* Mobile par Dashboard Wapas Laane aur Scale karne ka code */
  .hero-visual-right { min-height: 320px; margin-top: 30px; }
  .dashboard-composition { 
    display: block; /* Pehle none tha, ab wapas block kar diya */
    width: 320px; 
    height: 320px; 
    margin: 0 auto;
    transform: scale(0.9); /* Pure dashboard ko 90% chhota kar diya */
    transform-origin: center top;
  }
  .growth-chart-card { width: 220px; right: -10px; }
  .task-list-card { width: 240px; left: -10px; bottom: -70px; }
  .ui-metric-badge { left: -20px; top: -20%; }
}

@media (max-width: 480px) {
  /* Chhote mobile (like iPhone SE) ke liye thoda aur chhota */
  .dashboard-composition {
    transform: scale(0.8);
  }
}

/* Container: Ultra Clean */
.sv-wrapper {
    max-width: 1300px;
    margin: 80px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #041A50;
    background: #ffffff;
}

/* Header: Minimal & High-Impact */
.sv-header {
   
    justify-content: space-between;
    align-items: flex-end;

    border-bottom: 1px solid rgba(4, 26, 80, 0.1);
    padding-bottom: 30px;
    
}

.sv-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.9;
    margin: 0;
}

.sv-accent {
    color: #2F6F6F;
    font-style: italic; /* Modern consultancy touch */
}

.sv-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    max-width: 600px;
    text-transform: uppercase;
}

/* The Grid: Ribbon Layout (No Cards) */
.sv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0; /* Removing gaps for a seamless connected look */
}

.sv-item {
    padding: 50px 40px;
    border-left: 1px solid rgba(4, 26, 80, 0.1);
    border-bottom: 1px solid rgba(4, 26, 80, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Hover State: Subtle Teal Glow */
.sv-item:hover {
    background: rgba(47, 111, 111, 0.02);
}

.sv-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sv-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: #2F6F6F;
    letter-spacing: 2px;
}

.sv-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    min-height: 4rem;
}

.sv-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px;
}

/* Link: The "Ribbon" Interaction */
.sv-link {
    text-decoration: none;
    color: #041A50;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sv-link-bold {
    color: #2F6F6F;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animated Ribbon Line */
.sv-animated-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #2F6F6F;
    transition: width 0.5s ease;
}

.sv-item:hover .sv-animated-line {
    width: 100%;
}

/* Footer: Big Bold Statement */
.sv-footer-cta {

    text-align: center;
}

.sv-footer-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.6;
}

.sv-big-cta {
    font-size: 20px;
    font-weight: 900;
    color: #041A50;
    text-decoration: none;
    border: 2px solid #041A50;
    padding: 25px 60px;
    border-radius: 100px; /* Capsule style */
    transition: all 0.4s ease;
    display: inline-block;
}

.sv-big-cta:hover {
    background: #041A50;
    color: #ffffff;
    transform: scale(1.05);
}

/* Mobile: Ensuring visual same feel */
@media (max-width: 768px) {
    .sv-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .sv-item { border-left: none; border-bottom: 1px solid rgba(4, 26, 80, 0.1); padding: 40px 20px; }
}



    /* Container */
.unified-experience {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: 'Inter', system-ui, sans-serif;
    color: #041A50;
    background: #ffffff;
}

/* Header Section */
.ue-header {
    margin-bottom: 80px;
    text-align: center;
}

.ue-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.ue-accent {
    color: #2F6F6F;
}

.ue-sub-title {
    font-size: 1.1rem;
    opacity: 0.6;
    font-weight: 500;
    max-width: 600px;
}

/* Grid System - Responsive but Visual Identity is Same */
.ue-grid {
    display: grid;
    /* Desktop: 3 columns | Mobile: 1 column */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px 40px;
}

/* Item Structure */
.ue-item {
    display: flex;
    gap: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

/* The Unified Line/Dot Identity */
.ue-line-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.ue-dot {
    width: 12px;
    height: 12px;
    background: #2F6F6F;
    border-radius: 50%;
    margin-top: 6px;
    transition: all 0.3s ease;
}

.ue-line {
    width: 2px;
    flex-grow: 1;
    background: rgba(47, 111, 111, 0.15);
    margin-top: 10px;
    transition: background 0.3s ease;
}

/* Content Area */
.ue-content {
    padding-bottom: 20px;
}

.ue-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2F6F6F;
    margin-bottom: 12px;
    opacity: 0.7;
}

.ue-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.ue-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

/* Unified Hover Effect - Same for Mobile/Desktop */
.ue-item:hover .ue-dot {
    background: #041A50;
    transform: scale(1.5);
    box-shadow: 0 0 0 5px rgba(47, 111, 111, 0.1);
}

.ue-item:hover .ue-line {
    background: #2F6F6F;
}

.ue-item:hover .ue-title {
    color: #2F6F6F;
}

/* Responsive Fix - Keeping Design Language Identical */
@media (max-width: 768px) {
    .ue-grid {
        gap: 40px;
    }
    .ue-main-title {
        font-size: 2.2rem;
    }
    .ue-item {
        padding-left: 5px;
    }
}


/* Container Base */
.pc-container {
    max-width: 1200px;
    margin: 60px auto;
    font-family: 'Inter', sans-serif;
    color: #041A50;
    background-color: #fcfcfc;
}

/* Header */
.pc-header {
    text-align: center;
    margin-bottom: 60px;
}

.pc-main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.pc-accent {
    color: #2F6F6F;
}

.pc-subtext {
    font-size: 1.1rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Card Grid */
.pc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Individual Card Styling */
.pc-card {
    background: #ffffff;
    border: 1px solid rgba(4, 26, 80, 0.08);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 26, 80, 0.05);
    border-color: #2F6F6F;
}

.pc-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2F6F6F;
    margin-bottom: 25px;
    display: block;
}

.pc-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #041A50;
}

.pc-card-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

/* Kinetic Line on Hover */
.pc-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #2F6F6F;
    transition: width 0.4s ease;
}

.pc-card:hover .pc-hover-line {
    width: 100%;
}

/* Footer CTA Card */
.pc-footer-card {
    background: #041A50;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.pc-footer-note {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.pc-cta-btn {
    display: inline-block;
    background: #2F6F6F;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pc-cta-btn:hover {
    background: #ffffff;
    color: #041A50;
    transform: scale(1.05);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .pc-grid {
        grid-template-columns: 1fr;
    }
    .pc-card {
        padding: 30px;
    }
}
/* Main Container - Minimal Scroll */

h3.nv-link-title {
    color: #ffffff;
}
.nv-action-section {
    color: #041A50;
    overflow: hidden;
    padding: 0 15px;
}

.nv-layout-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Desktop: side-by-side */
    gap: 60px;
    min-height: 300px;
}

/* Left: Typography side */
.nv-content-side {
    flex: 1;
}

.nv-main-headline {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    margin: 0 0 25px 0;
}

.nv-accent-text {
    color: #2F6F6F;
    font-weight: 400;
    font-style: italic;
}

.nv-description {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 480px;
    margin: 0;
}

/* Right: Action side */
.nv-links-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Base Link Styling - No Card Feel */
.nv-impact-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 109px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

/* Teal Link */
.nv-teal-bg {
    background-color: #2F6F6F;
    color: #ffffff;
}

.nv-teal-bg:hover {
    background-color: #041A50; /* Hover par Navy - Bold Contrast */
    transform: translateX(20px);
}

/* Navy Link */
.nv-navy-bg {
    background-color: #041a50;
    color: #ffffff;
}

.nv-navy-bg:hover {
    background-color: #2F6F6F; /* Hover par Teal - Bold Contrast */
    color: #ffffff;
    transform: translateX(20px);
}

/* Inner Text Elements */
.nv-small-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.6;
    display: block;
    margin-bottom: 10px;
}

.nv-link-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.nv-icon-arrow {
    font-size: 2.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.nv-impact-link:hover .nv-icon-arrow {
    transform: scale(1.3) translateX(10px);
}

/* Mobile: Adaptive Stack */
@media (max-width: 900px) {
    .nv-layout-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .nv-content-side, .nv-links-side {
        width: 100%;
        flex: none;
    }
    .nv-impact-link:hover {
        transform: scale(1.02); /* Mobile par horizontal movement ki jagah scale better hai */
    }
    .nv-main-headline {
        font-size: 2.5rem;
    }
}

/* Reset & Base */
.premium-pillar-section {
    background: #ffffff;
    padding: 120px 0;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #041A50;
}

.pp-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header: Sophisticated Minimalism */
.pp-header {
    text-align: center;
    margin-bottom: 100px;
}

.pp-main-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 20px;
    line-height: 1;
}

.pp-accent {
    color: #2F6F6F;
    font-weight: 300;
    font-style: italic;
}

.pp-sub-title {
    font-size: 1.15rem;
    opacity: 0.5;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 500;
}

/* The Pillars Logic (Truly Unique) */
.pp-pillars {
    display: flex;
    border-top: 1px solid rgba(4, 26, 80, 0.1);
    border-bottom: 1px solid rgba(4, 26, 80, 0.1);
}

.pp-column {
    flex: 1;
    padding: 80px 50px;
    position: relative;
    border-right: 1px solid rgba(4, 26, 80, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: #ffffff;
    overflow: hidden;
}

.pp-column:last-child {
    border-right: none;
}

/* Interaction: The "Live" Feel */
.pp-column:hover {
    flex: 1.4; /* Pillar expands slightly */
    padding-top: 100px; /* Moves content down/up for kinetic feel */
}

.pp-bg-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(to bottom, rgba(47, 111, 111, 0.05), transparent);
    transition: height 0.6s ease;
    z-index: 1;
}

.pp-column:hover .pp-bg-glow {
    height: 100%;
}

/* Content Details */
.pp-content {
    position: relative;
    z-index: 2;
}

.pp-meta {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2F6F6F;
    margin-bottom: 30px;
}

.pp-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.pp-text {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 35px;
}

.pp-btn {
    text-decoration: none;
    color: #041A50;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.pp-column:hover .pp-title {
    color: #2F6F6F;
}

/* Footer: Modern Signature CTA */
.pp-footer {
    margin-top: 80px;
    display: flex;
    justify-content: flex-end;
}

.pp-signature-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    color: #041A50;
}

.pp-cta-text {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.pp-cta-line {
    width: 60px;
    height: 3px;
    background: #2F6F6F;
    transition: width 0.4s ease;
}

.pp-signature-cta:hover .pp-cta-line {
    width: 150px;
}

/* Mobile Fix: Keeping the Vibe same */
@media (max-width: 900px) {
    .pp-pillars { flex-direction: column; }
    .pp-column { 
        border-right: none; 
        border-bottom: 1px solid rgba(4, 26, 80, 0.1); 
        padding: 50px 20px;
    }
    .pp-column:hover { flex: none; padding-top: 50px; }
    .pp-title { font-size: 2rem; }
    .pp-footer { justify-content: center; }
}