

/* 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;
  padding-top: 44px;
}

/* 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-nav {
  position: fixed;          /* ← was sticky */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 44px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.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;
  font-weight: bold;
}

.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: #000000;
  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(255, 255, 255, 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: 14;
  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: #000000;
  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: 500px;
}

.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;
  }
}




/* =========================
   HOME PAGE STYLES
==========================*/

/* =========================
   GLOBAL HORIZONTAL SCROLL FIX
========================= */

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* =========================
   APPLE MEGA DROPDOWN MENU
   (Desktop > 1024px only)
========================= */

@media (min-width: 1025px) {
  .nav-item .dropdown {
    display: none !important;
  }
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(22, 22, 23, 0.96);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mega-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-dropdown-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 28px 20px;
}

.mega-menu {
  display: none;
}

.mega-menu.active {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}

.mega-menu-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 6px;
}

.mega-menu-col h4 a {
  color: #f5f5f7;
  text-decoration: none;
}

.mega-menu-col a {
  font-size: 13px;
  color: rgba(245,245,247,0.65);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s ease;
}

.mega-menu-col a:hover {
  color: #f5f5f7;
}

@media (max-width: 1024px) {
  .mega-dropdown {
    display: none !important;
  }
}

/* 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 {
    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 {
    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{
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  } 
}

/* =========================
   HERO SECTION — APPLE BENTO GRID
========================= */

