

/* FontAwesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

/* Remove default text decorations for Apple-style clean links and buttons */
a, button {
  text-decoration: none;
  text-decoration-line: none;
  text-decoration-style: none;
  text-decoration-color: transparent;
}

a:hover, button:hover,
a:focus, button:focus,
a:active, button:active {
  text-decoration: none;
  text-decoration-line: none;
  text-decoration-style: none;
  text-decoration-color: transparent;
}

/* =========================
   APPLE GLASS NAVBAR
========================= */

.apple-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 44px;
  background: rgba(22, 22, 23, 0.65);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
  max-width: 1024px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}


/* Logo */
.logo {
  color: #57575a;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.logo span {
  color: #12679a;
}

/* =========================
   DESKTOP NAV
========================= */

.desktop-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.desktop-nav a {
  font-size: 12px;
  color: #f5f5f7;
  text-decoration: none;
  opacity: 0.85;
}

.desktop-nav a:hover {
  opacity: 1;
}

/* Dropdown */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 24px;
  background: rgba(22,22,23,0.9);
  backdrop-filter: saturate(180%) blur(20px);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown h4 {
  color: #f5f5f7;
  font-size: 14px;
  margin-bottom: 12px;
}

.dropdown a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  opacity: 0.8;
}

.dropdown a:hover {
  opacity: 1;
}

/* =========================
   HAMBURGER
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #f5f5f7;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
  /* Allow touch events to pass through when not active */
  pointer-events: none;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  /* Only capture touch events when active */
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: rgba(22,22,23,0.95);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: 0.35s cubic-bezier(0.77,0,0.175,1);
  z-index: 1000;
  padding-top: 60px;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a,
.mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 16px;
  color: #f5f5f7;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
}

.mobile-toggle {
  cursor: pointer;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.2);
}

.mobile-submenu.active {
  max-height: 400px;
}

.mobile-submenu a {
  padding-left: 48px;
  font-size: 14px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  body.menu-open {
    position: fixed;
    width: 100%;
    /* Remove overflow: hidden to allow scrolling */
    overflow: visible;
    /* Prevent horizontal scroll but allow vertical */
    overflow-x: hidden;
    overflow-y: auto;
    /* Ensure touch scrolling works */
    touch-action: pan-y;
    /* Set height to prevent content jump */
    height: 100vh;
  }
}


/* iPad Pro specific fixes */
@media (max-width: 1199px) and (min-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  /* Ensure no horizontal overflow on iPad Pro but allow vertical scrolling */
  html, body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
  }
  
  /* Fix container widths for iPad Pro */
  .finance-header-container,
  .web-header-container,
  .network-hero-container,
  .finance-details-container,
  .how-it-works-container,
  .consultants-container,
  .web-services-container,
  .features-container,
  .cta-container,
  .network-security-container,
  .asset-security-container,
  .security-policy-container,
  .utm-security-container,
  .why-shop-container,
  .other-products-container {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
  }
  
  /* Fix sections to prevent overflow */
  .finance-header,
  .web-header,
  .network-hero-section,
  .how-it-works-section,
  .finance-details-section,
  .consultants-section,
  .web-services-section,
  .features-section,
  .cta-section,
  .network-security-section,
  .asset-security-section,
  .security-policy-section,
  .utm-security-section,
  .apple-products,
  .why-shop-pc-centre,
  .other-products-section {
    width: 100%;
    overflow-x: hidden;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Fix grid layouts for iPad Pro */
  .requirements-grid,
  .finance-details-grid,
  .consultants-grid,
  .services-grid,
  .features-grid,
  .utm-features-grid,
  .hero-grid-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  /* Ensure hero grids don't overflow */
  .hero-grid {
    padding: 0.05%;
    overflow-x: hidden;
  }
}


/* Video Styling */

/* Full-width container, optional full viewport height */
.video-container {
  width: 100vw;
  height: 100vh; /* Optional: make the video fill the viewport */
  overflow: hidden;
  position: relative;
}

/* Video styling */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills container, crops excess, maintains aspect ratio */
  display: block;
}

/* Optional: keep video centered */
.hero-video::cue {
  text-align: center;
}

/* Responsive tweaks if needed */
@media (max-width: 768px) {
  .video-container {
    height: auto; /* Adjust height for small devices if full viewport is too tall */
  }
}

@media (max-width: 1200px) {
  .video-container {
    height: 80vh; /* Example: slightly smaller than full height for tablets */
  }
}





/* Hero Grid Styling */
.hero-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1%;
  min-height: 100vh;
}


.box picture,
.box img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;      /* center the image */
  display: block;
}

.box {
  background-color: rgb(2, 2, 255);
  border-radius: 16px;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.box:hover {
  transform: scale(1.02);
}


/* Mobile First - Single Column Layout */


.hero-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 800px;
  margin-top: 1em;
  grid-template-areas: 
    "box-1" 
    "box-2"
    "box-3"
    "box-4";
}



/* Small tablets (480px and up) - 2 columns */
@media (min-width: 30em) {
  .hero-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    max-width: 1000px;
    grid-template-areas: 
      "box-1 box-2"
      "box-3 box-4";
  }
}


/* Large tablets (768px and up) - 2 columns */
@media (min-width: 48em) {
  .hero-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    max-width: 1100px;
    grid-template-areas: 
      "box-1 box-2"
      "box-3 box-4";
  }
}

/* Small desktops (1024px and up) - 2 columns */
@media (min-width: 64em) {
  .hero-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    max-width: 1200px;
    grid-template-areas: 
      "box-1 box-2"
      "box-3 box-4";
  }
}


/* Large desktops (1200px and up) - Full width boxes */
@media (min-width: 75em) {
  .hero-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1400px;
    grid-template-areas: 
      "box-1 box-2"
      "box-3 box-4";
  }
  
  .box {
    aspect-ratio: 1;
    min-height: 350px;
  }
}


/* Extra large desktops (1440px and up) - Maximum width utilization */
@media (min-width: 90em) {
  .hero-grid-container {
    max-width: 1600px;
    gap: 1.5rem;
    grid-template-areas: 
      "box-1 box-2"
      "box-3 box-4";
  }
  
  .hero-grid {
    padding: 0.05%;
  }
  
  .box {
    aspect-ratio: 1;
    min-height: 400px;
  }
}

/* Latest Apple Products Section */
.apple-products {
  padding: 4rem 2rem;
  background-color: #f5f5f7;
}

.apple-products h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 2rem;
  text-align: left;
}

/* Keep products horizontal on all devices */
.products-container {
  position: relative;
  max-width: 100%;
}

.products-scroll-container {
  overflow-x: auto;   /* Allow horizontal scroll */
  overflow-y: hidden; /* Prevent vertical scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
}

.products-scroll-container::-webkit-scrollbar {
  display: none;
}

.products-wrapper {
  display: flex;      /* Keep items in a row */
  gap: 1.5rem;
  width: max-content; /* Width grows with content */
  padding-bottom: 0.5rem;
}

.product-box {
  flex: 0 0 280px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-box:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.9rem;
  color: #6e6e73;
  line-height: 1.4;
}

/* Scroll Arrows */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: #1d1d1f;
}

.scroll-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.scroll-left {
  left: -25px;
}

.scroll-right {
  right: -25px;
}

.scroll-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.scroll-arrow:disabled:hover {
  transform: translateY(-50%) scale(1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */

/* Large tablets and desktops */
@media (min-width: 768px) {
  .apple-products h1 {
    font-size: 3rem;
  }
  
  .product-box {
    flex: 0 0 320px;
  }
  
  .product-image {
    height: 240px;
  }
  
  .scroll-left {
    left: -25px;
  }
  
  .scroll-right {
    right: -25px;
  }
}

/* Small tablets */
@media (max-width: 767px) {
  .apple-products {
    padding: 3rem 1.5rem;
  }
  
  .apple-products h1 {
    font-size: 2rem;
  }
  
  .products-wrapper {
    gap: 1rem;
  }
  
  .product-box {
    flex: 0 0 250px;
  }
  
  .scroll-arrow {
    width: 40px;
    height: 40px;
  }
  
  .scroll-left {
    left: -20px;
  }
  
  .scroll-right {
    right: -20px;
  }
}

/* Mobile phones - Keep horizontal scrolling, no vertical stacking */
@media (max-width: 640px) {
  .apple-products {
    padding: 2rem 1rem;
  }

  .apple-products h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  /* Keep horizontal scrolling instead of vertical */
  .products-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;  /* Remove height limit */
  }

  .products-wrapper {
    display: flex;  /* Keep horizontal layout */
    gap: 1rem;
    width: max-content;
  }

  .product-box {
    flex: none;
    width: 200px; /* Optional: fix width for each product box */
  }

  /* Show arrows again if needed */
  .scroll-arrow {
    display: block;
  }
}


/* Extra large screens */
@media (min-width: 1440px) {
  .product-box {
    flex: 0 0 350px;
  }
  
  .product-image {
    height: 260px;
  }
}

/* =========================
   WHY SHOP AT PC CENTRE SECTION
========================= */

.why-shop-pc-centre {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
  position: relative;
}

.why-shop-pc-centre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.why-shop-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-shop-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}


/* Desktop & Tablet Layout - Horizontal Scroll */
.why-shop-container-scroll {
  position: relative;
  max-width: 100%;
}

.why-shop-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
}

.why-shop-scroll-container::-webkit-scrollbar {
  display: none;
}

.why-shop-wrapper {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding-bottom: 0.5rem;
}


/* Card Styling */
.why-shop-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  flex: 0 0 350px;
  max-width: 350px;
}

.why-shop-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.why-shop-card:hover .card-image img {
  transform: scale(1.05);
}

