@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('rtl.css');

:root {
  /* Primary Brand Colors */
  --ubisky-deep-blue:    #0A1628;   /* Hero backgrounds, nav */
  --ubisky-royal-blue:   #1A3A6B;   /* Sections, cards */
  --ubisky-electric:     #0066FF;   /* Primary CTA buttons, accents */
  --ubisky-cyan:         #00D4FF;   /* Highlights, gradients */
  --ubisky-violet:       #7C3AED;   /* AI/Tech sections accent */

  /* Neutral & Utility */
  --ubisky-white:        #FFFFFF;
  --ubisky-off-white:    #F4F7FF;
  --ubisky-light-gray:   #E8EDF5;
  --ubisky-mid-gray:     #8A96AA;
  --ubisky-dark-text:    #1A1A2E;

  /* Status Colors */
  --success:             #10B981;
  --warning:             #F59E0B;
  --danger:              #EF4444;

  /* Gradients */
  --gradient-hero:       linear-gradient(135deg, #0A1628 0%, #1A3A6B 50%, #0066FF 100%);
  --gradient-card:       linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  --gradient-cta:        linear-gradient(90deg, #0066FF, #00D4FF);
  --gradient-ai:         linear-gradient(135deg, #7C3AED, #0066FF);

  /* Typography */
  --font-heading:  'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  /* Type Scale */
  --text-hero:     clamp(2.5rem, 6vw, 5rem);      /* Main hero headline */
  --text-h1:       clamp(2rem, 4vw, 3.5rem);
  --text-h2:       clamp(1.5rem, 3vw, 2.5rem);
  --text-h3:       clamp(1.25rem, 2vw, 1.75rem);
  --text-body:     1rem;
  --text-small:    0.875rem;
  --text-xs:       0.75rem;
  
  /* Layout */
  --container-width: 1280px;
  --header-height: 80px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--ubisky-off-white);
  color: var(--ubisky-dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 9999px; /* Pill shape */
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-heading);
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--ubisky-white);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ubisky-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.section {
  padding: 80px 0;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dark Header Text (for light backgrounds) */
.header.dark-text:not(.scrolled) .nav-link,
.header.dark-text:not(.scrolled) .logo,
.header.dark-text:not(.scrolled) .mobile-menu-toggle {
  color: var(--ubisky-deep-blue);
}

.header.dark-text:not(.scrolled) .nav-link:hover {
  color: var(--ubisky-electric);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ubisky-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  color: var(--ubisky-electric);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-link:hover {
  color: var(--ubisky-white);
}

.nav-item.has-dropdown {
  position: relative;
  cursor: pointer;
}

.nav-item.has-dropdown > .nav-link::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.8em;
}

/* Dropdown Menu (Mega Menu Base) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ubisky-white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  color: var(--ubisky-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  color: var(--ubisky-white);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ubisky-cyan);
}

.hero h1 {
  font-size: var(--text-hero);
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(to right, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.trust-bar {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  z-index: 1;
  perspective: 1200px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dashboard Mockup (CSS-only 3D Illustration) */
.dashboard-container {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: rgba(20, 30, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    display: flex;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.dashboard-container:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Sidebar */
.dash-sidebar {
    width: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.dash-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-icon.active {
    background: var(--ubisky-electric);
    color: white;
}

/* Main Content */
.dash-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.dash-title {
    width: 120px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.dash-profile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ubisky-cyan);
    opacity: 0.8;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dash-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
    width: 50%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 8px;
}

.stat-value {
    width: 80%;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.dash-chart-area {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Simple CSS Chart Bars */
.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding: 20px 10px 0;
}

.chart-bar {
    width: 12%;
    background: linear-gradient(to top, var(--ubisky-electric), var(--ubisky-cyan));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

/* Floating Elements */
.float-card {
    position: absolute;
    background: rgba(20, 30, 50, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.float-card.top-right {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.float-card.bottom-left {
    bottom: 60px;
    left: -30px;
    animation-delay: 2s;
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-content h4 {
    font-size: 0.85rem;
    color: white;
    margin-bottom: 2px;
    font-family: var(--font-heading);
}

.float-content p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Section 3: Marquee Tech/Client Logos */
.marquee-section {
  background: var(--ubisky-white);
  padding: 60px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ubisky-light-gray);
}

.marquee-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.marquee-title {
  font-size: 1rem;
  color: var(--ubisky-mid-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ubisky-royal-blue);
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.marquee-item:hover {
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section 4: Product Showcase (SaaS Hub) */
.product-showcase {
  background: var(--ubisky-off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: var(--text-h2);
  color: var(--ubisky-deep-blue);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--ubisky-mid-gray);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 99px;
  background: var(--ubisky-white);
  border: 1px solid var(--ubisky-light-gray);
  color: var(--ubisky-mid-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-tab.active, .filter-tab:hover {
  background: var(--ubisky-royal-blue);
  color: var(--ubisky-white);
  border-color: var(--ubisky-royal-blue);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--ubisky-white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(26, 58, 107, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
  border-color: rgba(0, 102, 255, 0.3);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--ubisky-electric);
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ubisky-deep-blue);
}

.product-card p {
  color: var(--ubisky-mid-gray);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ubisky-dark-text);
  margin-bottom: 8px;
}

.product-features li i {
  color: var(--success);
  width: 16px;
  height: 16px;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-outline {
  border: 1px solid var(--ubisky-light-gray);
  color: var(--ubisky-royal-blue);
}

.btn-outline:hover {
  border-color: var(--ubisky-electric);
  color: var(--ubisky-electric);
  background: rgba(0, 102, 255, 0.05);
}

/* Section 5: AI Agents Showcase */
.ai-section {
  background: #050C16;
  color: var(--ubisky-white);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}

.ai-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ai-text h2 {
  font-size: var(--text-h2);
  margin-bottom: 24px;
  background: linear-gradient(to right, #fff, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.ai-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.ai-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.ai-feature i {
  color: var(--ubisky-violet);
}

.ai-visual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.chat-interface {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble {
  padding: 16px 20px;
  border-radius: 16px;
  max-width: 80%;
  font-size: 0.95rem;
}

.chat-bubble.ai {
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.3);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.user {
  background: rgba(0, 102, 255, 0.2);
  border: 1px solid rgba(0, 102, 255, 0.3);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Section 6: How It Works */
.how-it-works-section {
  background: var(--ubisky-white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ubisky-light-gray);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--ubisky-white);
  border: 2px solid var(--ubisky-electric);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--ubisky-electric);
  margin: 0 auto 24px;
  font-family: var(--font-heading);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.timeline-step h3 {
  font-size: 1.125rem;
  color: var(--ubisky-deep-blue);
  margin-bottom: 12px;
}

.timeline-step p {
  font-size: 0.95rem;
  color: var(--ubisky-mid-gray);
}

/* Section 7: Industries We Serve */
.industries-section {
  background: var(--ubisky-off-white);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.industry-card {
  background: var(--ubisky-white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.industry-card:hover {
  background: var(--ubisky-deep-blue);
  transform: translateY(-8px);
}

.industry-card:hover h3 {
  color: var(--ubisky-white);
}

.industry-card:hover .industry-icon {
  color: var(--ubisky-cyan);
  background: rgba(255, 255, 255, 0.1);
}

.industry-icon {
  width: 64px;
  height: 64px;
  background: var(--ubisky-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--ubisky-royal-blue);
  transition: all 0.3s ease;
}

.industry-card h3 {
  font-size: 1.1rem;
  color: var(--ubisky-deep-blue);
  transition: all 0.3s ease;
}

/* Section 8: Why Choose Ubisky */
.why-choose-section {
  background: #0B1120; /* Dark background to match theme */
  color: var(--ubisky-white);
}

.why-choose-section .section-title {
  color: var(--ubisky-white);
}

.why-choose-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.why-choose-section .feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.why-choose-section .feature-card h3 {
  color: var(--ubisky-white);
}

.why-choose-section .feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--ubisky-off-white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--ubisky-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--gradient-cta);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ubisky-white);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ubisky-deep-blue);
}

.feature-card p {
  color: var(--ubisky-mid-gray);
  font-size: 0.95rem;
}

/* Section 9: Testimonials */
.testimonials-section {
  background: var(--ubisky-deep-blue);
  color: var(--ubisky-white);
}

.testimonials-section .section-title {
  color: var(--ubisky-white);
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stars {
  color: var(--warning);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ubisky-mid-gray);
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--ubisky-white);
}

.author-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Section 10: Statistics / Numbers */
.stats-section {
  background: var(--gradient-cta);
  color: var(--ubisky-white);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Section 11: CTA Banner */
.cta-section {
  background: var(--ubisky-white);
  padding: 100px 0;
  text-align: center;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: var(--text-h2);
  color: var(--ubisky-deep-blue);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--ubisky-mid-gray);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Section 12: Footer */
.footer {
  background: var(--ubisky-deep-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--ubisky-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--ubisky-white);
}

.footer-brand p {
  margin: 16px 0;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-links a {
  color: var(--ubisky-white);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-info i {
  width: 18px;
  height: 18px;
  color: var(--ubisky-electric);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

/* About Page Styles */
.about-hero {
  padding: 160px 0 80px;
  background: var(--ubisky-deep-blue);
  color: var(--ubisky-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  background: linear-gradient(to right, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.about-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Story Timeline */
.story-section {
  background: var(--ubisky-white);
}

.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 2px solid var(--ubisky-light-gray);
}

.story-item {
  position: relative;
  margin-bottom: 60px;
}

.story-item:last-child {
  margin-bottom: 0;
}

.story-item::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ubisky-royal-blue);
  border: 4px solid var(--ubisky-white);
  box-shadow: 0 0 0 2px var(--ubisky-royal-blue);
}

.story-item .year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ubisky-royal-blue);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.story-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--ubisky-deep-blue);
}

.story-content p {
  color: var(--ubisky-mid-gray);
  line-height: 1.6;
}

/* Mission & Vision */
.mission-vision-section {
  background: var(--ubisky-off-white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  background: var(--ubisky-white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0, 102, 255, 0.1);
  color: var(--ubisky-royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-card h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--ubisky-deep-blue);
}

.mv-card p {
  color: var(--ubisky-mid-gray);
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Values */
.values-section {
  background: var(--ubisky-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--ubisky-off-white);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.value-card:hover {
  background: var(--ubisky-deep-blue);
  color: var(--ubisky-white);
  transform: translateY(-5px);
}

.value-card:hover h3 {
  color: var(--ubisky-white);
}

.value-card:hover p {
  color: rgba(255,255,255,0.8);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ubisky-white);
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ubisky-deep-blue);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--ubisky-mid-gray);
  line-height: 1.5;
}

/* Team */
.team-section {
  background: var(--ubisky-off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--ubisky-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-img-placeholder {
  height: 240px;
  background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ubisky-mid-gray);
}

.team-img-placeholder::after {
  content: 'Photo';
  font-size: 1.5rem;
  opacity: 0.3;
  font-weight: 700;
}

.team-info {
  padding: 24px;
}

.team-info h3 {
  font-size: 1.25rem;
  color: var(--ubisky-deep-blue);
  margin-bottom: 4px;
}

.team-info .role {
  color: var(--ubisky-royal-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-info .bio {
  font-size: 0.95rem;
  color: var(--ubisky-mid-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.social-links-small {
  display: flex;
  gap: 16px;
}

.social-links-small a {
  color: var(--ubisky-mid-gray);
  transition: color 0.3s ease;
}

.social-links-small a:hover {
  color: var(--ubisky-royal-blue);
}

/* Tech Stack */
.tech-stack-section {
  background: var(--ubisky-deep-blue);
  color: var(--ubisky-white);
  text-align: center;
}

.tech-stack-section .section-title {
  color: var(--ubisky-white);
}

.tech-stack-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.tech-item {
  background: rgba(255,255,255,0.05);
  padding: 12px 24px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.9);
}

.tech-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.tech-item i {
  width: 18px;
  height: 18px;
  color: var(--ubisky-cyan);
}

/* Certifications */
.certifications-section {
  background: var(--ubisky-white);
  text-align: center;
}

.cert-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-item i {
  width: 64px;
  height: 64px;
  color: var(--ubisky-royal-blue);
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(0, 102, 255, 0.05);
  border-radius: 12px;
}

.cert-item h4 {
  font-size: 1.1rem;
  color: var(--ubisky-deep-blue);
  margin-bottom: 4px;
  font-weight: 700;
}

.cert-item p {
  font-size: 0.9rem;
  color: var(--ubisky-mid-gray);
}

/* Offices */
.offices-section {
  background: var(--ubisky-off-white);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 32px;
}

.office-card {
  background: var(--ubisky-white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.office-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.office-card h3 {
  font-size: 1.5rem;
  color: var(--ubisky-deep-blue);
  margin-bottom: 24px;
}

.office-card p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ubisky-mid-gray);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.office-card i {
  color: var(--ubisky-royal-blue);
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-bar {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none; /* Hide for mobile initially */
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--ubisky-deep-blue);
    flex-direction: column;
    padding: 40px 20px;
    align-items: flex-start;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 10px 0 10px 20px;
    opacity: 1;
    visibility: visible;
    display: none; /* JS to toggle */
  }
  
  .nav-item.active-dropdown .dropdown-menu {
    display: block;
  }

  /* About Page Responsive */
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cert-grid {
    gap: 30px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
}

/* =========================================
   Services Page Styles
   ========================================= */

/* Services Hero */
.services-hero {
    background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.15) 0%, transparent 40%),
                var(--ubisky-deep-blue);
    position: relative;
    overflow: hidden;
}

/* Services Grid */
.services-grid-section {
    background: var(--ubisky-deep-blue);
    padding-bottom: 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--ubisky-cyan);
}

.service-icon i {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--ubisky-white);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--ubisky-mid-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.service-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-mono);
}

.service-meta span i {
    width: 14px;
    height: 14px;
    color: var(--ubisky-electric);
}

/* Process Section */
.process-section {
    background: var(--ubisky-off-white);
    color: var(--ubisky-deep-blue);
}

.process-section .section-title {
    color: var(--ubisky-deep-blue);
}

.process-section .section-subtitle {
    color: var(--ubisky-mid-gray);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(0, 102, 255, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 102, 255, 0.05);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--ubisky-white);
    border: 2px solid var(--ubisky-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--ubisky-electric);
    box-shadow: 0 8px 16px rgba(0, 102, 255, 0.1);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--ubisky-deep-blue);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--ubisky-mid-gray);
    line-height: 1.5;
}

/* Tech Stack Section */
.tech-stack-section {
    background: var(--ubisky-deep-blue);
    padding: 100px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tech-category h3 {
    color: var(--ubisky-cyan);
    margin-bottom: 20px;
    font-size: 1.25rem;
    border-left: 3px solid var(--ubisky-electric);
    padding-left: 16px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--ubisky-white);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-tags span:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: var(--ubisky-electric);
    transform: translateY(-2px);
}

/* Engagement Models */
.engagement-section {
    background: linear-gradient(180deg, var(--ubisky-deep-blue) 0%, #050c18 100%);
    padding-bottom: 120px;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.engagement-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ubisky-electric);
    transform: translateY(-5px);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--ubisky-electric);
    font-size: 1.5rem;
}

.engagement-card h3 {
    color: var(--ubisky-white);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.engagement-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .step-number {
        position: static;
        transform: none;
        font-size: 3rem;
        line-height: 1;
        opacity: 0.1;
    }

    .step-icon {
        margin: 0;
        min-width: 48px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .engagement-grid {
        grid-template-columns: 1fr;
    }
}


/* Products Page Styles */
.products-hero {
    background: radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
                var(--ubisky-deep-blue);
    position: relative;
    overflow: hidden;
}


/* =========================================
   Product Detail Page Styles
   ========================================= */

/* Product Hero */
.product-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 40%),
                var(--ubisky-deep-blue);
    position: relative;
    overflow: hidden;
}

.product-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-hero-text {
    flex: 1;
}

.product-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-stats-bar {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--ubisky-white);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
}

/* Mockup Container */
.mockup-container {
    width: 100%;
    max-width: 600px;
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-header {
    background: #0f172a;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-body {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.dashboard-preview {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

/* Tabs Section */
.product-tabs-section {
    background: var(--ubisky-off-white);
    color: var(--ubisky-deep-blue);
}

.product-tabs-section .section-title {
    color: var(--ubisky-deep-blue);
}

.product-tabs-section .section-subtitle {
    color: var(--ubisky-mid-gray);
}

.tabs-container {
    background: var(--ubisky-white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--ubisky-light-gray);
    overflow-x: auto;
}

.tab-btn {
    padding: 20px 32px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ubisky-mid-gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--ubisky-electric);
    background: rgba(0, 102, 255, 0.02);
}

.tab-btn.active {
    color: var(--ubisky-electric);
    border-bottom-color: var(--ubisky-electric);
}

.tab-content {
    display: none;
    padding: 60px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-text h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--ubisky-deep-blue);
}

.tab-text p {
    color: var(--ubisky-mid-gray);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--ubisky-deep-blue);
}

.feature-list li i {
    color: var(--success);
    width: 20px;
    height: 20px;
}

.tab-image {
    background: var(--ubisky-light-gray);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ubisky-mid-gray);
}

/* Pricing Section */
.pricing-section {
    background: var(--ubisky-white);
}

.pricing-section .section-title {
    color: var(--ubisky-deep-blue);
}

.pricing-section .section-subtitle {
    color: var(--ubisky-mid-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 60px auto 0;
}

.pricing-card {
    background: var(--ubisky-white);
    border: 1px solid var(--ubisky-light-gray);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ubisky-electric);
}

.pricing-card.featured {
    border: 2px solid var(--ubisky-electric);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.02) 0%, transparent 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ubisky-electric);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--ubisky-deep-blue);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--ubisky-mid-gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--ubisky-deep-blue);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 4px;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
}

.period {
    font-size: 1rem;
    color: var(--ubisky-mid-gray);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--ubisky-deep-blue);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--success);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Responsive Product Page */
@media (max-width: 992px) {
    .product-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .product-stats-bar {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-list li {
        justify-content: center;
    }
    
    .tab-content {
        padding: 32px;
    }
}


/* =========================================
   Contact Page Styles
   ========================================= */

.contact-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
                var(--ubisky-deep-blue);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.25rem;
    color: var(--ubisky-light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    background: var(--ubisky-off-white);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.contact-form-container {
    background: var(--ubisky-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    color: var(--ubisky-deep-blue);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--ubisky-deep-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--ubisky-light-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ubisky-electric);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--ubisky-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--ubisky-deep-blue);
    margin-bottom: 16px;
}

.info-card p {
    color: var(--ubisky-mid-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ubisky-electric);
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.support-card {
    background: linear-gradient(135deg, var(--ubisky-deep-blue), #1e293b);
    color: white;
    padding: 30px;
    border-radius: 16px;
}

.support-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.support-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.map-section {
    height: 400px;
    background: var(--ubisky-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ubisky-mid-gray);
}

.map-placeholder {
    text-align: center;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

/* --- New Pages (Services & Industries) --- */

/* Hero Base */
.page-hero {
    position: relative;
    padding-top: 180px; /* Account for fixed header + spacing */
    padding-bottom: 120px;
    background: var(--gradient-hero); /* Fallback */
    color: var(--ubisky-white);
    overflow: hidden;
    text-align: center;
}

/* Specific Hero Variants */
.services-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Slate/Dark */
}

.industry-hero {
    background: radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                #0B1120; /* Deep Dark Blue */
}

/* Hero Content */
.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* CTA Buttons Group */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Dark Sections */
.services-grid-section,
.industry-section {
    padding: 100px 0;
    background: #0B1120; /* Dark background matching hero */
    color: var(--ubisky-white);
}

.services-grid-section .section-header,
.industry-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-section .section-title,
.industry-section .section-title {
    color: var(--ubisky-white); /* Force white on dark bg */
}

.services-grid-section .section-subtitle,
.industry-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Cards (Dark Glassmorphism) */
.services-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card,
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon,
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--ubisky-cyan);
}

.service-icon i,
.feature-icon i {
    width: 32px;
    height: 32px;
}

.service-card h3,
.feature-card h3 {
    font-size: 1.5rem;
    color: var(--ubisky-white);
    margin-bottom: 16px;
}

.service-card p,
.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-meta {
    display: flex;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.service-meta i {
    width: 18px;
    height: 18px;
    color: var(--ubisky-electric);
}

@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark Theme Pricing Override */
.industry-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 60px auto 0;
}

.industry-section .pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: var(--ubisky-white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.industry-section .pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--ubisky-electric);
    background: rgba(255, 255, 255, 0.05);
}

.industry-section .pricing-header h3 {
    font-size: 1.5rem;
    color: var(--ubisky-white);
    margin-bottom: 8px;
}

.industry-section .pricing-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.industry-section .price .currency,
.industry-section .price .amount,
.industry-section .price .period {
    color: var(--ubisky-white);
}

.industry-section .pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.industry-section .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-section .pricing-features li:last-child {
    border-bottom: none;
}

.industry-section .pricing-features li i {
    color: var(--success);
    width: 20px;
    height: 20px;
}

.industry-section .pricing-card.featured {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid var(--ubisky-electric);
}

.feature-list-small {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list-small div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