.hero-section {
  width: 100%;
  padding: 12px;
  background: #f5f5f7;
  box-sizing: border-box;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.hero-card--full  { grid-column: span 2; }
.hero-card--half  { grid-column: span 1; }

/* Base card — Apple neutral grey */
.hero-card {
  background: #fbfbfd;
  border-radius: 18px;
  padding: 56px 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
  min-height: 580px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.hero-card:hover {
  transform: scale(1.004);
}

/* Text block */
.hero-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-card__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

/* Apple-scale typography */
.hero-card__title {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}

.hero-card__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  max-width: 520px;
}

/* Buttons */
.hero-card__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.hero-btn:hover {
  opacity: 0.82;
  transform: scale(1.02);
}

.hero-btn--primary {
  background: #0071e3;
  color: #fff;
}

.hero-btn--primary2 {
  background: linear-gradient(135deg, #005944 0%, #0a7c5a 50%, #005944 100%);
  color: #fff;
  margin-top: 15px;
}

.hero-btn--primary3 {
  background: #ff0000;
  color: #fff;
}

.hero-btn--primary4 {
  background: #8dbe44;
  color: #fff;
}

.hero-btn--primary5 {
  background: #008a44;
  color: #fff;
}

.hero-btn--primary6 {
  background: #116ab3;
  color: #fff;
}

.hero-btn--primary7 {
  background-color: #AF1E2D;
  color: #fff;
}

@media (min-width: 1440px) {
  .hero-btn--primary2 {
    margin-top: 40px;
  }
}

.hero-btn--secondary-light {
  background: transparent;
  color: #f5f5f7;
  border: 1.5px solid rgba(245,245,247,0.5);
}

.hero-btn--secondary-dark {
  background: transparent;
  color: #1d1d1f;
  border: 1.5px solid rgba(29,29,31,0.28);
}

/* Image — dominant, anchors the card at the bottom */
.hero-card__image {
  margin-top: 28px;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

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



.hero-card__image img {
  width: 100%;          /* fill the full card width */
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.hero-card--half .hero-card__image img {
  max-height: 400px;
}
/* =========================
   RESPONSIVE
========================= */

@media (min-width: 1600px) {
  .hero-card {
    min-height: 660px;
  }
  .hero-card__image img         { max-height: 520px; }
  .hero-card--full .hero-card__image img  { max-height: 580px; }
  .hero-card--half .hero-card__image img  { max-height: 480px; }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .hero-section { padding: 10px; }
  .hero-grid    { gap: 10px; }

  .hero-card {
    padding: 44px 32px 0;
    min-height: 460px;
  }

  .hero-card__image img         { max-height: 320px; }
  .hero-card--full .hero-card__image img  { max-height: 370px; }
  .hero-card--half .hero-card__image img  { max-height: 300px; }
}

@media (max-width: 767px) {
  .hero-section { padding: 8px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-card--full,
  .hero-card--half {
    grid-column: span 1;
  }

  .hero-card {
    padding: 40px 24px 0;
    min-height: 420px;
    border-radius: 14px;
  }

  .hero-card__image img,
  .hero-card--full .hero-card__image img,
  .hero-card--half .hero-card__image img {
    max-height: 300px;
  }
}

@media (max-width: 400px) {
  .hero-card {
    padding: 32px 18px 0;
    min-height: 360px;
  }

  .hero-card__buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-card__image img,
  .hero-card--full .hero-card__image img,
  .hero-card--half .hero-card__image img {
    max-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card, .hero-btn, .mega-dropdown { transition: none; }
  .hero-card:hover { transform: none; }
}
/* =============================================================================
   NETWORK SECURITY & DESIGN — Stylesheet
   Aesthetic: Industrial Minimalist · Cybersecurity · Precision-engineered
   Structure: Variables → Base → Layout → Sections → Components → Utilities → Responsive
   ============================================================================= */

/* -----------------------------------------------------------------------------
   ROOT VARIABLES
   ----------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --color-bg-primary:      #0a0c0f;
  --color-bg-secondary:    #0f1318;
  --color-bg-surface:      #141920;
  --color-bg-elevated:     #1a2130;
  --color-bg-light:        #f4f5f7;
  --color-bg-light-alt:    #eef0f3;

  --color-accent:          #0066cc;
  --color-accent-bright:   #1a8cff;
  --color-accent-dim:      rgba(0, 102, 204, 0.15);
  --color-accent-border:   rgba(0, 102, 204, 0.25);

  --color-text-primary:    #e8eaed;
  --color-text-secondary:  rgba(232, 234, 237, 0.65);
  --color-text-muted:      rgba(232, 234, 237, 0.4);
  --color-text-dark:       #1c1e23;
  --color-text-dark-sub:   #4a5568;

  --color-border-dark:     rgba(255, 255, 255, 0.07);
  --color-border-light:    rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-display:   'DM Mono', 'Courier New', monospace;
  --font-heading:   'Barlow', 'Helvetica Neue', sans-serif;
  --font-body:      'Barlow', 'Helvetica Neue', sans-serif;

  /* Spacing Scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Borders */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  /* Shadows */
  --shadow-card:   0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.25);
  --shadow-raised: 0 2px 8px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.3);

  /* Layout */
  --max-width: 1180px;
  --section-pad: var(--space-xl) var(--space-md);
}

/* -----------------------------------------------------------------------------
   BASE IMPORTS & FONT STACK
   ----------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* -----------------------------------------------------------------------------
   BASE
   ----------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -----------------------------------------------------------------------------
   SHARED LAYOUT
   ----------------------------------------------------------------------------- */
.network-hero-container,
.network-security-container,
.asset-security-container,
.security-policy-container,
.utm-security-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* -----------------------------------------------------------------------------
   SECTION TITLES
   ----------------------------------------------------------------------------- */
.network-section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  color: inherit;
}

.network-section-title::before {
  content: '//';
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-accent-bright);
  display: block;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.1em;
}

.network-section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-accent-bright);
  margin: var(--space-sm) auto 0;
  border-radius: 1px;
}

/* -----------------------------------------------------------------------------
   HERO SECTION
   ----------------------------------------------------------------------------- */
.network-hero-section {
  background-color: var(--color-bg-primary);
  background-image:
    linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  color: var(--color-text-primary);
  padding: 7rem var(--space-md) 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture overlay */
.network-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 204, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 204, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Accent glow — bottom only, subtle */
.network-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  pointer-events: none;
}

.network-hero-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  position: relative;
}

/* Accent bracket decorations */
.network-hero-title::before {
  content: '[';
  color: var(--color-accent-bright);
  margin-right: 0.15em;
}

.network-hero-title::after {
  content: ']';
  color: var(--color-accent-bright);
  margin-left: 0.15em;
}

.network-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.network-hero-visual {
  margin-top: var(--space-lg);
  opacity: 0.55;
  filter: hue-rotate(0deg) saturate(0.8);
}

/* -----------------------------------------------------------------------------
   NETWORK SECURITY SECTION
   ----------------------------------------------------------------------------- */
.network-security-section {
  padding: var(--section-pad);
  background: var(--color-bg-light);
  position: relative;
}