/* Card Content */
.card-content {
  padding: 2rem;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-content p {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


/* Learn More Button */

.learn-more-btn {
  display: block;
  margin: 1.5rem auto;
  padding: 0.75rem 1.5rem;
  background: #0a7c5a;
  border: 1px solid #0a7c5a;
  border-radius: 25px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(10, 124, 90, 0.3);
}

/* Scroll Arrows for Why Shop Section */
.why-scroll-left,
.why-scroll-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: #1d1d1f;
}

.why-scroll-left:hover,
.why-scroll-right:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.why-scroll-left:disabled,
.why-scroll-right:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.why-scroll-left:disabled:hover,
.why-scroll-right:disabled:hover {
  transform: translateY(-50%) scale(1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.why-scroll-left {
  left: -25px;
}

.why-scroll-right {
  right: -25px;
}

.learn-more-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.learn-more-btn:focus {
  outline: none;
  ring: 2px solid #007aff;
  ring-offset: 2px;
}


/* Tablet Styles */
@media (max-width: 1023px) and (min-width: 768px) {
  .why-shop-pc-centre {
    padding: 4rem 1.5rem;
  }
  
  .why-shop-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  
  .why-shop-wrapper {
    gap: 1.5rem;
  }
  
  .why-shop-card {
    flex: 0 0 300px;
    max-width: 300px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .learn-more-btn {
    bottom: 1rem;
    left: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}


/* Mobile Styles */
@media (max-width: 767px) {
  .why-shop-pc-centre {
    padding: 3rem 1rem;
  }
  
  .why-shop-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
  }
  
  /* Keep horizontal scrolling instead of vertical stacking */
  .why-shop-scroll-container {
    overflow-x: auto;  /* Allow horizontal scroll */
    overflow-y: hidden; /* Prevent vertical scroll */
    max-height: none;   /* Remove vertical height limit */
    display: flex;      /* Flex container ensures horizontal layout */
    gap: 1.5rem;        /* Space between cards */
    padding-bottom: 1rem;
  }
  
  .why-shop-wrapper {
    display: flex;      /* Keep cards in a row */
    gap: 1.5rem;
    width: max-content; /* Width grows with content */
  }
  
  .why-shop-card {
    flex: none;       /* Prevent stretching */
    width: 250px;     /* Optional fixed width for consistency */
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-content h3 {
    font-size: 1.25rem;
  }
  
  .card-content p {
    font-size: 0.95rem;
  }
  
  .learn-more-btn {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    width: fit-content;
  }
  
  /* Show arrows for horizontal navigation */
  .why-scroll-left,
  .why-scroll-right {
    display: block;
  }
}


/* Extra Small Mobile */
@media (max-width: 480px) {
  .why-shop-pc-centre {
    padding: 2.5rem 0.75rem;
  }
  
  .why-shop-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
  
  .card-content {
    padding: 1.25rem;
  }
  
  .card-content h3 {
    font-size: 1.125rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
}

/* Accessibility and Hover Enhancements */
@media (prefers-reduced-motion: reduce) {
  .why-shop-card,
  .card-image img,
  .learn-more-btn {
    transition: none;
  }
  
  .why-shop-card:hover {
    transform: none;
  }
}

/* Focus styles for accessibility */
.why-shop-card:focus-within {
  outline: 2px solid #007aff;
  outline-offset: 4px;
}


/* High contrast mode support */
@media (prefers-contrast: high) {
  .why-shop-card {
    border: 2px solid #000;
  }
  
  .learn-more-btn {
    border: 2px solid #000;
    background: #fff;
  }
}


/* =========================
   NETWORK PAGE STYLES
========================= */

/* Hero Section */
.network-hero-section {
  background: linear-gradient(135deg, #57575a 0%, #404040 50%, #007AFF 100%);
  color: white;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.network-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.network-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.network-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.network-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.network-hero-visual {
  margin-top: 2rem;
  opacity: 0.8;
}

/* Section Titles */
.network-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007AFF;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  position: relative;
}

.network-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;

  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  border-radius: 2px;
}

/* Network Security Section */
.network-security-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.network-security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(87, 87, 90, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.network-security-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.network-security-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(87, 87, 90, 0.1);
  border: 1px solid rgba(87, 87, 90, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.network-security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
}

.network-security-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(87, 87, 90, 0.15);
}

.network-security-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.network-security-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.network-security-card:hover .network-security-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.network-security-content p {
  font-size: 1.1rem;
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.network-security-content p:last-child {
  margin-bottom: 0;
}

/* Asset Security Section */
.asset-security-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #57575a 0%, #404040 100%);
  color: white;
  position: relative;
}

.asset-security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.asset-security-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.asset-security-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.asset-security-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.asset-security-divider {
  height: 2px;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  margin: 2rem 0;
  border-radius: 1px;
  opacity: 0.8;
}

.asset-security-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.asset-security-icon {
  width: 120px;
  height: 120px;
  background: rgba(0, 122, 255, 0.1);
  border: 2px solid rgba(0, 122, 255, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5AC8FA;
  transition: all 0.3s ease;
}

.asset-security-section:hover .asset-security-icon {
  transform: scale(1.05);
  background: rgba(0, 122, 255, 0.2);
  border-color: rgba(0, 122, 255, 0.5);
}

/* Security Policy Section */
.security-policy-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.security-policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(87, 87, 90, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.security-policy-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.security-policy-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 12px 40px rgba(87, 87, 90, 0.1);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.security-policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  border-radius: 24px;
  z-index: -1;
  margin: -2px;
}

.security-policy-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 22px;
  z-index: -1;
}

.security-policy-card p {
  font-size: 1.1rem;
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.security-policy-card p:last-child {
  margin-bottom: 0;
}

/* UTM Security Section */
.utm-security-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #57575a 0%, #404040 100%);
  color: white;
  position: relative;
}

.utm-security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.utm-security-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.utm-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.utm-intro p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.utm-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.utm-feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 122, 255, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.utm-feature-item:hover {
  transform: translateY(-4px);
  background: rgba(0, 122, 255, 0.1);
  border-color: rgba(0, 122, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.2);
}

.utm-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.utm-feature-item:hover .utm-feature-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.utm-feature-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

.utm-conclusion {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 122, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin-top: 4rem;
  backdrop-filter: blur(10px);
}

.utm-conclusion p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.utm-conclusion p:last-child {
  margin-bottom: 0;
}

/* Text Highlights */
.highlight-azure {
  color: #007AFF;
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* =========================
   RESPONSIVE NETWORK STYLES
========================= */

/* Large Desktop */
@media (min-width: 1440px) {
  .network-hero-title {
    font-size: 4rem;
  }
  
  .network-section-title {
    font-size: 3rem;
  }
  
  .network-security-card {
    padding: 4rem 3rem;
  }
  
  .asset-security-grid {
    gap: 5rem;
  }
}

/* Desktop */
@media (max-width: 1439px) and (min-width: 1024px) {
  .utm-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .network-hero-section {
    padding: 4rem 1.5rem 3rem;
  }
  
  .network-hero-title {
    font-size: 2.75rem;
  }
  
  .network-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .network-section-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
  
  .network-security-section,
  .asset-security-section,
  .security-policy-section,
  .utm-security-section {
    padding: 4rem 1.5rem;
  }
  
  .network-security-card {
    padding: 2.5rem 2rem;
  }
  
  .network-security-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .asset-security-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .security-policy-card {
    padding: 2.5rem 2rem;
  }
  
  .utm-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .utm-conclusion {
    padding: 2.5rem 2rem;
  }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  .network-hero-section {
    padding: 3rem 1rem 2.5rem;
  }
  
  .network-hero-title {
    font-size: 2.25rem;
  }
  
  .network-hero-subtitle {
    font-size: 1rem;
  }
  
  .network-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .network-security-section,
  .asset-security-section,
  .security-policy-section,
  .utm-security-section {
    padding: 3rem 1rem;
  }
  
  .network-security-card {
    padding: 2rem 1.5rem;
  }
  
  .asset-security-text p {
    font-size: 1rem;
  }
  
  .security-policy-card {
    padding: 2rem 1.5rem;
  }
  
  .security-policy-card p {
    font-size: 1rem;
  }
  
  .utm-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .utm-feature-item {
    padding: 1.5rem 1rem;
  }
  
  .utm-conclusion {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
  }
  
  .utm-intro p {
    font-size: 1.1rem;
  }
}

/* Mobile Small */
@media (max-width: 479px) {
  .network-hero-section {
    padding: 2rem 0.75rem 1.5rem;
  }
  
  .network-hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .network-hero-subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .network-hero-visual {
    margin-top: 1.5rem;
  }
  
  .network-hero-visual svg {
    width: 80px;
    height: 80px;
  }
  
  .network-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .network-security-section,
  .asset-security-section,
  .security-policy-section,
  .utm-security-section {
    padding: 2rem 0.75rem;
  }
  
  .network-security-card {
    padding: 1.5rem 1rem;
  }
  
  .network-security-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .network-security-icon {
    width: 50px;
    height: 50px;
    align-self: center;
  }
  
  .network-security-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .network-security-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .asset-security-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .asset-security-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .asset-security-divider {
    margin: 1.5rem 0;
  }
  
  .asset-security-icon {
    width: 80px;
    height: 80px;
  }
  
  .asset-security-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .security-policy-card {
    padding: 1.5rem 1rem;
  }
  
  .security-policy-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .utm-intro {
    margin-bottom: 2.5rem;
  }
  
  .utm-intro p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .utm-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .utm-feature-item {
    padding: 1.25rem 1rem;
  }
  
  .utm-feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .utm-feature-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .utm-feature-item span {
    font-size: 1rem;
  }
  
  .utm-conclusion {
    margin-top: 2.5rem;
    padding: 1.5rem 1rem;
  }
  
  .utm-conclusion p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .network-security-card,
  .network-security-icon,
  .asset-security-icon,
  .utm-feature-item,
  .utm-feature-icon {
    transition: none;
  }
  
  .network-security-card:hover,
  .asset-security-section:hover .asset-security-icon,
  .utm-feature-item:hover {
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .network-security-card {
    border: 2px solid #57575a;
  }
  
  .network-security-icon,
  .asset-security-icon,
  .utm-feature-icon {
    background: #007AFF;
    border: 2px solid #000;
  }
  
  .security-policy-card {
    border: 2px solid #007AFF;
  }
  
  .utm-feature-item {
    border: 2px solid #007AFF;
  }
}


/* =========================
   IPHONE PAGE STYLES
========================= */

/* iPhone Overview Section */
.iphone-overview-section {
  padding: 5rem 2rem 4rem;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.iphone-overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.iphone-overview-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  text-align: left;
  position: relative;
}

.iphone-overview-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  border-radius: 1px;
}

.iphone-icon-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  margin-top: 2rem;
}

.iphone-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.iphone-icon-item:hover {
  transform: translateY(-4px);
}

.iphone-icon {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.iphone-icon-item:hover .iphone-icon {
  opacity: 1;
  transform: scale(1.05);
}

.iphone-model {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.iphone-status {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* iPhone Lineup Section */
.iphone-lineup-section {
  padding: 5rem 2rem;
  background: #f5f5f7;
  position: relative;
}

.iphone-lineup-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.iphone-lineup-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.iphone-lineup-title {
  font-size: 3rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
  text-align: left;
  position: relative;
}

.iphone-lineup-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  border-radius: 1px;
}

.iphone-lineup-carousel {
  position: relative;
  overflow: visible;
}

.iphone-lineup-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.iphone-lineup-scroll-container::-webkit-scrollbar {
  display: none;
}

.iphone-lineup-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding-bottom: 0.5rem;
  will-change: transform;
}

.iphone-card {
  flex: 0 0 400px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.iphone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 122, 255, 0.1);
}

.iphone-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.iphone-card-image img {
  width: 80%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.iphone-card:hover .iphone-card-image img {
  transform: scale(1.05);
}

.iphone-card-content {
  padding: 2.5rem 2rem 3rem;
  text-align: center;
}

.iphone-card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.iphone-card-description {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}


.iphone-card-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: #007AFF;
  background: rgba(0, 122, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
  border: 1px solid rgba(0, 122, 255, 0.1);
}

/* Learn More Button */
.iphone-learn-more-btn {
  display: block;
  margin: 2rem auto 0;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid rgba(87, 87, 90, 0.2);
  border-radius: 50px;
  color: #57575a;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}

.iphone-learn-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(90, 200, 250, 0.1) 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.iphone-learn-more-btn:hover::before {
  left: 0;
}

.iphone-learn-more-btn:hover {
  color: #007AFF;
  border-color: rgba(0, 122, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.15);
}

.iphone-learn-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.1);
}


.iphone-learn-more-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
  border-color: #007AFF;
}

/* Responsive Learn More Button Styles */

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .iphone-learn-more-btn {
    margin: 1.5rem auto 0;
    padding: 0.65rem 1.75rem;
    font-size: 0.85rem;
  }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  .iphone-learn-more-btn {
    margin: 1.75rem auto 0;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* Mobile Small */
@media (max-width: 479px) {
  .iphone-learn-more-btn {
    margin: 1.5rem auto 0;
    padding: 0.55rem 1.25rem;
    font-size: 0.75rem;
  }
}


/* Extra Small Mobile */
@media (max-width: 360px) {
  .iphone-learn-more-btn {
    margin: 1.25rem auto 0;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}

/* Accessibility Enhancements for Learn More Buttons */
@media (prefers-reduced-motion: reduce) {
  .iphone-learn-more-btn,
  .iphone-learn-more-btn::before {
    transition: none;
  }
  
  .iphone-learn-more-btn:hover {
    transform: none;
  }
}



/* Carousel Navigation - Mobile & Tablet Only */

.iphone-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex; /* Always visible */
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: #1d1d1f;
  opacity: 0.7;
}

.iphone-carousel-btn:hover {
  background: white;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.iphone-carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%) scale(1);
}

.iphone-carousel-btn:disabled:hover {
  transform: translateY(-50%) scale(1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.iphone-carousel-prev {
  left: -25px;
}

.iphone-carousel-next {
  right: -25px;
}

/* =========================
   RESPONSIVE IPHONE STYLES
========================= */

/* Large Desktop */
@media (min-width: 1440px) {
  .iphone-overview-title {
    font-size: 4rem;
  }
  
  .iphone-lineup-title {
    font-size: 3.5rem;
  }
  
  .iphone-icon-row {
    gap: 5rem;
  }
  
  .iphone-icon {
    width: 140px;
  }
  
  .iphone-card {
    flex: 0 0 450px;
  }
}

/* Desktop */
@media (max-width: 1439px) and (min-width: 1024px) {
  .iphone-lineup-track {
    gap: 1.5rem;
  }
  
  .iphone-card {
    flex: 0 0 350px;
  }
  
  .iphone-card-image {
    height: 240px;
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .iphone-overview-section {
    padding: 4rem 1.5rem 3rem;
  }
  
  .iphone-lineup-section {
    padding: 4rem 1.5rem;
  }
  
  .iphone-overview-title {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
  }
  
  .iphone-lineup-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .iphone-icon-row {
    gap: 3rem;
  }
  
  .iphone-icon {
    width: 100px;
  }
  
  .iphone-card {
    flex: 0 0 320px;
  }
  
  .iphone-card-image {
    height: 200px;
  }
  
  .iphone-card-content {
    padding: 2rem 1.5rem 2.5rem;
  }
  
  .iphone-card-title {
    font-size: 1.5rem;
  }
  
  .iphone-carousel-btn {
    width: 44px;
    height: 44px;
  }
  
  .iphone-carousel-prev {
    left: -22px;
  }
  
  .iphone-carousel-next {
    right: -22px;
  }
}



/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  .iphone-overview-section {
    padding: 3rem 1rem 2.5rem;
  }
  
  .iphone-lineup-section {
    padding: 3rem 1rem;
  }
  
  .iphone-overview-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
  
  .iphone-lineup-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .iphone-icon-row {
    gap: 2rem;
  }
  
  .iphone-icon {
    width: 80px;
  }
  
  .iphone-model {
    font-size: 1rem;
  }
  
  .iphone-status {
    font-size: 0.75rem;
  }
  
  .iphone-card {
    flex: 0 0 280px;
  }
  
  .iphone-card-image {
    height: 180px;
  }
  
  .iphone-card-content {
    padding: 1.5rem 1.25rem 2rem;
  }
  
  .iphone-card-title {
    font-size: 1.375rem;
  }
  
  .iphone-card-description {
    font-size: 0.9rem;
  }
  
  .iphone-card-price {
    font-size: 1rem;
  }
  
  .iphone-carousel-btn {
    display: flex;
    width: 44px;
    height: 44px;
    opacity: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .iphone-carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: #1d1d1f;
    stroke-width: 2;
  }

  .iphone-carousel-prev {
    left: 10px;
  }

  .iphone-carousel-next {
    right: 10px;
  }
}


/* Mobile Small */
@media (max-width: 479px) {
  .iphone-overview-section {
    padding: 2.5rem 0.75rem 2rem;
  }
  
  .iphone-lineup-section {
    padding: 2.5rem 0.75rem;
  }
  
  .iphone-overview-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .iphone-overview-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .iphone-lineup-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .iphone-lineup-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .iphone-icon-row {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .iphone-icon {
    width: 70px;
  }
  
  .iphone-model {
    font-size: 0.9rem;
  }
  
  .iphone-status {
    font-size: 0.7rem;
  }
  
  .iphone-card {
    flex: 0 0 260px;
  }
  
  .iphone-card-image {
    height: 160px;
  }
  
  .iphone-card-content {
    padding: 1.25rem 1rem 1.75rem;
  }
  
  .iphone-card-title {
    font-size: 1.25rem;
  }
  
  .iphone-card-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  
  .iphone-card-price {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
  }
  

  .iphone-carousel-btn {
    display: flex; /* Changed from none to flex */
    width: 40px;
    height: 40px;
  }

  .iphone-carousel-prev {
    left: -35px;
  }

  .iphone-carousel-next {
    right: -35px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .iphone-overview-section {
    padding: 2rem 0.5rem 1.5rem;
  }
  
  .iphone-lineup-section {
    padding: 2rem 0.5rem;
  }
  
  .iphone-overview-title {
    font-size: 1.625rem;
  }
  
  .iphone-lineup-title {
    font-size: 1.5rem;
  }
  
  .iphone-icon-row {
    gap: 1rem;
  }
  
  .iphone-icon {
    width: 60px;
  }
  
  .iphone-card {
    flex: 0 0 240px;
  }
  
  .iphone-card-image {
    height: 140px;
  }
  
  .iphone-card-content {
    padding: 1rem 0.875rem 1.5rem;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .iphone-icon-item,
  .iphone-icon,
  .iphone-card,
  .iphone-card-image img,
  .iphone-lineup-track,
  .iphone-carousel-btn {
    transition: none;
  }
  
  .iphone-icon-item:hover,
  .iphone-card:hover {
    transform: none;
  }
  
  .iphone-card:hover .iphone-card-image img {
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .iphone-card {
    border: 2px solid #000;
  }
  
  .iphone-card-price {
    border: 2px solid #007AFF;
  }
  
  .iphone-icon {
    opacity: 1;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .iphone-icon-item:hover {
    transform: none;
  }
  
  .iphone-card:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  
  .iphone-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}

/* =========================
   OTHER PRODUCTS WE OFFER SECTION
========================= */

.other-products-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
  position: relative;
  overflow: hidden;
}

.other-products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.other-products-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.other-products-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Carousel Container */
.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* Carousel Track */
.carousel-track {
  display: flex;
  width: 300%; /* 3x the width for 3 sets of logos */
  animation: scroll 30s linear infinite;
  gap: 4rem;
  padding: 2rem 0;
}

/* Logo Items */
.logo-item {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.logo-item:hover::before {
  left: 100%;
}

.logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.logo-item img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Infinite Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%); /* Move exactly 1/3 of the track width */
  }
}

/* Pause animation on hover */
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1440px) {
  .logo-item {
    width: 220px;
    height: 110px;
  }
  
  .logo-item img {
    max-width: 160px;
    max-height: 70px;
  }
}

/* Desktop */
@media (max-width: 1439px) and (min-width: 1024px) {
  .other-products-title {
    font-size: 3rem;
  }
  
  .logo-item {
    width: 180px;
    height: 90px;
  }
  
  .logo-item img {
    max-width: 130px;
    max-height: 55px;
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .other-products-section {
    padding: 4rem 1.5rem;
  }
  
  .other-products-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .carousel-track {
    gap: 3rem;
  }
  
  .logo-item {
    width: 160px;
    height: 80px;
  }
  
  .logo-item img {
    max-width: 120px;
    max-height: 50px;
  }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  .other-products-section {
    padding: 3rem 1rem;
  }
  
  .other-products-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .carousel-track {
    gap: 2rem;
    animation-duration: 25s; /* Faster on mobile */
  }
  
  .logo-item {
    width: 140px;
    height: 70px;
  }
  
  .logo-item img {
    max-width: 100px;
    max-height: 45px;
  }
}


/* Mobile Small */
@media (max-width: 479px) {
  .other-products-section {
    padding: 2.5rem 0.75rem;
  }
  
  .other-products-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .carousel-track {
    gap: 1.5rem;
    animation-duration: 20s; /* Even faster on small mobile */
  }
  
  .logo-item {
    width: 120px;
    height: 60px;
  }
  
  .logo-item img {
    max-width: 85px;
    max-height: 40px;
  }
  
  /* Network Page Mobile Small Styles */
  .network-hero-section {
    padding: 2rem 0.75rem 1.5rem;
  }
  
  .network-hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .network-hero-subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .network-hero-visual {
    margin-top: 1.5rem;
  }
  
  .network-hero-visual svg {
    width: 80px;
    height: 80px;
  }
  
  .network-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .network-security-section,
  .asset-security-section,
  .security-policy-section,
  .utm-security-section {
    padding: 2rem 0.75rem;
  }
  
  .network-security-card {
    padding: 1.5rem 1rem;
  }
  
  .network-security-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .network-security-icon {
    width: 50px;
    height: 50px;
    align-self: center;
  }
  
  .network-security-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .network-security-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .asset-security-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .asset-security-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .asset-security-divider {
    margin: 1.5rem 0;
  }
  
  .asset-security-icon {
    width: 80px;
    height: 80px;
  }
  
  .asset-security-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .security-policy-card {
    padding: 1.5rem 1rem;
  }
  
  .security-policy-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .utm-intro {
    margin-bottom: 2.5rem;
  }
  
  .utm-intro p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .utm-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .utm-feature-item {
    padding: 1.25rem 1rem;
  }
  
  .utm-feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .utm-feature-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .utm-feature-item span {
    font-size: 1rem;
  }
  
  .utm-conclusion {
    margin-top: 2.5rem;
    padding: 1.5rem 1rem;
  }
  
  .utm-conclusion p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
  }
  
  .logo-item,
  .logo-item img {
    transition: none;
  }
  
  .logo-item:hover {
    transform: none;
  }
}

/* Focus styles for accessibility */
.logo-item:focus {
  outline: 2px solid #007aff;
  outline-offset: 4px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .logo-item {
    border: 2px solid #000;
  }
}


/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .logo-item:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .logo-item:hover img {
    transform: none;
    filter: grayscale(20%);
  }
  
  .logo-item:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
}

/* Contact Form Specific Styles */
    .contact-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
      background: linear-gradient(135deg, 
        #ffffff 0%, 
        #57575a 25%, 
        #f0f8ff 50%, 
        #e6f3ff 75%, 
        #ffffff 100%);
      background-size: 400% 400%;
      animation: gradientShift 15s ease infinite;
      position: relative;
      overflow: hidden;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 70%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 70% 30%, rgba(90, 200, 250, 0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .contact-container {
      max-width: 800px;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px) saturate(180%);
      border-radius: 24px;
      padding: 3rem;
      box-shadow: 0 20px 60px rgba(87, 87, 90, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      z-index: 1;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .contact-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1d1d1f;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #57575a 0%, #007AFF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .contact-subtitle {
      font-size: 1.1rem;
      color: #6e6e73;
      line-height: 1.6;
      max-width: 500px;
      margin: 0 auto;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    .form-label {
      font-size: 0.9rem;
      font-weight: 600;
      color: #57575a;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      padding: 1rem 1.25rem;
      border: 2px solid rgba(87, 87, 90, 0.1);
      border-radius: 12px;
      font-size: 1rem;
      background: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease;
      font-family: inherit;
      color: #1d1d1f;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: #007AFF;
      background: rgba(255, 255, 255, 1);
      box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
      transform: translateY(-1px);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #8e8e93;
    }

    .form-textarea {
      resize: vertical;
      min-height: 120px;
      font-family: inherit;
    }

    .form-select {
      cursor: pointer;
      background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='m2 0-2 2h4zm0 5 2-2h-4z'/></svg>");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 0.8rem;
      padding-right: 3rem;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
    }

    .form-select:focus {
      background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23007AFF' d='m2 0-2 2h4zm0 5 2-2h-4z'/></svg>");
    }

    .submit-btn {
      padding: 1rem 2rem;
      background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 1rem;
      position: relative;
      overflow: hidden;
    }

    .submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
    }

    .submit-btn:hover::before {
      left: 100%;
    }

    .submit-btn:active {
      transform: translateY(0);
      box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
    }

    .submit-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .submit-btn:disabled:hover {
      transform: none;
      box-shadow: none;
    }

    /* Success Message */
    .success-message {
      display: none;
      padding: 1rem;
      background: rgba(52, 199, 89, 0.1);
      border: 1px solid rgba(52, 199, 89, 0.3);
      border-radius: 12px;
      color: #1d1d1f;
      text-align: center;
      margin-top: 1rem;
      animation: slideIn 0.3s ease;
    }

    .success-message.show {
      display: block;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Loading Animation */
    .loading-spinner {
      display: none;
      width: 20px;
      height: 20px;
      border: 2px solid transparent;
      border-top: 2px solid white;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-right: 0.5rem;
    }

    .submit-btn.loading .loading-spinner {
      display: inline-block;
    }

    .submit-btn.loading {
      pointer-events: none;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .contact-section {
        padding: 1rem;
        min-height: auto;
      }

      .contact-container {
        padding: 2rem;
        margin: 1rem 0;
      }

      .contact-title {
        font-size: 2rem;
      }

      .contact-subtitle {
        font-size: 1rem;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .contact-form {
        gap: 1.25rem;
      }

      .form-input,
      .form-select,
      .form-textarea {
        padding: 0.875rem 1rem;
      }

      .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .contact-container {
        padding: 1.5rem;
        border-radius: 16px;
      }

      .contact-title {
        font-size: 1.75rem;
      }

      .contact-header {
        margin-bottom: 2rem;
      }

      .form-input,
      .form-select,
      .form-textarea {
        padding: 0.75rem 0.875rem;
      }
    }

    /* Accessibility Enhancements */
    .form-input:focus-visible,
    .form-select:focus-visible,
    .form-textarea:focus-visible,
    .submit-btn:focus-visible {
      outline: 2px solid #007AFF;
      outline-offset: 2px;
    }

    /* High Contrast Mode */
    @media (prefers-contrast: high) {
      .contact-container {
        border: 2px solid #000;
        background: #fff;
      }

      .form-input,
      .form-select,
      .form-textarea {
        border-color: #000;
      }

      .submit-btn {
        background: #000;
        color: #fff;
      }
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
      .contact-section {
        animation: none;
        background: linear-gradient(135deg, #ffffff 0%, #57575a 25%, #f0f8ff 100%);
      }

      .form-input,
      .form-select,
      .form-textarea,
      .submit-btn,
      .submit-btn::before {
        transition: none;
      }

      .submit-btn:hover {
        transform: none;
      }

      .success-message {
        animation: none;
      }

      .loading-spinner {
        animation: none;
      }
    }
    

/* =========================
   APPLE-INSPIRED FOOTER
========================= */

.apple-footer {
  background: linear-gradient(135deg, #57575a 0%, #4a4a4d 50%, #57575a 100%);
  color: white;
  padding: 3rem 0 0;
  margin-top: 5rem;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.apple-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(0, 122, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 80%,
    transparent 100%
  );
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Footer Brand Column */
.footer-brand {
  justify-content: flex-start;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo .logo-accent {
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-contact .contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.25rem 0;
  font-weight: 500;
}

.contact-phone {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-phone:hover {
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(2px);
}

/* Footer Headings */
.footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Navigation */
.footer-nav .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav .footer-links li {
  margin: 0;
}

.footer-nav .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  display: inline-block;
}

.footer-nav .footer-links a:hover {
  color: white;
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(4px);
}

/* Footer Address */
.footer-address {
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Footer Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.hours-item .days {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  min-width: 60px;
  flex-shrink: 0;
}

.hours-item .time {
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

.hours-item.lunch .days {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.hours-item.lunch .time {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Social Media */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.social-link:active {
  transform: translateY(-1px) scale(1.02);
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(0, 122, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 80%,
    transparent 100%
  );
  margin-bottom: 1.5rem;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.copyright-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.copyright-link:hover {
  background: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================
   RESPONSIVE FOOTER DESIGN
========================= */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .footer-container {
    max-width: 1400px;
    padding: 0 3rem;
  }
  
  .footer-content {
    gap: 4rem;
  }
  
  .footer-logo .logo-text {
    font-size: 1.75rem;
  }
}

/* Desktop (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
  .footer-container {
    padding: 0 2.5rem;
  }
  
  .footer-content {
    gap: 2.5rem;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .apple-footer {
    padding: 2.5rem 0 0;
  }
  
  .footer-container {
    padding: 0 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  
  .footer-logo .logo-text {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
  
  .footer-contact {
    text-align: right;
  }
  
  .hours-item {
    font-size: 0.85rem;
  }
  
  .social-links {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Mobile Large (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
  .apple-footer {
    padding: 2rem 0 0;
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-logo .logo-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  

  .footer-contact {
    text-align: center;
  }
  .footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hours-item {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .hours-item .days {
    min-width: 70px;
  }
  
  .social-links {
    justify-content: center;
    gap: 1rem;
  }
  
  .social-link {
    width: 48px;
    height: 48px;
  }
  
  .social-link svg {
    width: 22px;
    height: 22px;
  }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
  .apple-footer {
    padding: 1.5rem 0 0;
  }
  
  .footer-container {
    padding: 0 0.75rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
    padding: 0 0.5rem;
  }
  
  .footer-logo .logo-text {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-phone {
    font-size: 1rem;
  }
  
  .footer-heading {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-nav .footer-links {
    gap: 0.4rem;
  }
  
  .footer-nav .footer-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0;
  }
  
  .footer-address {
    font-size: 0.85rem;
  }
  
  .hours-item {
    font-size: 0.85rem;
    gap: 0.75rem;
  }
  
  .hours-item .days {
    min-width: 65px;
    font-size: 0.8rem;
  }
  
  .hours-item .time {
    font-size: 0.8rem;
  }
  
  .social-links {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 44px;
    height: 44px;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
  
  .footer-bottom {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
}

/* =========================
   ACCESSIBILITY ENHANCEMENTS
========================= */

/* Focus states for accessibility */
.social-link:focus {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
}

.contact-phone:focus {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-nav .footer-links a:focus {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
  border-radius: 2px;
}

.copyright-link:focus {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
  border-radius: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .apple-footer {
    background: #000;
    border-top: 2px solid #fff;
  }
  
  .footer-heading,
  .footer-logo .logo-accent,
  .contact-phone:hover,
  .footer-nav .footer-links a:hover,
  .social-link:hover,
  .copyright-link:hover {
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
  }
  
  .social-link {
    border: 2px solid #fff;
  }
}


/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .contact-phone,
  .footer-nav .footer-links a,
  .social-link,
  .social-link svg,
  .copyright-link {
    transition: none;
  }
  
  .social-link:hover {
    transform: none;
  }
  
  .contact-phone:hover {
    transform: none;
  }
  
  .footer-nav .footer-links a:hover {
    transform: none;
  }
}

/* =========================
   FINANCE PAGE STYLES
========================= */

/* Finance Header Section */
.finance-header {
  background: linear-gradient(135deg, #005944 0%, #0a7c5a 50%, #005944 100%);
  color: white;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.finance-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.finance-header-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nedbank-logo {
  margin-bottom: 2rem;
}

.nedbank-logo img {
  height: 80px;
  width: auto;
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.3s ease;
}

.finance-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.finance-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #005944;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #005944 0%, #0a7c5a 100%);
  border-radius: 2px;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
  position: relative;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 89, 68, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.requirement-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 89, 68, 0.08);
  border: 1px solid rgba(0, 89, 68, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.requirement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #005944 0%, #0a7c5a 100%);
}

.requirement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 89, 68, 0.15);
  border-color: rgba(0, 89, 68, 0.2);
}

.requirement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #005944 0%, #0a7c5a 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.requirement-card:hover .requirement-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 89, 68, 0.3);
}

.requirement-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #005944;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.requirement-card p {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.6;
}

/* Finance Details Section */
.finance-details-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
  position: relative;
}

.finance-details-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 89, 68, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.finance-details-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.finance-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.finance-detail-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 89, 68, 0.1);
  border: 2px solid rgba(0, 89, 68, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.finance-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 89, 68, 0.02) 0%, rgba(10, 124, 90, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.finance-detail-card:hover::before {
  opacity: 1;
}

.finance-detail-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 70px rgba(0, 89, 68, 0.2);
  border-color: #005944;
}

.finance-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #005944 0%, #0a7c5a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.finance-detail-card:hover .finance-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 89, 68, 0.4);
}

.finance-detail-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #005944;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.finance-amount,
.finance-period,
.finance-rate {
  font-size: 2.5rem;
  font-weight: 700;
  color: #005944;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.finance-detail-card p {
  font-size: 1rem;
  color: #6e6e73;
  position: relative;
  z-index: 1;
}

/* Consultants Section */
.consultants-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
  position: relative;
}

.consultants-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 89, 68, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.consultants-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.consultants-intro {
  text-align: center;
  font-size: 1.125rem;
  color: #6e6e73;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.consultants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.consultant-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 89, 68, 0.08);
  border: 1px solid rgba(0, 89, 68, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.consultant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #005944 0%, #0a7c5a 100%);
}

.consultant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 89, 68, 0.15);
  border-color: rgba(0, 89, 68, 0.2);
}

.consultant-header {
  margin-bottom: 2rem;
}

.consultant-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #005944;
  text-align: center;
  line-height: 1.3;
}

.consultant-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 89, 68, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(0, 89, 68, 0.05);
  transform: translateX(4px);
}

.contact-item svg {
  color: #005944;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 1rem;
  color: #1d1d1f;
  font-weight: 500;
}

/* =========================
   RESPONSIVE FINANCE STYLES
========================= */

/* Large Desktop */
@media (min-width: 1440px) {
  .finance-title {
    font-size: 4rem;
  }
  
  .finance-subtitle {
    font-size: 1.375rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .requirements-grid,
  .consultants-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .finance-details-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (max-width: 1439px) and (min-width: 1024px) {
  .requirements-grid,
  .consultants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .finance-details-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .finance-header {
    padding: 4rem 1.5rem 3rem;
  }
  
  .finance-title {
    font-size: 2.75rem;
  }
  
  .finance-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
  
  .how-it-works-section,
  .finance-details-section,
  .consultants-section {
    padding: 4rem 1.5rem;
  }
  
  .requirements-grid,
  .consultants-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .finance-details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .requirement-card,
  .consultant-card {
    padding: 2rem 1.5rem;
  }
  
  .finance-detail-card {
    padding: 2.5rem 2rem;
  }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  .finance-header {
    padding: 3rem 1rem 2.5rem;
  }
  
  .nedbank-logo img {
    height: 60px;
  }
  
  .finance-title {
    font-size: 2.25rem;
  }
  
  .finance-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .how-it-works-section,
  .finance-details-section,
  .consultants-section {
    padding: 3rem 1rem;
  }
  
  .requirements-grid,
  .consultants-grid,
  .finance-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .requirement-card,
  .consultant-card {
    padding: 1.75rem 1.25rem;
  }
  
  .finance-detail-card {
    padding: 2rem 1.5rem;
  }
  
  .finance-amount,
  .finance-period,
  .finance-rate {
    font-size: 2rem;
  }
}

/* Mobile Small */
@media (max-width: 479px) {
  .finance-header {
    padding: 2.5rem 0.75rem 2rem;
  }
  
  .nedbank-logo img {
    height: 50px;
  }
  
  .finance-title {
    font-size: 1.875rem;
  }
  
  .finance-subtitle {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .how-it-works-section,
  .finance-details-section,
  .consultants-section {
    padding: 2.5rem 0.75rem;
  }
  
  .requirements-grid,
  .consultants-grid,
  .finance-details-grid {
    gap: 1.25rem;
  }
  
  .requirement-card,
  .consultant-card {
    padding: 1.5rem 1rem;
  }
  
  .finance-detail-card {
    padding: 1.75rem 1.25rem;
  }
  
  .requirement-card h3,
  .finance-detail-card h3 {
    font-size: 1.25rem;
  }
  
  .finance-amount,
  .finance-period,
  .finance-rate {
    font-size: 1.75rem;
  }
  
  .consultant-header h3 {
    font-size: 1.5rem;
  }
  
  .contact-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .contact-item span {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .finance-header {
    padding: 2rem 0.5rem 1.5rem;
  }
  
  .finance-title {
    font-size: 1.625rem;
  }
  
  .finance-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .how-it-works-section,
  .finance-details-section,
  .consultants-section {
    padding: 2rem 0.5rem;
  }
  
  .requirement-card,
  .consultant-card {
    padding: 1.25rem 0.75rem;
  }
  
  .finance-detail-card {
    padding: 1.5rem 1rem;
  }
  
  .requirement-icon,
  .finance-icon {
    width: 50px;
    height: 50px;
  }
  
  .requirement-icon svg,
  .finance-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .requirement-card,
  .finance-detail-card,
  .consultant-card,
  .requirement-icon,
  .finance-icon,
  .contact-item {
    transition: none;
  }
  
  .requirement-card:hover,
  .finance-detail-card:hover,
  .consultant-card:hover,
  .contact-item:hover {
    transform: none;
  }
}


/* High Contrast Mode */
@media (prefers-contrast: high) {
  .requirement-card,
  .finance-detail-card,
  .consultant-card {
    border: 2px solid #005944;
  }
  
  .requirement-icon,
  .finance-icon {
    background: #005944;
    border: 2px solid #000;
  }
  
  .finance-amount,
  .finance-period,
  .finance-rate,
  .requirement-card h3,
  .finance-detail-card h3,
  .consultant-header h3 {
    color: #000;
  }
}





/* =========================
   IPHONE 17 PRO PAGE STYLES
========================= */

/* iPhone 17 Pro Hero Section */
.iphone-hero-section {
  background: #000000;
  color: #FF6F3C;
  padding: 8rem 2rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iphone-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.iphone-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.iphone-hero-eyebrow {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.iphone-hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(45deg, #FF6F3C, #FF8A5B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.iphone-hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(255, 111, 60, 0.3));
}

/* iPhone Hero Eyebrow - Responsive Image */
.iphone-hero-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.iphone-hero-eyebrow img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
}

.iphone-hero-eyebrow picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.iphone-hero-eyebrow picture img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* iPhone 17 Pro Features Section */
.iphone-features-section {
  background: #1D1D1F;
  padding: 6rem 2rem;
}

.iphone-features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.iphone-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.iphone-feature-card {
  background: #000000;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.iphone-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.iphone-feature-large {
  grid-column: span 2;
  min-height: 400px;
}

.iphone-feature-medium {
  min-height: 350px;
}

.iphone-feature-small {
  min-height: 300px;
}

.iphone-feature-vertical {
  min-height: 400px;
}


.iphone-feature-content h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.iphone-feature-content p {
  color: #8E8E93;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.iphone-feature-image {
  margin-top: 1.5rem;
}

.iphone-feature-image img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}


.iphone-feature-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  max-width: 80%;
  text-align: center;
}



.iphone-feature-overlay h3 {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* iPhone 17 Pro Color Section */
.iphone-color-section {
  background: #000000;
  color: #FF6F3C;
  padding: 6rem 2rem;
  text-align: center;
}

.iphone-color-container {
  max-width: 1000px;
  margin: 0 auto;
}


.iphone-color-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin: 0 0 3rem 0;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.iphone-color-selector {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}


.color-option {
  background: transparent;
  border: none;
  border-radius: 20%;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
  outline: none;
}

.color-option:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgb(255, 255, 255);
}

.color-option.active {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.979);
}

.color-option:focus {
  outline: none;
}

.color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
}

.color-circle.silver {
  background: linear-gradient(45deg, #C0C0C0, #E8E8E8);
}

.color-circle.deepblue {
  background: linear-gradient(45deg, #1E3A8A, #3B82F6);
}

.color-circle.cosmic {
  background: linear-gradient(45deg, #FF6F3C, #FF8A5B);
}

.color-option span:last-child {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
}

.iphone-color-display {
  transition: opacity 0.3s ease;
}

.iphone-color-display img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

/* iPhone 17 Pro Difference Section */
.iphone-difference-section {
  background: #ffffff;
  color: #1D1D1F;
  padding: 6rem 2rem;
}

.iphone-difference-container {
  max-width: 1200px;
  margin: 0 auto;
}

.iphone-difference-subsection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.iphone-difference-card {
  text-align: center;
  padding: 2rem;
}

.iphone-difference-icon {
  margin-bottom: 1.5rem;
}

.iphone-difference-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.iphone-difference-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1D1D1F;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.iphone-difference-description {
  font-size: 1.1rem;
  color: #8E8E93;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for iPhone 17 Pro */
@media (max-width: 1024px) {
  .iphone-hero-section {
    padding: 6rem 1.5rem;
    min-height: 80vh;
  }
  
  .iphone-features-section {
    padding: 4rem 1.5rem;
  }
  
  .iphone-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .iphone-feature-large {
    grid-column: span 1;
  }
  
  .iphone-color-section {
    padding: 4rem 1.5rem;
  }
  
  .iphone-difference-section {
    padding: 4rem 1.5rem;
  }
  
  .iphone-difference-subsection {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .iphone-hero-section {
    padding: 4rem 1rem;
    min-height: 70vh;
  }
  
  .iphone-hero-content {
    gap: 2rem;
  }
  
  .iphone-features-section {
    padding: 3rem 1rem;
  }
  
  .iphone-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .iphone-feature-card {
    padding: 1.5rem;
    min-height: 250px;
  }
  
  .iphone-feature-large {
    min-height: 300px;
  }
  
  .iphone-color-section {
    padding: 3rem 1rem;
  }
  
  .iphone-color-selector {
    gap: 1rem;
  }
  
  .color-option {
    min-width: 100px;
    padding: 0.8rem;
  }
  
  .iphone-difference-section {
    padding: 3rem 1rem;
  }
  
  .iphone-difference-card {
    padding: 1.5rem;
  }
  
  .iphone-difference-title {
    font-size: 1.5rem;
  }
  
  .iphone-difference-description {
    font-size: 1rem;
  }
}

/* =========================
   IPHONE 17 PAGE STYLES (Basically 17 Pro but white)
========================= */

.iphone-hero-image2 img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}


/* =========================
   IPAD MINI PAGE STYLES
========================= */

/* iPad Mini Hero Section */
.ipad-mini-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 6rem 2rem 5rem;
}

.ipad-mini-hero .ipad-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ipad-mini-hero .ipad-hero-content {
  text-align: left;
}

.ipad-mini-hero .ipad-hero-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: #6e6e73;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ipad-mini-hero .ipad-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
}

.ipad-mini-hero .ipad-hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

.ipad-mini-hero .ipad-hero-description {
  font-size: 1.125rem;
  color: #6e6e73;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

.ipad-mini-hero .ipad-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ipad-mini-hero .ipad-hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Gradient Background for Bento Cards */
.gradient-bg {
  background: linear-gradient(135deg, 
    rgba(0, 122, 255, 0.1) 0%, 
    rgba(175, 82, 222, 0.1) 50%, 
    rgba(255, 45, 146, 0.1) 100%);
  border: 1px solid rgba(0, 122, 255, 0.1);
}

/* Responsive iPad Mini Styles */
@media (max-width: 1023px) {
  .ipad-mini-hero {
    padding: 4rem 1.5rem 3rem;
  }
  
  .ipad-mini-hero .ipad-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .ipad-mini-hero .ipad-hero-content {
    text-align: center;
  }
  
  .ipad-mini-hero .ipad-hero-description {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .ipad-mini-hero {
    padding: 3rem 1rem 2.5rem;
  }
  
  .ipad-mini-hero .ipad-hero-container {
    gap: 2.5rem;
  }
  
  .ipad-mini-hero .ipad-hero-description {
    font-size: 1rem;
  }
}

/* =========================
   IPAD PRO PAGE STYLES
========================= */

/* Apple-style gradient text */
.gradient-text {
  background: linear-gradient(135deg, 
    #00d4ff 0%,     /* Cyan */
    #007aff 25%,    /* Blue */
    #af52de 50%,    /* Purple */
    #ff2d92 100%    /* Pink */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-flow 4s ease-in-out infinite;
}

@keyframes gradient-flow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Hero Section */
.ipad-hero-section {
  padding: 6rem 2rem 4rem;
  background: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ipad-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.ipad-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ipad-hero-image {
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ipad-hero-image.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ipad-hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.ipad-hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.ipad-hero-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ipad-hero-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: #6e6e73;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ipad-hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Bento Grid Section */
.ipad-bento-section {
  padding: 6rem 2rem;
  background: #1d1d1f;
  color: #f5f5f7;
  position: relative;
  overflow: hidden;
}

.ipad-bento-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(175, 82, 222, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.ipad-bento-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ipad-bento-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-areas: 
    "large1 large1 medium1 medium1"
    "large1 large1 medium1 medium1"
    "medium2 medium2 medium3 medium3"
    "vertical1 vertical1 large2 large2"
    "vertical1 vertical1 large2 large2"
    "vertical2 vertical2 medium4 medium4";
}

/* Bento Card Base Styles */
.ipad-bento-card {
  background: #000000;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
}

.ipad-bento-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ipad-bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ipad-bento-card:hover::before {
  opacity: 1;
}

.ipad-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Card Size Variants */
.ipad-bento-large {
  grid-area: large1;
  min-height: 400px;
}

.ipad-bento-medium {
  grid-area: medium1;
  min-height: 300px;
}

.ipad-bento-vertical {
  grid-area: vertical1;
  min-height: 500px;
}

/* Image Styles */
.ipad-bento-image {
  margin-bottom: 2rem;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipad-bento-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
}

.ipad-bento-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ipad-bento-content p {
  font-size: 1rem;
  color: #a1a1a6;
  line-height: 1.6;
  margin: 0;
}

/* Specific Card Layouts */
.ipad-bento-card:nth-child(1) { /* M5 Chip */
  grid-area: large1;
  transition-delay: 0.1s;
}

.ipad-bento-card:nth-child(2) { /* iPadOS */
  grid-area: medium1;
  transition-delay: 0.2s;
}

.ipad-bento-card:nth-child(3) { /* Apple Intelligence */
  grid-area: medium2;
  transition-delay: 0.3s;
}

.ipad-bento-card:nth-child(4) { /* Design */
  grid-area: vertical1;
  transition-delay: 0.4s;
}

.ipad-bento-card:nth-child(5) { /* Display */
  grid-area: large2;
  transition-delay: 0.5s;
}

.ipad-bento-card:nth-child(6) { /* Battery */
  grid-area: medium4;
  transition-delay: 0.6s;
}

.ipad-bento-card:nth-child(7) { /* Pro Camera */
  grid-area: vertical2;
  transition-delay: 0.7s;
}

/* Why iPad Section */
.ipad-why-section {
  padding: 6rem 2rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.ipad-why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.ipad-why-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ipad-why-intro {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ipad-why-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ipad-why-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: #6e6e73;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ipad-why-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.ipad-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.ipad-why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
}

.ipad-why-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ipad-why-card:nth-child(1) { transition-delay: 0.1s; }
.ipad-why-card:nth-child(2) { transition-delay: 0.2s; }
.ipad-why-card:nth-child(3) { transition-delay: 0.3s; }
.ipad-why-card:nth-child(4) { transition-delay: 0.4s; }

.ipad-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.ipad-why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(175, 82, 222, 0.1) 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.ipad-why-card:hover .ipad-why-icon {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, rgba(175, 82, 222, 0.15) 100%);
}

.ipad-why-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ipad-why-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ipad-why-card p {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   RESPONSIVE IPAD PRO STYLES
========================= */

/* Large Desktop */
@media (min-width: 1440px) {
  .ipad-hero-section {
    padding: 8rem 2rem 6rem;
  }
  
  .ipad-bento-section,
  .ipad-why-section {
    padding: 8rem 2rem;
  }
  
  .ipad-bento-grid {
    gap: 2rem;
  }
  
  .ipad-bento-card {
    padding: 3rem 2.5rem;
  }
  
  .ipad-why-card {
    padding: 3.5rem 3rem;
  }
}

/* Desktop */
@media (max-width: 1439px) and (min-width: 1024px) {
  .ipad-bento-grid {
    grid-template-areas: 
      "large1 large1 medium1"
      "large1 large1 medium1"
      "medium2 medium2 medium3"
      "vertical1 vertical1 large2"
      "vertical1 vertical1 large2"
      "vertical2 vertical2 medium4";
    gap: 1.25rem;
  }
  
  .ipad-bento-large {
    min-height: 350px;
  }
  
  .ipad-bento-medium {
    min-height: 280px;
  }
  
  .ipad-bento-vertical {
    min-height: 450px;
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .ipad-hero-section {
    padding: 5rem 1.5rem 4rem;
  }
  
  .ipad-bento-section,
  .ipad-why-section {
    padding: 5rem 1.5rem;
  }
  
  .ipad-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "large1 large1"
      "large1 large1"
      "medium1 medium2"
      "medium1 medium2"
      "vertical1 vertical2"
      "large2 medium4"
      "large2 medium4";
    gap: 1.25rem;
  }
  
  .ipad-bento-card {
    padding: 2rem 1.5rem;
  }
  
  .ipad-bento-image {
    height: 140px;
  }
  
  .ipad-bento-content h3 {
    font-size: 1.5rem;
  }
  
  .ipad-bento-content p {
    font-size: 0.95rem;
  }
  
  .ipad-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .ipad-why-card {
    padding: 2.5rem 2rem;
  }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  .ipad-hero-section {
    padding: 4rem 1rem 3rem;
  }
  
  .ipad-bento-section,
  .ipad-why-section {
    padding: 4rem 1rem;
  }
  
  .ipad-bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "large1"
      "medium1"
      "medium2"
      "medium3"
      "vertical1"
      "large2"
      "vertical2"
      "medium4";
    gap: 1rem;
  }
  
  .ipad-bento-card {
    padding: 2rem 1.5rem;
    min-height: auto !important;
  }
  
  .ipad-bento-image {
    height: 120px;
    margin-bottom: 1.5rem;
  }
  
  .ipad-bento-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  
  .ipad-bento-content p {
    font-size: 0.9rem;
  }
  
  .ipad-why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ipad-why-card {
    padding: 2rem 1.5rem;
  }
  
  .ipad-why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .ipad-why-icon img {
    width: 36px;
    height: 36px;
  }
  
  .ipad-why-card h3 {
    font-size: 1.25rem;
  }
  
  .ipad-why-card p {
    font-size: 0.95rem;
  }
}

/* Mobile Small */
@media (max-width: 479px) {
  .ipad-hero-section {
    padding: 3rem 0.75rem 2.5rem;
  }
  
  .ipad-hero-image {
    margin-bottom: 2rem;
  }
  
  .ipad-hero-image img {
    max-height: 300px;
  }
  
  .ipad-hero-eyebrow {
    font-size: 0.9rem;
  }
  
  .ipad-bento-section,
  .ipad-why-section {
    padding: 3rem 0.75rem;
  }
  
  .ipad-bento-grid {
    gap: 0.75rem;
  }
  
  .ipad-bento-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
  
  .ipad-bento-image {
    height: 100px;
    margin-bottom: 1rem;
  }
  
  .ipad-bento-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .ipad-bento-content p {
    font-size: 0.85rem;
  }
  
  .ipad-why-intro {
    margin-bottom: 3rem;
  }
  
  .ipad-why-card {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }
  
  .ipad-why-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.25rem;
  }
  
  .ipad-why-icon img {
    width: 30px;
    height: 30px;
  }
  
  .ipad-why-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .ipad-why-card p {
    font-size: 0.9rem;
  }
}

/* Animation Performance */
@media (prefers-reduced-motion: reduce) {
  .ipad-hero-image,
  .ipad-hero-content,
  .ipad-bento-card,
  .ipad-why-intro,
  .ipad-why-card {
    transition: none;
    animation: none;
  }
  
  .ipad-hero-image.animate-in,
  .ipad-hero-content.animate-in,
  .ipad-bento-card.animate-in,
  .ipad-why-intro.animate-in,
  .ipad-why-card.animate-in {
    opacity: 1;
    transform: none;
  }
  
  .gradient-text {
    animation: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .ipad-bento-card {
    border: 2px solid #ffffff;
  }
  
  .ipad-why-card {
    border: 2px solid #000000;
  }
  
  .gradient-text {
    color: #000000;
    -webkit-text-fill-color: initial;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .ipad-bento-card:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  
  .ipad-why-card:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  
  .ipad-bento-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .ipad-why-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}

/* =========================
   WEB SERVICES PAGE STYLES
========================= */

/* Web Header Section */
.web-header {
  background: linear-gradient(135deg, #57575a 0%, #404040 50%, #57575a 100%);
  color: white;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.web-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(64, 158, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.web-header-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.web-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1454ac 0%, #065ac9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.web-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Web Services Section */
.web-services-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.web-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(87, 87, 90, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.web-services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(87, 87, 90, 0.1);
  border: 1px solid rgba(87, 87, 90, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1454ac 0%, #065ac9 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(87, 87, 90, 0.15);
  border-color: rgba(64, 158, 255, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1454ac 0%, #065ac9 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(64, 158, 255, 0.3);
}

.service-icon svg {
  width: 48px;
  height: 48px;
}

.service-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1454ac;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.service-description {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.service-button {
  background: linear-gradient(135deg, #1454ac 0%, #065ac9 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(64, 158, 255, 0.4);
}

/* Features Section */
.features-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #57575a 0%, #404040 100%);
  color: white;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(64, 158, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1454ac;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(64, 158, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  background: rgba(64, 158, 255, 0.1);
  border-color: rgba(64, 158, 255, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1454ac 0%, #065ac9 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(64, 158, 255, 0.3);
}

.feature-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1454ac;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-item p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(87, 87, 90, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #57575a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.125rem;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-button.primary {
  background: linear-gradient(135deg, #1454ac 0%, #065ac9 100%);
  color: white;
  border-color: #1454ac;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(64, 158, 255, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #57575a;
  border-color: #57575a;
}

.cta-button.secondary:hover {
  background: #57575a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(87, 87, 90, 0.3);
}

/* =========================
   RESPONSIVE WEB SERVICES STYLES
========================= */

/* Large Desktop */
@media (min-width: 1440px) {
  .web-title {
    font-size: 4rem;
  }
  
  .web-subtitle {
    font-size: 1.375rem;
  }
  
  .features-title,
  .cta-title {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop */
@media (max-width: 1439px) and (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .web-header {
    padding: 4rem 1.5rem 3rem;
  }
  
  .web-title {
    font-size: 2.75rem;
  }
  
  .web-subtitle {
    font-size: 1.125rem;
  }
  
  .features-title,
  .cta-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
  
  .web-services-section,
  .features-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .service-card {
    padding: 2.5rem 2rem;
  }
  
  .feature-item {
    padding: 1.75rem 1.25rem;
  }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  .web-header {
    padding: 3rem 1rem 2.5rem;
  }
  
  .web-title {
    font-size: 2.25rem;
  }
  
  .web-subtitle {
    font-size: 1rem;
  }
  
  .features-title,
  .cta-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .web-services-section,
  .features-section,
  .cta-section {
    padding: 3rem 1rem;
  }
  
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-item {
    padding: 1.5rem 1rem;
  }
  
  .service-title {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-button {
    width: 250px;
  }
}

/* Mobile Small */
@media (max-width: 479px) {
  .web-header {
    padding: 2.5rem 0.75rem 2rem;
  }
  
  .web-title {
    font-size: 1.875rem;
  }
  
  .web-subtitle {
    font-size: 0.95rem;
  }
  
  .features-title,
  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .web-services-section,
  .features-section,
  .cta-section {
    padding: 2.5rem 0.75rem;
  }
  
  .services-grid,
  .features-grid {
    gap: 1.25rem;
  }
  
  .service-card {
    padding: 1.75rem 1.25rem;
  }
  
  .feature-item {
    padding: 1.25rem 1rem;
  }
  
  .service-title {
    font-size: 1.375rem;
  }
  
  .service-description {
    font-size: 0.9rem;
  }
  
  .feature-item h4 {
    font-size: 1.125rem;
  }
  
  .feature-item p {
    font-size: 0.85rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .web-header {
    padding: 2rem 0.5rem 1.5rem;
  }
  
  .web-title {
    font-size: 1.625rem;
  }
  
  .web-subtitle {
    font-size: 0.9rem;
  }
  
  .features-title,
  .cta-title {
    font-size: 1.5rem;
  }
  
  .web-services-section,
  .features-section,
  .cta-section {
    padding: 2rem 0.5rem;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .feature-item {
    padding: 1rem 0.75rem;
  }
  
  .service-icon,
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon svg,
  .feature-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .feature-item,
  .service-icon,
  .feature-icon,
  .service-button,
  .cta-button {
    transition: none;
  }
  
  .service-card:hover,
  .feature-item:hover {
    transform: none;
  }
}


/* High Contrast Mode */
@media (prefers-contrast: high) {
  .service-card {
    border: 2px solid #57575a;
  }
  
  .service-icon,
  .feature-icon {
    background: #409eff;
    border: 2px solid #000;
  }
  
  .service-title,
  .feature-item h4 {
    color: #000;
  }
  
  .service-button,
  .cta-button.primary {
    background: #000;
    color: #fff;
    border-color: #000;
  }
}

/* =========================
   CYBERSECURITY PAGE STYLES
========================= */

/* Mitigate Logo Responsive Styles */
.mitigate-logo {
  max-width: 300px;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Logo hover effect */
.mitigate-logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

/* Hero Section */
.cybersecurity-hero {
  background: linear-gradient(135deg, #ffffff 0%, #ff7f00 25%, #ff8700 50%, #ff8300 75%, #ffffff 100%);
  background-size: 400% 400%;
  animation: cybersecurityGradient 15s ease infinite;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes cybersecurityGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cybersecurity-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 127, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cybersecurity-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cybersecurity-hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.cybersecurity-hero-title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cybersecurity-hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #57575a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.cybersecurity-hero-description {
  font-size: 1.125rem;
  color: #6e6e73;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Partnership Section */
.cybersecurity-partnership {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.cybersecurity-partnership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 127, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cybersecurity-partnership-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cybersecurity-partnership-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(255, 127, 0, 0.1);
  border: 1px solid rgba(255, 127, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.cybersecurity-partnership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8700 50%, #ff8300 100%);
}

.cybersecurity-partnership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 127, 0, 0.15);
  border-color: rgba(255, 127, 0, 0.2);
}

.cybersecurity-partnership-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cybersecurity-partnership-description {
  font-size: 1.125rem;
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cybersecurity-partnership-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cybersecurity-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 127, 0, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 127, 0, 0.1);
  transition: all 0.3s ease;
}

.cybersecurity-feature-item:hover {
  background: rgba(255, 127, 0, 0.1);
  transform: translateX(4px);
}

.cybersecurity-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8700 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cybersecurity-feature-item:hover .cybersecurity-feature-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
}

.cybersecurity-feature-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #1d1d1f;
  line-height: 1.4;
}

.cta-wrapper {
  text-align: center;
}

.cybersecurity-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  margin: auto;
  text-decoration: none;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8300 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 127, 0, 0.3);
  border: none;
  cursor: pointer;
}

.cybersecurity-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 127, 0, 0.4);
  background: linear-gradient(135deg, #ff8700 0%, #ff7f00 100%);
}

.cybersecurity-cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(255, 127, 0, 0.3);
}

/* Services Section */
.cybersecurity-services {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
  position: relative;
}

.cybersecurity-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 127, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cybersecurity-services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cybersecurity-services-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cybersecurity-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.cybersecurity-service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 127, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.cybersecurity-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8700 100%);
}

.cybersecurity-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 127, 0, 0.15);
  border-color: rgba(255, 127, 0, 0.2);
}

.cybersecurity-service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8700 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cybersecurity-service-card:hover .cybersecurity-service-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 127, 0, 0.4);
}

.cybersecurity-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.cybersecurity-service-card p {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Responsive Design for Cybersecurity Page */

/* Large Desktop */
@media (min-width: 1440px) {
  .cybersecurity-hero-title {
    font-size: 5rem;
  }
  
  .cybersecurity-partnership-title {
    font-size: 3rem;
  }
  
  .cybersecurity-services-title {
    font-size: 3.5rem;
  }
  
  .cybersecurity-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (max-width: 1439px) and (min-width: 1024px) {
  .cybersecurity-partnership-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cybersecurity-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .cybersecurity-hero {
    padding: 4rem 1.5rem 3rem;
  }
  
  .cybersecurity-partnership,
  .cybersecurity-services {
    padding: 4rem 1.5rem;
  }
  
  .cybersecurity-partnership-title {
    font-size: 2.25rem;
  }
  
  .cybersecurity-services-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .cybersecurity-partnership-card {
    padding: 2.5rem 2rem;
  }
  
  .cybersecurity-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cybersecurity-partnership-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  .cybersecurity-hero {
    padding: 3rem 1rem 2.5rem;
  }
  
  .cybersecurity-hero-title {
    font-size: 2.5rem;
  }
  
  .cybersecurity-hero-subtitle {
    font-size: 1.5rem;
  }
  
  .cybersecurity-partnership,
  .cybersecurity-services {
    padding: 3rem 1rem;
  }
  
  .cybersecurity-partnership-title {
    font-size: 2rem;
  }
  
  .cybersecurity-services-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
  
  .cybersecurity-partnership-card {
    padding: 2rem 1.5rem;
  }
  
  .cybersecurity-service-card {
    padding: 2rem 1.5rem;
  }
  
  .cybersecurity-feature-item {
    padding: 0.875rem;
  }
  
  .cybersecurity-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .cybersecurity-service-icon {
    width: 60px;
    height: 60px;
  }
}

/* Mobile Small */
@media (max-width: 479px) {
  .cybersecurity-hero {
    padding: 2.5rem 0.75rem 2rem;
  }
  
  .cybersecurity-hero-title {
    font-size: 2rem;
  }
  
  .cybersecurity-hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cybersecurity-hero-description {
    font-size: 1rem;
  }
  
  .cybersecurity-partnership,
  .cybersecurity-services {
    padding: 2.5rem 0.75rem;
  }
  
  .cybersecurity-partnership-title {
    font-size: 1.75rem;
  }
  
  .cybersecurity-partnership-description {
    font-size: 1rem;
  }
  
  .cybersecurity-services-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
  
  .cybersecurity-partnership-card {
    padding: 1.5rem 1rem;
  }
  
  .cybersecurity-service-card {
    padding: 1.75rem 1rem;
  }
  
  .cybersecurity-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cybersecurity-partnership-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cybersecurity-feature-item {
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .cybersecurity-feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .cybersecurity-service-icon {
    width: 48px;
    height: 48px;
  }
  
  .cybersecurity-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Accessibility Enhancements for Cybersecurity Page */
@media (prefers-reduced-motion: reduce) {
  .cybersecurity-hero {
    animation: none;
    background: linear-gradient(135deg, #ffffff 0%, #ff7f00 25%, #ff8700 50%, #ff8300 75%, #ffffff 100%);
  }
  
  .cybersecurity-hero-content,
  .cybersecurity-partnership-card,
  .cybersecurity-service-card,
  .cybersecurity-feature-icon,
  .cybersecurity-service-icon,
  .cybersecurity-cta-button {
    transition: none;
  }
  
  .cybersecurity-partnership-card:hover,
  .cybersecurity-service-card:hover,
  .cybersecurity-feature-item:hover,
  .cybersecurity-cta-button:hover {
    transform: none;
  }
}

/* High Contrast Mode for Cybersecurity Page */
@media (prefers-contrast: high) {
  .cybersecurity-partnership-card,
  .cybersecurity-service-card {
    border: 2px solid #000;
  }
  
  .cybersecurity-feature-icon,
  .cybersecurity-service-icon,
  .cybersecurity-cta-button {
    background: #000;
    border: 2px solid #fff;
  }
  
  .cybersecurity-partnership-title,
  .cybersecurity-service-card h3 {
    color: #000;
  }
  
  .cybersecurity-cta-button {
    color: #fff;
  }
}

/* Touch Device Optimizations for Cybersecurity Page */
@media (hover: none) and (pointer: coarse) {
  .cybersecurity-partnership-card:hover,
  .cybersecurity-service-card:hover,
  .cybersecurity-feature-item:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  
  .cybersecurity-feature-item:hover {
    transform: none;
  }
  
  .cybersecurity-cta-button:hover {
    transform: none;
  }
  
  .cybersecurity-partnership-card:active,
  .cybersecurity-service-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}

/* =========================
   CYBERSECURITY PAGE STYLES
========================= */

/* Hero Section */
.cybersecurity-hero {
  background: linear-gradient(135deg, #ff7f00 0%, #ff8700 50%, #ff8300 100%);
  color: white;
  padding: 8rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cybersecurity-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cybersecurity-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.cybersecurity-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cybersecurity-hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.2;
}

.cybersecurity-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Partnership Section */
.cybersecurity-partnership {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.cybersecurity-partnership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 127, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cybersecurity-partnership-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cybersecurity-partnership-card {
  background: white;
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 60px rgba(255, 127, 0, 0.1);
  border: 1px solid rgba(255, 127, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.cybersecurity-partnership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8300 100%);
}

.cybersecurity-partnership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(255, 127, 0, 0.15);
}

.cybersecurity-partnership-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff7f00;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cybersecurity-partnership-description {
  font-size: 1.125rem;
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cybersecurity-partnership-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cybersecurity-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 127, 0, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 127, 0, 0.1);
}

.cybersecurity-feature-item:hover {
  background: rgba(255, 127, 0, 0.1);
  transform: translateX(4px);
}

.cybersecurity-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8300 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cybersecurity-feature-item:hover .cybersecurity-feature-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 127, 0, 0.3);
}

.cybersecurity-feature-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #1d1d1f;
}

/* CTA Button */
.cybersecurity-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8300 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cybersecurity-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cybersecurity-cta-button:hover::before {
  left: 100%;
}

.cybersecurity-cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 127, 0, 0.4);
}

.cybersecurity-cta-button:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
}

/* Services Section */
.cybersecurity-services {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.cybersecurity-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 135, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cybersecurity-services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cybersecurity-services-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ff7f00;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
  position: relative;
}

.cybersecurity-services-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8300 100%);
  border-radius: 2px;
}

.cybersecurity-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.cybersecurity-service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 127, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.cybersecurity-service-card:nth-child(1) { animation-delay: 0.1s; }
.cybersecurity-service-card:nth-child(2) { animation-delay: 0.2s; }
.cybersecurity-service-card:nth-child(3) { animation-delay: 0.3s; }
.cybersecurity-service-card:nth-child(4) { animation-delay: 0.4s; }
.cybersecurity-service-card:nth-child(5) { animation-delay: 0.5s; }
.cybersecurity-service-card:nth-child(6) { animation-delay: 0.6s; }

.cybersecurity-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8300 100%);
}

.cybersecurity-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 127, 0, 0.15);
  border-color: rgba(255, 127, 0, 0.2);
}

.cybersecurity-service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff7f00 0%, #ff8300 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cybersecurity-service-card:hover .cybersecurity-service-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 127, 0, 0.3);
}

.cybersecurity-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff7f00;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.cybersecurity-service-card p {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Active Navigation Styles */
.desktop-nav a.active {
  color: #1454ac !important;
  opacity: 1;
  font-weight: 600;
}

.mobile-active {
  color: #1454ac !important;
  font-weight: 600;
  background: rgba(255, 127, 0, 0.1) !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Cybersecurity Page */

/* Large Desktop */
@media (min-width: 1440px) {
  .cybersecurity-hero {
    padding: 10rem 2rem 8rem;
  }
  
  .cybersecurity-partnership-card {
    padding: 5rem 4rem;
  }
  
  .cybersecurity-services {
    padding: 8rem 2rem;
  }
  
  .cybersecurity-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (max-width: 1439px) and (min-width: 1024px) {
  .cybersecurity-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .cybersecurity-hero {
    padding: 6rem 1.5rem 4rem;
  }
  
  .cybersecurity-partnership {
    padding: 4rem 1.5rem;
  }
  
  .cybersecurity-partnership-card {
    padding: 3rem 2.5rem;
  }
  
  .cybersecurity-partnership-title {
    font-size: 2.25rem;
  }
  
  .cybersecurity-partnership-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cybersecurity-services {
    padding: 4rem 1.5rem;
  }
  
  .cybersecurity-services-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .cybersecurity-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  .cybersecurity-hero {
    padding: 4rem 1rem 3rem;
    min-height: 70vh;
  }
  
  .cybersecurity-hero-title {
    font-size: 2.5rem;
  }
  
  .cybersecurity-hero-subtitle {
    font-size: 1.5rem;
  }
  
  .cybersecurity-hero-description {
    font-size: 1.125rem;
  }
  
  .cybersecurity-partnership {
    padding: 3rem 1rem;
  }
  
  .cybersecurity-partnership-card {
    padding: 2.5rem 2rem;
  }
  
  .cybersecurity-partnership-title {
    font-size: 2rem;
  }
  
  .cybersecurity-partnership-description {
    font-size: 1rem;
  }
  
  .cybersecurity-partnership-features {
    grid-template-columns: 1fr;
  }
  
  .cybersecurity-feature-item {
    padding: 0.75rem;
  }
  
  .cybersecurity-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .cybersecurity-services {
    padding: 3rem 1rem;
  }
  
  .cybersecurity-services-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .cybersecurity-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cybersecurity-service-card {
    padding: 2rem 1.5rem;
  }
}

/* Mobile Small */
@media (max-width: 479px) {
  .cybersecurity-hero {
    padding: 3rem 0.75rem 2.5rem;
    min-height: 60vh;
  }
  
  .cybersecurity-hero-title {
    font-size: 2rem;
  }
  
  .cybersecurity-hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cybersecurity-hero-description {
    font-size: 1rem;
  }
  
  .cybersecurity-partnership {
    padding: 2.5rem 0.75rem;
  }
  
  .cybersecurity-partnership-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .cybersecurity-partnership-title {
    font-size: 1.75rem;
  }
  
  .cybersecurity-partnership-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .cybersecurity-partnership-features {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .cybersecurity-feature-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .cybersecurity-feature-icon {
    width: 32px;
    height: 32px;
  }
  
  .cybersecurity-feature-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .cybersecurity-feature-item span {
    font-size: 0.9rem;
  }
  
  .cybersecurity-cta-button {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
  }
  
  .cybersecurity-services {
    padding: 2.5rem 0.75rem;
  }
  
  .cybersecurity-services-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .cybersecurity-service-card {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }
  
  .cybersecurity-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .cybersecurity-service-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .cybersecurity-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .cybersecurity-service-card p {
    font-size: 0.9rem;
  }
}

/* Accessibility Enhancements for Cybersecurity */
@media (prefers-reduced-motion: reduce) {
  .cybersecurity-hero-container,
  .cybersecurity-service-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .cybersecurity-partnership-card,
  .cybersecurity-service-card,
  .cybersecurity-feature-item,
  .cybersecurity-service-icon,
  .cybersecurity-cta-button {
    transition: none;
  }
  
  .cybersecurity-partnership-card:hover,
  .cybersecurity-service-card:hover,
  .cybersecurity-feature-item:hover {
    transform: none;
  }
}

/* High Contrast Mode for Cybersecurity */
@media (prefers-contrast: high) {
  .cybersecurity-partnership-card,
  .cybersecurity-service-card {
    border: 2px solid #ff7f00;
  }
  
  .cybersecurity-feature-icon,
  .cybersecurity-service-icon {
    background: #ff7f00;
    border: 2px solid #000;
  }
  
  .cybersecurity-partnership-title,
  .cybersecurity-service-card h3 {
    color: #000;
  }
  
  .cybersecurity-cta-button {
    background: #000;
    color: #fff;
    border: 2px solid #000;
  }
}

/* Scroll Animations for Cybersecurity */
.cybersecurity-service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.cybersecurity-service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Focus styles for accessibility */
.cybersecurity-cta-button:focus,
.cybersecurity-service-card:focus {
  outline: 2px solid #ff7f00;
  outline-offset: 2px;
}

.cybersecurity-feature-item:focus {
  outline: 2px solid #ff7f00;
  outline-offset: 2px;
  border-radius: 8px;
}