.network-security-section::before {
  display: none; /* remove old pseudo */
}

.network-security-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease;
}

.network-security-card::before {
  display: none;
}

.network-security-card:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.06);
}

.network-security-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.network-security-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.network-security-icon svg {
  width: 24px;
  height: 24px;
}

.network-security-card:hover .network-security-icon {
  transform: none;
  box-shadow: none;
}

.network-security-content p {
  font-size: 1rem;
  color: var(--color-text-dark-sub);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

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

/* -----------------------------------------------------------------------------
   ASSET SECURITY SECTION
   ----------------------------------------------------------------------------- */
.asset-security-section {
  padding: var(--section-pad);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  position: relative;
}

.asset-security-section::before {
  display: none;
}

.asset-security-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.asset-security-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.asset-security-text p:last-child {
  margin-bottom: 0;
}

.asset-security-divider {
  height: 1px;
  background: var(--color-border-dark);
  margin: var(--space-md) 0;
  border-radius: 1px;
}

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

.asset-security-icon {
  width: 100px;
  height: 100px;
  background: var(--color-accent-dim);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-bright);
}

.asset-security-icon svg {
  width: 52px;
  height: 52px;
}

.asset-security-section:hover .asset-security-icon {
  transform: none;
  background: var(--color-accent-dim);
  border-color: var(--color-accent-border);
}

/* section title override for dark bg */
.asset-security-section .network-section-title,
.utm-security-section .network-section-title {
  color: var(--color-text-primary);
}

/* -----------------------------------------------------------------------------
   SECURITY POLICY SECTION
   ----------------------------------------------------------------------------- */
.security-policy-section {
  padding: var(--section-pad);
  background: var(--color-bg-light-alt);
  position: relative;
}

.security-policy-section::before {
  display: none;
}

.security-policy-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  border-left: 3px solid var(--color-accent);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  position: relative;
}

/* Remove old pseudo-element borders */
.security-policy-card::before,
.security-policy-card::after {
  display: none;
}

.security-policy-card p {
  font-size: 1rem;
  color: var(--color-text-dark-sub);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

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

/* -----------------------------------------------------------------------------
   UTM SECURITY SECTION
   ----------------------------------------------------------------------------- */
.utm-security-section {
  padding: var(--section-pad);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  position: relative;
}

.utm-security-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 204, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.utm-intro {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.utm-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

/* -----------------------------------------------------------------------------
   UTM FEATURES GRID
   ----------------------------------------------------------------------------- */
.utm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.utm-feature-item {
  background: var(--color-bg-surface);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: background 0.2s ease;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
}

.utm-feature-item:hover {
  transform: none;
  background: var(--color-bg-elevated);
  border-color: transparent;
  box-shadow: none;
}

.utm-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-dim);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-bright);
  margin: 0 auto var(--space-sm);
}

.utm-feature-icon svg {
  width: 20px;
  height: 20px;
}

.utm-feature-item:hover .utm-feature-icon {
  transform: none;
  box-shadow: none;
  background: rgba(0, 102, 204, 0.22);
}

.utm-feature-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* -----------------------------------------------------------------------------
   UTM CONCLUSION
   ----------------------------------------------------------------------------- */
.utm-conclusion {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-dark);
  border-top: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  backdrop-filter: none;
}

.utm-conclusion p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

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

/* -----------------------------------------------------------------------------
   UTILITIES — Text Highlights
   ----------------------------------------------------------------------------- */
.highlight-azure {
  color: var(--color-accent-bright);
  font-weight: 600;
}

.gradient-text {
  color: var(--color-accent-bright);
  font-weight: 600;

  /* Fallback to solid; only apply gradient if supported */
  background: none;
  -webkit-text-fill-color: currentColor;
}

@supports (-webkit-background-clip: text) {
  .gradient-text {
    background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* -----------------------------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------------------------- */

/* Large Desktop */
@media (min-width: 1440px) {
  .network-hero-title {
    font-size: 3.25rem;
  }

  .network-section-title {
    font-size: 2rem;
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  :root {
    --section-pad: 3.5rem 1.5rem;
  }

  .network-hero-section {
    padding: 5rem 1.5rem 3.5rem;
  }

  .network-hero-title {
    font-size: 2.1rem;
  }

  .network-section-title {
    font-size: 1.5rem;
  }

  .network-security-content {
    flex-direction: column;
    gap: var(--space-md);
  }

  .asset-security-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .utm-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 480px) {
  :root {
    --section-pad: 3rem 1.25rem;
  }

  .network-hero-title {
    font-size: 1.6rem;
  }

  .network-hero-title::before,
  .network-hero-title::after {
    display: none;
  }

  .network-section-title {
    font-size: 1.35rem;
  }

  .network-security-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .asset-security-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .utm-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Small */
@media (max-width: 479px) {
  :root {
    --section-pad: 2.5rem 1rem;
  }

  .network-hero-section {
    padding: 3.5rem 1rem 2.5rem;
  }

  .network-hero-title {
    font-size: 1.35rem;
    letter-spacing: 0.04em;
  }

  .network-hero-title::before,
  .network-hero-title::after {
    display: none;
  }

  .network-hero-subtitle {
    font-size: 0.9rem;
  }

  .network-hero-visual svg {
    width: 80px;
    height: 80px;
  }

  .network-section-title {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
  }

  .network-security-card,
  .security-policy-card,
  .utm-conclusion {
    padding: var(--space-md);
  }

  .network-security-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .network-security-icon {
    align-self: center;
  }

  .asset-security-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .asset-security-divider {
    margin: var(--space-sm) 0;
  }

  .utm-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .utm-feature-item {
    padding: var(--space-md) var(--space-sm);
  }
}

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

@media (prefers-contrast: high) {
  :root {
    --color-accent: #0055b3;
    --color-accent-bright: #1a7fe0;
  }

  .network-security-card,
  .security-policy-card {
    border-width: 2px;
  }

  .utm-feature-item {
    border: 1px solid var(--color-accent-border);
  }
}


/* =========================
   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;
  flex-wrap: wrap;
}

.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;
}

/* Tablet (≤900px) */
@media (max-width: 900px) {
  .iphone-overview-title2 {
    font-size: 2.5rem;
  }

  .iphone-icon-row { 
    gap: 2.5rem;
  }

  .iphone-icon {
    width: 90px;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .iphone-overview-section {
    padding: 3rem 1.5rem;
  }

  .iphone-overview-title2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .iphone-icon-row {
    gap: 1.5rem 1rem;
    justify-content: space-around;
  }

  .iphone-icon-item {
    flex: 0 1 calc(33.33% - 1rem);
    min-width: 80px;
  }

  .iphone-icon {
    width: 64px;
    margin-bottom: 0.75rem;
  }

  .iphone-model {
    font-size: 0.875rem;
  }

  .iphone-status {
    font-size: 0.7rem;
    letter-spacing: 0;
  }
}

/* Small phones (≤380px) */
@media (max-width: 380px) {
  .iphone-icon-item {
    flex: 0 1 calc(33.33% - 0.5rem);
    min-width: 70px;
  }

  .iphone-icon {
    width: 54px;
  }

  .iphone-model  { font-size: 0.8rem; }
  .iphone-status { font-size: 0.65rem; }
}


  
  /* 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;
  }
}


    

/* =========================
   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 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;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.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 Grid — Apple.com Standard
   Fixes: grid layout, typography scale, hover
   states, color, spacing, animation timing
   ───────────────────────────────────────────── */

/* ── Section Shell ── */
.ipad-bento-section {
  padding: 6rem 1.5rem;          /* Apple uses 1.5rem gutter at base */
  background: #1d1d1f;
  color: #f5f5f7;
  position: relative;
  overflow: hidden;
}

/* Subtle ambient — reduced opacity, single source */
.ipad-bento-section::before {
  content: '';
  position: absolute;
  inset: 0;
  
  pointer-events: none;
}

.ipad-bento-container {
  max-width: 1200px;             /* Apple's standard content column */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ── Section Intro (optional header above grid) ── */
.ipad-bento-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.ipad-bento-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #f5f5f7;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.ipad-bento-intro p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: #6e6e73;
  font-weight: 400;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}


/* ─────────────────────────────────────────────
   GRID — 12-column base, named areas fully
   defined for every breakpoint.
   Cards: 7 items, each area declared below.
   ───────────────────────────────────────────── */
.ipad-bento-grid {
  display: grid;
  gap: 1rem;                     /* Apple uses tight, consistent gaps */

  /* Wide desktop: 4 equal columns */
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-template-areas:
    "chip    chip    ipados  ipados"
    "chip    chip    aicard  aicard"
    "design  design  display display"
    "design  design  display display"
    "camera  camera  battery battery";
}


/* ─────────────────────────────────────────────
   BASE CARD
   ───────────────────────────────────────────── */
.ipad-bento-card {
  background: #000;
  border-radius: 20px;           /* Apple standard at this scale */
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Entry animation state */
  opacity: 0;
  transform: translateY(20px);   /* Subtle — Apple never overdoes entry */
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 0.3s ease;
}

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

/* Apple uses barely perceptible hover lifts — 4px max */
.ipad-bento-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

/* Prevent hover transform fighting with entry transform */
.ipad-bento-card:not(.animate-in):hover {
  transform: translateY(20px);  /* Keep pre-animation state intact */
}


/* ─────────────────────────────────────────────
   STAGGER DELAYS — Apple staggers at 80–100ms
   ───────────────────────────────────────────── */
.ipad-bento-card:nth-child(1) { transition-delay: 0.05s; }
.ipad-bento-card:nth-child(2) { transition-delay: 0.13s; }
.ipad-bento-card:nth-child(3) { transition-delay: 0.21s; }
.ipad-bento-card:nth-child(4) { transition-delay: 0.29s; }
.ipad-bento-card:nth-child(5) { transition-delay: 0.37s; }
.ipad-bento-card:nth-child(6) { transition-delay: 0.45s; }
.ipad-bento-card:nth-child(7) { transition-delay: 0.53s; }


/* ─────────────────────────────────────────────
   GRID AREA ASSIGNMENTS
   ───────────────────────────────────────────── */
.ipad-bento-card--chip    { grid-area: chip; }
.ipad-bento-card--ipados  { grid-area: ipados; }
.ipad-bento-card--ai      { grid-area: aicard; }
.ipad-bento-card--design  { grid-area: design; }
.ipad-bento-card--display { grid-area: display; }
.ipad-bento-card--battery { grid-area: battery; }
.ipad-bento-card--camera  { grid-area: camera; }

/* Legacy nth-child fallback for existing markup */
.ipad-bento-card:nth-child(1) { grid-area: chip; }
.ipad-bento-card:nth-child(2) { grid-area: ipados; }
.ipad-bento-card:nth-child(3) { grid-area: aicard; }
.ipad-bento-card:nth-child(4) { grid-area: design; }
.ipad-bento-card:nth-child(5) { grid-area: display; }
.ipad-bento-card:nth-child(6) { grid-area: battery; }
.ipad-bento-card:nth-child(7) { grid-area: camera; }


/* ─────────────────────────────────────────────
   CARD IMAGERY
   ───────────────────────────────────────────── */
.ipad-bento-image {
  flex: 1;                        /* Pushes content to bottom — Apple pattern */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  margin-bottom: 1.5rem;
}

.ipad-bento-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  /* Subtle Apple enhancement — no heavy filter */
  filter: brightness(1.05);
}


/* ─────────────────────────────────────────────
   CARD TYPOGRAPHY
   Apple pattern: eyebrow (optional) → headline → body
   ───────────────────────────────────────────── */
.ipad-bento-content {
  margin-top: auto;
}

.ipad-bento-content .eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e6e73;
  margin-bottom: 0.5rem;
}

.ipad-bento-content h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);   /* 26px at 1440 */
  font-weight: 700;
  color: #f5f5f7;
  margin: 0 0 0.625rem;
  line-height: 1.1;
  letter-spacing: -0.022em;      /* Apple's headline tracking */
}

.ipad-bento-content p {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: #6e6e73;                 /* Apple's secondary text — not #a1a1a6 */
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

/* Accent / highlight text (e.g. chip name in colour) */
.ipad-bento-content .highlight {
  background: linear-gradient(135deg, #af52de, #007aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ─────────────────────────────────────────────
   CARD COLOUR ACCENTS
   Apple tints individual bento cards sparingly
   ───────────────────────────────────────────── */

/* Chip card — subtle purple ambient */
.ipad-bento-card:nth-child(1)::after,
.ipad-bento-card--chip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(175, 82, 222, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Display card — subtle blue ambient */
.ipad-bento-card:nth-child(5)::after,
.ipad-bento-card--display::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(0, 122, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}


/* ─────────────────────────────────────────────
   RESPONSIVE — Tablet (1024px)
   3-column grid
   ───────────────────────────────────────────── */
@media (max-width: 1023px) and (min-width: 768px) {
  .ipad-bento-section {
    padding: 5rem 1.5rem;
  }

  .ipad-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "chip    chip"
      "ipados  aicard"
      "design  display"
      "camera  battery";
    gap: 0.875rem;
  }

  .ipad-bento-card {
    padding: 2rem 1.75rem;
  }

  .ipad-bento-image {
    min-height: 120px;
  }
}


/* ─────────────────────────────────────────────
   RESPONSIVE — Mobile Large (480–767px)
   2-column grid, key cards full-width
   ───────────────────────────────────────────── */
@media (max-width: 767px) and (min-width: 480px) {
  .ipad-bento-section {
    padding: 4rem 1rem;
  }

  .ipad-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "chip    chip"
      "ipados  aicard"
      "design  design"
      "display display"
      "camera  battery";
    gap: 0.75rem;
  }

  .ipad-bento-card {
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
  }

  .ipad-bento-image {
    min-height: 100px;
    margin-bottom: 1.25rem;
  }

  .ipad-bento-content h3 {
    font-size: 1.25rem;
  }
}


/* ─────────────────────────────────────────────
   RESPONSIVE — Mobile Small (<480px)
   Single column, everything stacked
   ───────────────────────────────────────────── */
@media (max-width: 479px) {
  .ipad-bento-section {
    padding: 3rem 0.875rem;
  }

  .ipad-bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "chip"
      "ipados"
      "aicard"
      "design"
      "display"
      "camera"
      "battery";
    gap: 0.625rem;
  }

  .ipad-bento-card {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .ipad-bento-image {
    min-height: 90px;
    margin-bottom: 1rem;
  }

  .ipad-bento-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
  }

  .ipad-bento-content p {
    font-size: 0.875rem;
  }
}


/* ─────────────────────────────────────────────
   LARGE DESKTOP (≥1440px)
   More breathing room, slightly larger type
   ───────────────────────────────────────────── */
@media (min-width: 1440px) {
  .ipad-bento-section {
    padding: 7rem 2rem;
  }

  .ipad-bento-container {
    max-width: 1320px;
  }

  .ipad-bento-grid {
    gap: 1.25rem;
  }

  .ipad-bento-card {
    padding: 2.75rem 2.5rem;
  }

  .ipad-bento-image {
    min-height: 180px;
  }
}


/* ─────────────────────────────────────────────
   ACCESSIBILITY
   ───────────────────────────────────────────── */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ipad-bento-card {
    transition: box-shadow 0.2s ease;
    opacity: 1;
    transform: none;
  }

  .ipad-bento-card.animate-in {
    opacity: 1;
    transform: none;
  }

  .ipad-bento-card:hover {
    transform: none;
  }
}

/* High contrast */
@media (prefers-contrast: high) {
  .ipad-bento-card {
    outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: 0;
  }

  .ipad-bento-content p {
    color: #ababab;
  }
}

/* Touch devices — disable hover lift, use press feedback */
@media (hover: none) and (pointer: coarse) {
  .ipad-bento-card:hover {
    transform: none;
    box-shadow: none;
  }

  .ipad-bento-card:active {
    transform: scale(0.985);
    transition: transform 0.12s ease;
  }
}

/* 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-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-why-section {
    padding: 5rem 1.5rem;
  }
  
  
  
  .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-why-section {
    padding: 4rem 1rem;
  }
  
  
  
  .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-why-section {
    padding: 3rem 0.75rem;
  }
  
  
  
  .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-why-intro,
  .ipad-why-card {
    transition: none;
    animation: none;
  }
  
  .ipad-hero-image.animate-in,
  .ipad-hero-content.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-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-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, #409eff 0%, #66b3ff 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, #409eff 0%, #66b3ff 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, #409eff 0%, #66b3ff 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: #409eff;
  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, #409eff 0%, #66b3ff 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: #409eff;
  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, #409eff 0%, #66b3ff 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: #409eff;
  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, #409eff 0%, #66b3ff 100%);
  color: white;
  border-color: #409eff;
}

.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;
  }
}


