/*
  Casual Browser Page Styles
  Organized by sections with meaningful class names
*/

/* ==========================================================================
   CSS Variables and Base Styles
   ========================================================================== */

:root {
  /* Colors from Figma design */
  --casual-browser-white: #ffffff;
  --casual-browser-gray-50: #f9fafb;
  --casual-browser-gray-100: #f3f4f6;
  --casual-browser-gray-200: #e5e7eb;
  --casual-browser-gray-300: #d1d5db;
  --casual-browser-gray-400: #9ca3af;
  --casual-browser-gray-500: #6b7280;
  --casual-browser-gray-600: #4b5563;
  --casual-browser-gray-700: #374151;
  --casual-browser-gray-800: #1f2937;
  --casual-browser-gray-900: #111827;

  /* Brand colors */
  --casual-browser-blue-50: #eff6ff;
  --casual-browser-blue-100: #dbeafe;
  --casual-browser-blue-200: #bfdbfe;
  --casual-browser-blue-300: #93c5fd;
  --casual-browser-blue-400: #60a5fa;
  --casual-browser-blue-500: #3b82f6;
  --casual-browser-blue-600: #2563eb;
  --casual-browser-blue-700: #1d4ed8;
  --casual-browser-blue-800: #1e40af;
  --casual-browser-blue-900: #1e3a8a;

  /* Light blue background */
  --casual-browser-light-blue: #f2f6fe;

  /* Legacy color variables for compatibility */
  --color-white: #ffffff;
  --color-athens-gray: #e5e7eb;
  --color-river-bed: #4b5563;
  --color-oxford-blue: #1f2937;
  --color-brand: #2563eb;
  --color-brand-200: #1d4ed8;

  /* Typography */
  --casual-browser-font-family: "Nimbus Sans L", system-ui, -apple-system,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Font sizes and line heights for compatibility */
  --fs-16: 16px;
  --lh-24: 24px;
  --fs-60: 60px;

  /* Font sizes */
  --casual-browser-text-xs: 12px;
  --casual-browser-text-sm: 14px;
  --casual-browser-text-base: 16px;
  --casual-browser-text-lg: 18px;
  --casual-browser-text-xl: 20px;
  --casual-browser-text-2xl: 24px;
  --casual-browser-text-3xl: 30px;
  --casual-browser-text-4xl: 36px;
  --casual-browser-text-5xl: 48px;
  --casual-browser-text-6xl: 60px;

  /* Line heights */
  --casual-browser-leading-tight: 1.25;
  --casual-browser-leading-snug: 1.375;
  --casual-browser-leading-normal: 1.5;
  --casual-browser-leading-relaxed: 1.625;
  --casual-browser-leading-loose: 2;

  /* Spacing */
  --casual-browser-space-1: 4px;
  --casual-browser-space-2: 8px;
  --casual-browser-space-3: 12px;
  --casual-browser-space-4: 16px;
  --casual-browser-space-5: 20px;
  --casual-browser-space-6: 24px;
  --casual-browser-space-8: 32px;
  --casual-browser-space-10: 40px;
  --casual-browser-space-12: 48px;
  --casual-browser-space-16: 64px;
  --casual-browser-space-20: 80px;

  /* Border radius */
  --casual-browser-radius-sm: 4px;
  --casual-browser-radius-md: 8px;
  --casual-browser-radius-lg: 12px;
  --casual-browser-radius-xl: 16px;
  --casual-browser-radius-2xl: 20px;

  /* Shadows */
  --casual-browser-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --casual-browser-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --casual-browser-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --casual-browser-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base reset */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--casual-browser-font-family);
  font-size: var(--casual-browser-text-base);
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-600);
  background-color: var(--casual-browser-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}
/* ==========================================================================
   Container and Layout Utilities
   ========================================================================== */

.casual-browser-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--casual-browser-space-20);
}

@media (max-width: 1400px) {
  .casual-browser-container {
    padding: 0 var(--casual-browser-space-16);
  }
}

@media (max-width: 1200px) {
  .casual-browser-container {
    padding: 0 var(--casual-browser-space-12);
  }
}

@media (max-width: 768px) {
  .casual-browser-container {
    padding: 0 var(--casual-browser-space-4);
  }
}

/* ==========================================================================
   Header Section Styles
   ========================================================================== */

.casual-browser-header {
  background-color: var(--casual-browser-white);
  box-shadow: var(--casual-browser-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.casual-browser-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--casual-browser-space-4) 0;
}

.casual-browser-brand {
  display: flex;
  align-items: center;
  gap: var(--casual-browser-space-3);
}

.casual-browser-logo {
  width: 40px;
  height: 40px;
  border-radius: 5.625px;
  overflow: hidden;
}

.casual-browser-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casual-browser-brand-logo {
  height: 18px;
  width: auto;
}

.casual-browser-nav-links {
  display: flex;
  align-items: center;
  gap: var(--casual-browser-space-8);
}

.casual-browser-nav-link {
  font-size: var(--casual-browser-text-base);
  font-weight: 400;
  color: var(--casual-browser-gray-600);
  transition: color 0.2s ease;
}

.casual-browser-nav-link:hover {
  color: var(--casual-browser-gray-800);
}

.casual-browser-nav-dropdown {
  display: flex;
  align-items: center;
  gap: var(--casual-browser-space-1);
  background: none;
  border: none;
  font-size: var(--casual-browser-text-base);
  font-weight: 400;
  color: var(--casual-browser-gray-600);
  transition: color 0.2s ease;
}

.casual-browser-nav-dropdown:hover {
  color: var(--casual-browser-gray-800);
}

.casual-browser-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   Hero Section Styles - Exact Figma Specifications
   ========================================================================== */

.casual-browser-hero {
  background-color: #f2f6fe; /* Light blue Color from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
}

.made-for-hero-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 352px; /* px-[352px] from Figma */
}

.casual-browser-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px; /* Add gap to prevent overlap */
}

.casual-browser-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px; /* gap-[24px] from Figma */
  width: 584px; /* w-[584px] from Figma */
}

.casual-browser-hero-badge {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 16px; /* text-[16px] from Figma */
  line-height: 20px; /* leading-[20px] from Figma */
  color: #2563eb; /* text-blue-600 from Figma */
  text-transform: uppercase;
  margin: 0;
}

.casual-browser-hero-title {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 60px; /* text-[60px] from Figma */
  line-height: 60px; /* leading-[60px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  margin: 0;
}

.casual-browser-hero-description {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 20px; /* text-[20px] from Figma */
  line-height: 32.5px; /* leading-[32.5px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  margin: 0;
}

.casual-browser-hero-cta {
  background-color: #2563eb; /* bg-blue-600 from Figma */
  color: #ffffff; /* text-white from Figma */
  border: none;
  border-radius: 8px; /* rounded-[8px] from Figma */
  padding: 18px 32px; /* px-[32px] py-[18px] from Figma */
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 18px; /* text-[18px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  text-align: center;
  white-space: nowrap; /* text-nowrap from Figma */
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1); /* shadow from Figma */
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.casual-browser-hero-cta:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.casual-browser-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.casual-browser-hero-img {
  width: 510px; /* w-[510px] from Figma */
  height: 450px; /* h-[450px] from Figma */
  object-fit: cover;
  object-position: 50% 50%; /* object-50%-50% from Figma */
  border-radius: 16px; /* rounded-[16px] from Figma */
  pointer-events: none; /* pointer-events-none from Figma */
}

/* ==========================================================================
   Small Business Hero Section Styles - Exact Figma Specifications
   ========================================================================== */

.small-business-hero {
  background-color: #f2f6fe; /* Light blue Color from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
  box-sizing: border-box;
}

.small-business-hero-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 352px; /* px-[352px] from Figma */
  box-sizing: border-box;
}

.small-business-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px; /* Add gap to prevent overlap */
  box-sizing: border-box;
}

.small-business-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px; /* gap-[24px] from Figma */
  width: 584px; /* w-[584px] from Figma */
  box-sizing: border-box;
}

.small-business-hero-badge {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 16px; /* text-[16px] from Figma */
  line-height: 20px; /* leading-[20px] from Figma */
  color: #2563eb; /* Brand Color from Figma */
  text-transform: uppercase;
  margin: 0;
  box-sizing: border-box;
}

.small-business-hero-title {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 60px; /* font size/60 from Figma */
  line-height: 60px; /* leading-[60px] from Figma */
  color: #424242; /* Web/Tundora from Figma */
  margin: 0;
  box-sizing: border-box;
}

.small-business-hero-description {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 20px; /* font size/20 from Figma */
  line-height: 32.5px; /* line height/32_5 from Figma */
  color: #4b5563; /* Web/River Bed from Figma */
  margin: 0;
  box-sizing: border-box;
}

.small-business-hero-cta {
  background-color: #2563eb; /* Brand Color from Figma */
  color: #ffffff; /* Web/White from Figma */
  border: none;
  border-radius: 8px; /* rounded-[8px] from Figma */
  padding: 18px 32px; /* px-[32px] py-[18px] from Figma */
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 18px; /* font size/18 from Figma */
  line-height: 28px; /* line height/28 from Figma */
  text-align: center;
  white-space: nowrap; /* text-nowrap from Figma */
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1); /* shadow from Figma */
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
  box-sizing: border-box;
}

.small-business-hero-cta:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.small-business-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.small-business-hero-img {
  width: 510px; /* w-[510px] from Figma */
  height: 450px; /* h-[450px] from Figma */
  object-fit: cover;
  object-position: 50% 50%; /* object-50%-50% from Figma */
  border-radius: 16px; /* rounded-[16px] from Figma */
  pointer-events: none; /* pointer-events-none from Figma */
  box-sizing: border-box;
}

/* ==========================================================================
   Benefits Section Styles
   ========================================================================== */

.casual-browser-benefits {
  background-color: var(--casual-browser-white);
  padding: var(--casual-browser-space-20) 0;
}

.casual-browser-benefits-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--casual-browser-space-8);
}

.casual-browser-benefits-header {
  text-align: center;
  margin-bottom: var(--casual-browser-space-16);
}

.casual-browser-benefits-title {
  font-size: var(--casual-browser-text-4xl);
  font-weight: 700;
  line-height: var(--casual-browser-leading-tight);
  color: var(--casual-browser-gray-600);
  margin: 0 0 var(--casual-browser-space-4) 0;
}

.casual-browser-benefits-subtitle {
  font-size: var(--casual-browser-text-xl);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-500);
  margin: 0;
  max-width: 672px;
  margin: 0 auto;
}

.casual-browser-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--casual-browser-space-8);
}

.casual-browser-benefit-card {
  background-color: rgba(245, 245, 245, 0.5);
  border-radius: var(--casual-browser-radius-lg);
  padding: var(--casual-browser-space-6) var(--casual-browser-space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--casual-browser-space-5);
}

.casual-browser-benefit-icon {
  width: 48px;
  height: 48px;
  background-color: var(--casual-browser-blue-600);
  border-radius: var(--casual-browser-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--casual-browser-white);
}

.casual-browser-benefit-title {
  font-size: var(--casual-browser-text-xl);
  font-weight: 700;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-600);
  margin: 0;
}

.casual-browser-benefit-description {
  font-size: var(--casual-browser-text-base);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-500);
  margin: 0;
  max-width: 336px;
}

/* ==========================================================================
   Small Business Benefits Section Styles - Exact Figma Specifications
   ========================================================================== */

.small-business-benefits {
  background-color: #ffffff; /* bg-white from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
}

.small-business-benefits-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  justify-content: center;
  display: flex;
}

.small-business-benefits-content {
  display: flex;
  flex-direction: column;
  gap: 64px; /* gap-[64px] from Figma */
  max-width: 1280px; /* max-w-[1280px] from Figma */
  padding: 0 32px; /* px-[32px] from Figma */
  width: 100%;
  margin: 0 auto;
}

.small-business-benefits-header {
  display: flex;
  flex-direction: column;
  gap: 16px; /* gap-[16px] from Figma */
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.small-business-benefits-title {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 36px; /* text-[36px] from Figma */
  line-height: 40px; /* leading-[40px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  text-align: center;
  margin: 0;
}

.small-business-benefits-subtitle {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 20px; /* text-[20px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  text-align: center;
  margin: 0;
  max-width: 672px; /* max-w-[672px] from Figma */
  width: 672px; /* w-[672px] from Figma */
}

.small-business-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px; /* gap-[32px] from Figma */
  width: 100%;
  justify-content: center;
}

.small-business-benefit-card {
  background-color: rgba(
    245,
    245,
    245,
    0.5
  ); /* bg-[rgba(245,245,245,0.5)] from Figma */
  border-radius: 12px; /* rounded-[12px] from Figma */
  padding: 34px 24px; /* px-[24px] py-[34px] from Figma */
  display: flex;
  flex-direction: column;
  gap: 20px; /* gap-[20px] from Figma */
  align-items: center;
  flex: 1;
  min-width: 336px; /* Based on Figma card width */
}

.small-business-benefit-icon {
  background-color: #2563eb; /* bg-blue-600 from Figma */
  border-radius: 8px; /* rounded-[8px] from Figma */
  width: 48px; /* size-[48px] from Figma */
  height: 48px; /* size-[48px] from Figma */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* text-white from Figma */
}

.small-business-benefit-icon svg {
  width: 24px; /* size-[24px] from Figma */
  height: 24px; /* size-[24px] from Figma */
  display: block;
}

.small-business-benefit-title {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 20px; /* text-[20px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  text-align: center;
  white-space: nowrap; /* text-nowrap from Figma */
  margin: 0;
}

.small-business-benefit-description {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 16px; /* text-[16px] from Figma */
  line-height: 24px; /* leading-[24px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  text-align: center;
  margin: 0;
  width: 336px; /* w-[336px] from Figma */
}

/* ==========================================================================
   Tools Section Styles
   ========================================================================== */

.casual-browser-tools {
  background-color: var(--casual-browser-white);
  padding: var(--casual-browser-space-20) 0;
}

.casual-browser-tools-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--casual-browser-space-8);
}

.casual-browser-tools-header {
  text-align: center;
  margin-bottom: var(--casual-browser-space-16);
}

.casual-browser-tools-title {
  font-size: var(--casual-browser-text-4xl);
  font-weight: 700;
  line-height: var(--casual-browser-leading-tight);
  color: var(--casual-browser-gray-600);
  margin: 0 0 var(--casual-browser-space-4) 0;
}

.casual-browser-tools-subtitle {
  font-size: var(--casual-browser-text-xl);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-500);
  margin: 0;
  max-width: 672px;
  margin: 0 auto;
}

.casual-browser-tools-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.casual-browser-tool-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--casual-browser-space-16);
}

.casual-browser-tool-item--reverse {
  flex-direction: row-reverse;
}

.casual-browser-tool-content {
  flex: 1;
  max-width: 524px;
}

.casual-browser-tool-title {
  font-size: var(--casual-browser-text-3xl);
  font-weight: 700;
  line-height: var(--casual-browser-leading-tight);
  color: var(--casual-browser-gray-600);
  margin: 0 0 var(--casual-browser-space-4) 0;
}

.casual-browser-tool-description {
  margin-bottom: var(--casual-browser-space-8);
}

.casual-browser-tool-description p {
  font-size: var(--casual-browser-text-base);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-500);
  margin: 0 0 var(--casual-browser-space-5) 0;
}

.casual-browser-tool-cta {
  background: none;
  border: none;
  color: var(--casual-browser-blue-600);
  font-size: var(--casual-browser-text-lg);
  font-weight: 700;
  text-decoration: underline;
  text-underline-position: from-font;
  padding: 0;
  transition: color 0.2s ease;
}

.casual-browser-tool-cta:hover {
  color: var(--casual-browser-blue-700);
}

.casual-browser-tool-image {
  flex: 1;
  max-width: 592px;
  position: relative; /* needed for overlay positioning */
}

.casual-browser-tool-image img {
  width: 100%;
  height: 463px;
  object-fit: cover;
  border-radius: var(--casual-browser-radius-xl);
}

/* ==========================================================================
   Small Business Tools Section Styles - Exact Figma Specifications
   ========================================================================== */

.small-business-tools {
  background-color: #ffffff; /* bg-white from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
}

.small-business-tools-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 32px; /* Responsive padding */
  width: 100%;
  display: flex;
  justify-content: center;
}

.small-business-tools-content {
  display: flex;
  flex-direction: column;
  gap: 64px; /* gap-[64px] from Figma */
  max-width: 1280px; /* max-w-[1280px] from Figma */
  padding: 0 32px; /* px-[32px] from Figma */
  width: 100%;
  align-items: center;
}

.small-business-tools-header {
  display: flex;
  flex-direction: column;
  gap: 16px; /* gap-[16px] from Figma */
  align-items: center;
  width: 100%;
  max-width: 1216px; /* max-w-[1216px] from Figma */
}

.small-business-tools-title {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 36px; /* text-[36px] from Figma */
  line-height: 40px; /* leading-[40px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  text-align: center;
  margin: 0;
}

.small-business-tools-subtitle {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 20px; /* text-[20px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  text-align: center;
  margin: 0;
  max-width: 672px; /* max-w-[672px] from Figma */
  width: 577px; /* w-[577px] from Figma */
}

.small-business-tools-list {
  display: flex;
  flex-direction: column;
  gap: 100px; /* gap-[100px] from Figma */
  width: 100%;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.small-business-tool-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1216px; /* max-w-[1216px] from Figma */
  gap: 64px; /* gap between content and image */
}

.small-business-tool-item--reverse {
  flex-direction: row-reverse;
}

.small-business-tool-content {
  display: flex;
  flex-direction: column;
  gap: 16px; /* gap-[16px] from Figma */
  width: 524px; /* w-[524px] from Figma */
}

.small-business-tool-title h3 {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 30px; /* text-[30px] from Figma */
  line-height: 36px; /* leading-[36px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  margin: 0;
}

.small-business-tool-description {
  display: flex;
  flex-direction: column;
  gap: 20px; /* gap-[20px] from Figma */
  margin-bottom: 32px; /* gap-[32px] from Figma */
}

.small-business-tool-description p {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 16px; /* text-[16px] from Figma */
  line-height: 24px; /* leading-[24px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  margin: 0;
}

.small-business-tool-cta {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  align-self: flex-start;
}

.small-business-tool-cta span {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 18px; /* text-[18px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #2563eb; /* text-blue-600 from Figma */
  text-decoration: underline;
  text-underline-position: from-font;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.small-business-tool-cta:hover span {
  color: #1d4ed8;
}

.small-business-tool-image {
  flex: 1;
  max-width: 592px;
  position: relative; /* needed for overlay positioning */
}

.small-business-tool-image img {
  width: 100%;
  height: 463px;
  object-fit: cover;
  border-radius: 16px; /* rounded-[16px] from Figma */
}

/* ==========================================================================
   Small Business FAQ Section Styles - Exact Figma Specifications
   ========================================================================== */

.small-business-faq {
  background-color: #f9fafb; /* bg-gray-50 from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
}

.small-business-faq-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 32px; /* Responsive padding */
  width: 100%;
  display: flex;
  justify-content: center;
}

.small-business-faq-content {
  display: flex;
  flex-direction: column;
  gap: 64px; /* gap-[64px] from Figma */
  align-items: center;
  justify-content: center;
  max-width: 1280px; /* max-w-[1280px] from Figma */
  padding: 0 32px; /* px-[32px] from Figma */
  width: 100%;
  margin: 0 auto;
}

.small-business-faq-header {
  display: flex;
  flex-direction: column;
  gap: 16px; /* gap-[16px] from Figma */
  align-items: center;
  width: 100%;
  max-width: 1216px; /* max-w-[1216px] from Figma */
}

.small-business-faq-title {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 36px; /* text-[36px] from Figma */
  line-height: 40px; /* leading-[40px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  text-align: center;
  margin: 0;
}

.small-business-faq-subtitle {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 20px; /* text-[20px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  text-align: center;
  margin: 0;
  max-width: 672px; /* max-w-[672px] from Figma */
  width: 100%;
}

.small-business-faq-list {
  background-color: #ffffff; /* bg-white from Figma */
  border-radius: 16px; /* rounded-[16px] from Figma */
  padding: 50px; /* p-[50px] from Figma */
  display: flex;
  flex-direction: column;
  gap: 0; /* No gap between items, dividers handle spacing */
  width: 100%;
  max-width: 968px; /* Based on Figma card width */
}

.small-business-faq-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.small-business-faq-question {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}

.small-business-faq-question-text {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 18px; /* text-[18px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  margin: 0;
  flex: 1;
  text-align: left;
}

.small-business-faq-answer {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 16px; /* text-[16px] from Figma */
  line-height: 24px; /* leading-[24px] from Figma */
  color: #4b5563;
  font-style: normal;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding-top: 0;
}

.small-business-faq-answer p {
  margin: 0;
  color: #4b5563;
  font-style: normal;
}

.small-business-faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 16px;
}

.small-business-faq-divider {
  height: 1px;
  background-color: #d1d5db; /* border-gray-300 from Figma */
  width: 100%;
  margin: 30px 0; /* gap-[30px] from Figma */
}

/* ==========================================================================
   FAQ Section Styles - Exact Figma Specifications
   ========================================================================== */

.casual-browser-faq {
  background-color: #f9fafb; /* bg-gray-50 from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
}

.casual-browser-faq-content {
  max-width: 1280px; /* max-w-[1280px] from Figma */
  margin: 0 auto;
  padding: 0 var(--casual-browser-space-8);
}

.casual-browser-faq-header {
  text-align: center;
  margin-bottom: 64px; /* gap-[64px] from Figma */
}

.casual-browser-faq-title {
  font-size: var(--casual-browser-text-4xl);
  font-weight: 700;
  font-size: 36px; /* text-[36px] from Figma */
  line-height: 40px; /* leading-[40px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  margin: 0 0 16px 0; /* gap-[16px] from Figma */
}

.casual-browser-faq-subtitle {
  font-size: var(--casual-browser-text-xl);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-500);
  margin: 0;
  max-width: 672px; /* max-w-[672px] from Figma */
  margin: 0 auto;
}

.casual-browser-faq-list {
  background-color: #ffffff; /* bg-white from Figma */
  border-radius: 16px; /* rounded-[16px] from Figma */
  padding: 50px; /* p-[50px] from Figma */
  display: flex;
  flex-direction: column;
}

.casual-browser-faq-item {
  border-bottom: 1px solid var(--casual-browser-gray-300);
  padding: 30px 0;
}

.casual-browser-faq-item:last-child {
  border-bottom: none;
}

.casual-browser-faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.casual-browser-faq-question-text {
  font-size: var(--casual-browser-text-lg);
  font-weight: 700;
  color: var(--casual-browser-gray-600);
  flex: 1;
  margin: 0;
  line-height: 1.4;
}

.casual-browser-faq-icon {
  width: 24px;
  height: 24px;
  color: var(--casual-browser-gray-600);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.casual-browser-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
  opacity: 0;
  padding-top: 0;
  margin-left: 0;
  width: calc(100% - 40px);
}

.casual-browser-faq-answer p {
  font-size: var(--casual-browser-text-base);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: #4b5563;
  font-style: normal;
  margin: 0;
}

/* ==========================================================================
   Download Section Styles
   ========================================================================== */

.casual-browser-download {
  background-color: var(--casual-browser-white);
  padding: var(--casual-browser-space-20) 0;
}

.casual-browser-download-content {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 var(--casual-browser-space-8);
  text-align: center;
}

.casual-browser-download-title {
  font-size: var(--casual-browser-text-4xl);
  font-weight: 700;
  line-height: var(--casual-browser-leading-tight);
  color: var(--casual-browser-gray-600);
  margin: 0 0 var(--casual-browser-space-8) 0;
}

.casual-browser-download-card {
  background-color: var(--casual-browser-white);
  border-radius: var(--casual-browser-radius-xl);
  padding: var(--casual-browser-space-8);
  box-shadow: var(--casual-browser-shadow-xl);
  max-width: 448px;
  margin: 0 auto;
}

.casual-browser-download-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--casual-browser-space-6) auto;
  border-radius: 11.25px;
  overflow: hidden;
}

.casual-browser-download-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casual-browser-download-card-title {
  font-size: var(--casual-browser-text-2xl);
  font-weight: 700;
  line-height: var(--casual-browser-leading-tight);
  color: var(--casual-browser-gray-600);
  margin: 0 0 var(--casual-browser-space-2) 0;
}

.casual-browser-download-card-subtitle {
  font-size: var(--casual-browser-text-base);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-500);
  margin: 0 0 var(--casual-browser-space-6) 0;
}

.casual-browser-download-info {
  display: flex;
  flex-direction: column;
  gap: var(--casual-browser-space-2);
  margin-bottom: var(--casual-browser-space-6);
}

.casual-browser-download-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--casual-browser-space-2);
}

.casual-browser-download-info-label {
  font-size: var(--casual-browser-text-sm);
  font-weight: 700;
  color: var(--casual-browser-gray-500);
}

.casual-browser-download-info-value {
  font-size: var(--casual-browser-text-sm);
  font-weight: 400;
  color: var(--casual-browser-gray-500);
}

.casual-browser-download-features {
  display: flex;
  flex-direction: column;
  gap: var(--casual-browser-space-3);
  margin-bottom: var(--casual-browser-space-6);
}

.casual-browser-download-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--casual-browser-space-2);
  color: var(--casual-browser-gray-600);
}

.casual-browser-download-feature svg {
  color: var(--casual-browser-blue-600);
}

.casual-browser-download-feature span {
  font-size: var(--casual-browser-text-sm);
  font-weight: 400;
}

.casual-browser-download-button {
  width: 100%;
  background-color: var(--casual-browser-gray-300);
  color: var(--casual-browser-gray-400);
  border: none;
  border-radius: var(--casual-browser-radius-lg);
  padding: var(--casual-browser-space-4) var(--casual-browser-space-8);
  font-size: var(--casual-browser-text-lg);
  font-weight: 700;
  box-shadow: var(--casual-browser-shadow-lg);
  cursor: not-allowed;
  margin-bottom: var(--casual-browser-space-3);
}

.casual-browser-download-note {
  font-size: var(--casual-browser-text-xs);
  font-weight: 400;
  color: var(--casual-browser-gray-500);
  margin: 0;
}

/* ==========================================================================
   Footer Section Styles
   ========================================================================== */

.casual-browser-footer {
  background-color: var(--casual-browser-gray-600);
  color: var(--casual-browser-white);
  padding: var(--casual-browser-space-12) 0 var(--casual-browser-space-8) 0;
}

.casual-browser-footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--casual-browser-space-8);
}

.casual-browser-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.casual-browser-footer-brand {
  display: flex;
  align-items: center;
  gap: var(--casual-browser-space-3);
}

.casual-browser-footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 5.625px;
  overflow: hidden;
}

.casual-browser-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casual-browser-footer-title {
  font-size: var(--casual-browser-text-xl);
  font-weight: 700;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-white);
  margin: 0;
}

.casual-browser-footer-subtitle {
  font-size: var(--casual-browser-text-sm);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-400);
  margin: 0;
}

.casual-browser-footer-nav {
  display: flex;
  align-items: center;
  gap: var(--casual-browser-space-5);
}

.casual-browser-footer-link {
  font-size: var(--casual-browser-text-xs);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-100);
  transition: color 0.2s ease;
}

.casual-browser-footer-link:hover {
  color: var(--casual-browser-white);
  text-decoration: underline;
}

.casual-browser-footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--casual-browser-gray-500);
}

.casual-browser-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.casual-browser-footer-copyright p {
  font-size: var(--casual-browser-text-xs);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-400);
  margin: 0;
  text-align: right;
}

.casual-browser-footer-disclaimer p {
  font-size: var(--casual-browser-text-xs);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-400);
  margin: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .small-business-hero-container {
    padding: 0 20px;
  }

  .small-business-tools-container {
    padding: 0 20px;
  }

  .small-business-faq-container {
    padding: 0 20px;
  }

  .small-business-benefits-container {
    padding: 0 20px;
  }
}

/* Handle zoom levels and medium screens */
@media (max-width: 1600px) {
  .made-for-hero-container {
    padding: 0 250px;
  }
  
  .casual-browser-hero-content {
    gap: 30px;
  }
  
  .casual-browser-hero-text {
    width: 520px;
  }
  
  .casual-browser-hero-img {
    width: 450px;
    height: 400px;
  }
  
  /* Small Business Hero */
  .small-business-hero-container {
    padding: 0 250px;
  }
  
  .small-business-hero-content {
    gap: 30px;
  }
  
  .small-business-hero-text {
    width: 520px;
  }
  
  .small-business-hero-img {
    width: 450px;
    height: 400px;
  }
  
  /* Power User Hero */
  .power-user-hero__container {
    padding: 0 250px;
  }
  
  .power-user-hero__content {
    gap: 30px;
  }
  
  .power-user-hero__text {
    width: 520px;
  }
  
  .power-user-hero__img {
    width: 450px;
    height: 400px;
  }
  
  /* Online Gamers Hero */
  .hero-content {
    gap: 50px;
  }
  
  .hero-text {
    max-width: 520px;
  }
  
  .hero-image {
    max-width: 450px;
    height: 400px;
  }
}

/* Handle 125% zoom level and similar viewport widths */
@media (max-width: 1300px) {
  .made-for-hero-container {
    padding: 0 120px;
  }
  
  .casual-browser-hero-content {
    gap: 20px;
  }
  
  .casual-browser-hero-text {
    width: 460px;
  }
  
  .casual-browser-hero-img {
    width: 380px;
    height: 330px;
  }
  
  /* Small Business Hero */
  .small-business-hero-container {
    padding: 0 120px;
  }
  
  .small-business-hero-content {
    gap: 20px;
  }
  
  .small-business-hero-text {
    width: 460px;
  }
  
  .small-business-hero-img {
    width: 380px;
    height: 330px;
  }
  
  /* Power User Hero */
  .power-user-hero__container {
    padding: 0 120px;
  }
  
  .power-user-hero__content {
    gap: 20px;
  }
  
  .power-user-hero__text {
    width: 460px;
  }
  
  .power-user-hero__img {
    width: 380px;
    height: 330px;
  }
  
  /* Online Gamers Hero */
  .hero-content {
    gap: 40px;
  }
  
  .hero-text {
    max-width: 460px;
  }
  
  .hero-image {
    max-width: 380px;
    height: 330px;
  }
}

@media (max-width: 1450px) {
  .made-for-hero-container {
    padding: 0 200px;
  }
  
  .casual-browser-hero-content {
    gap: 25px;
  }
  
  .casual-browser-hero-text {
    width: 480px;
  }
  
  .casual-browser-hero-img {
    width: 420px;
    height: 370px;
  }
  
  /* Small Business Hero */
  .small-business-hero-container {
    padding: 0 200px;
  }
  
  .small-business-hero-content {
    gap: 25px;
  }
  
  .small-business-hero-text {
    width: 480px;
  }
  
  .small-business-hero-img {
    width: 420px;
    height: 370px;
  }
  
  /* Power User Hero */
  .power-user-hero__container {
    padding: 0 200px;
  }
  
  .power-user-hero__content {
    gap: 25px;
  }
  
  .power-user-hero__text {
    width: 480px;
  }
  
  .power-user-hero__img {
    width: 420px;
    height: 370px;
  }
  
  /* Online Gamers Hero */
  .hero-content {
    gap: 45px;
  }
  
  .hero-text {
    max-width: 480px;
  }
  
  .hero-image {
    max-width: 420px;
    height: 370px;
  }
  
  .small-business-tools-container {
    padding: 0 240px;
  }

  .small-business-benefits-container {
    padding: 0 200px;
  }

  .small-business-faq-container {
    padding: 0 200px;
  }
}

@media (max-width: 1600px) {
  .small-business-benefits-content {
    max-width: 100%;
  }
  .small-business-faq-container {
    padding: 0 160px;
  }
}

@media (max-width: 1200px) {
  .made-for-hero-container {
    padding: 0 100px;
  }

  .small-business-hero-container {
    padding: 0 100px;
  }

  .small-business-benefits-container {
    padding: 0 100px;
  }

  .small-business-tools-container {
    padding: 0 100px;
  }

  .small-business-faq-container {
    padding: 0 100px;
  }

  .casual-browser-hero-content {
    gap: 40px;
  }

  .small-business-hero-content {
    gap: 40px;
  }

  .casual-browser-hero-text {
    width: 500px;
  }

  .small-business-hero-text {
    width: 500px;
  }

  .casual-browser-hero-title {
    font-size: 48px;
    line-height: 48px;
  }

  .small-business-hero-title {
    font-size: 48px;
    line-height: 48px;
  }

  .casual-browser-hero-img {
    width: 400px;
    height: 350px;
  }

  .small-business-hero-img {
    width: 400px;
    height: 350px;
  }

  .casual-browser-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--casual-browser-space-6);
  }

  .small-business-benefits-container {
    padding: 0 200px;
  }

  .small-business-benefits-content {
    gap: 56px;
  }

  .small-business-benefits-grid {
    gap: 28px;
  }

  .small-business-benefit-card {
    min-width: 320px;
  }

  .casual-browser-tool-item {
    gap: var(--casual-browser-space-12);
  }

  .casual-browser-tools-list {
    gap: var(--casual-browser-space-16);
  }

  .small-business-tools-container {
    padding: 0 200px;
  }

  .small-business-tools-content {
    gap: 56px;
  }

  .small-business-tool-item {
    width: 100%;
    max-width: 960px;
    gap: 56px;
  }

  .small-business-tool-content {
    width: 100%;
    max-width: 480px;
  }

  .small-business-tool-image {
    width: 100%;
    max-width: 480px;
    height: 400px;
  }
}

@media (max-width: 1300px) {
  .small-business-tools-container {
    padding: 0 120px;
  }

  .small-business-benefits-container {
    padding: 0 120px;
  }

  .small-business-faq-container {
    padding: 0 120px;
  }
}

@media (max-width: 1200px) {
  .small-business-tools-container {
    padding: 0 60px;
  }

  .small-business-benefits-container {
    padding: 0 60px;
  }

  .small-business-faq-container {
    padding: 0 60px;
  }

  .small-business-tools-content {
    gap: 48px;
  }

  .small-business-tools-header {
    width: 100%;
  }

  .small-business-tools-subtitle {
    width: 100%;
    max-width: 100%;
  }

  .small-business-tools-list {
    gap: 80px;
  }

  .small-business-tool-item {
    width: 100%;
    gap: 48px;
  }

  .small-business-tool-content {
    width: 100%;
    max-width: 550px;
  }

  .small-business-tool-image {
    width: 100%;
    max-width: 550px;
    height: 350px;
  }
}

@media (max-width: 1024px) {
  .small-business-tools-container {
    padding: 0 20px;
  }

  .small-business-benefits-container {
    padding: 0 20px;
  }

  .small-business-faq-container {
    padding: 0 20px;
  }

  .small-business-hero-container {
    padding: 0 20px;
  }

  .small-business-tools-content {
    gap: 40px;
  }

  .small-business-tools-list {
    gap: 60px;
  }

  .small-business-tool-item {
    gap: 40px;
  }

  .small-business-tool-content {
    width: 100%;
    max-width: 480px;
  }

  .small-business-tool-image {
    width: 100%;
    max-width: 480px;
    height: 320px;
  }
}

@media (max-width: 1030px) {
  .small-business-tool-image img {
    height: 360px;
  }
  .small-business-tool-content {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .casual-browser-nav-links {
    display: none;
  }

  .made-for-hero-container {
    padding: 0 16px;
  }

  .small-business-hero-container {
    padding: 0 16px;
  }

  .casual-browser-hero {
    padding: 60px 0;
  }

  .small-business-hero {
    padding: 60px 0;
  }

  .casual-browser-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .small-business-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .casual-browser-hero-text {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .small-business-hero-text {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .casual-browser-hero-title {
    font-size: 36px;
    line-height: 40px;
  }

  .small-business-hero-title {
    font-size: 36px;
    line-height: 40px;
  }

  .casual-browser-hero-description {
    font-size: 18px;
    line-height: 28px;
  }

  .small-business-hero-description {
    font-size: 18px;
    line-height: 28px;
  }

  .casual-browser-hero-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
  }

  .small-business-hero-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
  }

  .casual-browser-benefits {
    padding: var(--casual-browser-space-12) 0;
  }

  .small-business-benefits {
    padding: 60px 0;
  }

  .small-business-benefits-container {
    padding: 0 16px;
  }

  .small-business-tools-container {
    padding: 0 16px;
  }

  .small-business-faq-container {
    padding: 0 16px;
  }

  .small-business-benefits-content {
    gap: 40px;
    padding: 0 16px;
  }

  .small-business-benefits-title {
    font-size: 28px;
    line-height: 32px;
  }

  .small-business-benefits-subtitle {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    line-height: 26px;
  }

  .small-business-benefits-grid {
    flex-direction: column;
    gap: 20px;
  }

  .small-business-benefit-card {
    min-width: 100%;
    padding: 24px 20px;
  }

  .small-business-benefit-title {
    font-size: 18px;
    line-height: 24px;
  }

  .small-business-benefit-description {
    font-size: 15px;
    line-height: 22px;
    width: 100%;
  }

  .casual-browser-benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--casual-browser-space-6);
  }

  .casual-browser-tools {
    padding: var(--casual-browser-space-12) 0;
  }

  .small-business-tools {
    padding: 60px 0;
  }

  .small-business-tools-container {
    padding: 0 16px;
  }

  .small-business-tools-content {
    gap: 40px;
    padding: 0 16px;
  }

  .small-business-tools-header {
    width: 100%;
  }

  .small-business-tools-title {
    font-size: 28px;
    line-height: 32px;
  }

  .small-business-tools-subtitle {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    line-height: 26px;
  }

  .small-business-tools-list {
    gap: 60px;
  }

  .small-business-tool-item {
    flex-direction: column !important;
    gap: 32px;
    text-align: center;
    width: 100%;
  }

  .small-business-tool-item--reverse {
    flex-direction: column !important;
  }

  .small-business-tool-content {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .small-business-tool-title h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .small-business-tool-description p {
    font-size: 15px;
    line-height: 22px;
  }

  .small-business-tool-image {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }

  .casual-browser-tool-item {
    flex-direction: column;
    gap: var(--casual-browser-space-8);
  }

  .casual-browser-tool-item--reverse {
    flex-direction: column;
  }

  .casual-browser-tool-image img {
    height: 300px;
  }

  .casual-browser-faq {
    padding: var(--casual-browser-space-12) 0;
  }

  .small-business-faq {
    padding: 60px 0;
  }

  .small-business-faq-container {
    padding: 0 16px;
  }

  .small-business-faq-content {
    gap: 56px;
  }

  .small-business-faq-header {
    width: 100%;
  }

  .small-business-faq-title {
    font-size: 28px;
    line-height: 32px;
  }

  .small-business-faq-subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .small-business-faq-list {
    padding: 40px;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }

  .small-business-faq-divider {
    margin: 24px 0;
  }

  .small-business-faq-question-text {
    font-size: 16px;
    line-height: 24px;
  }

  .small-business-faq-answer {
    font-size: 15px;
    line-height: 22px;
  }

  .casual-browser-faq-list {
    padding: var(--casual-browser-space-8);
  }

  .small-business-faq {
    padding: 40px 0;
  }

  .small-business-faq-container {
    padding: 0 16px;
  }

  .small-business-faq-content {
    gap: 32px;
    padding: 0 16px;
  }

  .small-business-faq-header {
    width: 100%;
  }

  .small-business-faq-title {
    font-size: 24px;
    line-height: 28px;
  }

  .small-business-faq-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .small-business-faq-list {
    padding: 24px 20px;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }

  .small-business-faq-divider {
    margin: 20px 0;
  }

  .small-business-faq-question {
    align-items: flex-start;
    gap: 16px;
  }

  .small-business-faq-question-text {
    font-size: 15px;
    line-height: 22px;
  }

  .small-business-faq-answer {
    font-size: 14px;
    line-height: 20px;
  }

  .small-business-faq-icon {
    align-self: flex-end;
  }

  .casual-browser-download {
    padding: var(--casual-browser-space-12) 0;
  }

  .casual-browser-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--casual-browser-space-6);
  }

  .casual-browser-footer-nav {
    flex-wrap: wrap;
    gap: var(--casual-browser-space-2);
  }

  .casual-browser-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--casual-browser-space-4);
  }

  .casual-browser-footer-copyright p {
    text-align: left;
  }
  .casual-browser-hero-cta {
    width: 100%;
  }

  .small-business-hero-cta {
    width: 100%;
  }
  .casual-browser-tool-image {
    width: 100%;
    max-width: 534px;
  }
  .casual-browser-tool-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .online-gamers-tool-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .power-user-tool-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .small-business-tool-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .made-for-hero-container {
    padding: 0 12px;
  }

  .small-business-hero-container {
    padding: 0 12px;
  }

  .small-business-benefits-container {
    padding: 0 12px;
  }

  .small-business-tools-container {
    padding: 0 12px;
  }

  .small-business-faq-container {
    padding: 0 12px;
  }

  .casual-browser-hero {
    padding: 40px 0;
  }

  .small-business-hero {
    padding: 40px 20px;
  }

  .casual-browser-hero-text {
    gap: 16px;
  }

  .small-business-hero-text {
    gap: 16px;
  }

  .casual-browser-hero-title {
    font-size: 28px;
    line-height: 32px;
  }

  .small-business-hero-title {
    font-size: 28px;
    line-height: 32px;
  }

  .casual-browser-hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .small-business-hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .casual-browser-hero-cta {
    padding: 14px 24px;
    font-size: 16px;
  }

  .small-business-hero-cta {
    padding: 14px 24px;
    font-size: 16px;
  }

  .casual-browser-hero-img {
    height: 250px;
  }

  .small-business-hero-img {
    height: 250px;
  }

  .casual-browser-benefits-title,
  .casual-browser-tools-title,
  .casual-browser-faq-title,
  .casual-browser-download-title {
    font-size: var(--casual-browser-text-3xl);
  }

  .small-business-benefits {
    padding: 40px 20px;
  }

  .small-business-benefits-container {
    padding: 0 12px;
  }

  .small-business-benefits-content {
    gap: 32px;
    padding: 0 8px;
  }

  .small-business-benefits-title {
    font-size: 24px;
    line-height: 28px;
  }

  .small-business-benefits-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .small-business-benefit-card {
    padding: 20px 16px;
  }

  .small-business-benefit-title {
    font-size: 16px;
    line-height: 22px;
  }

  .small-business-benefit-description {
    font-size: 14px;
    line-height: 20px;
  }

  .casual-browser-benefit-card {
    padding: var(--casual-browser-space-4);
  }

  .casual-browser-tool-title {
    font-size: var(--casual-browser-text-2xl);
  }

  .small-business-tools {
    padding: 40px 20px;
  }

  .small-business-tools-container {
    padding: 0 12px;
  }

  .small-business-tools-content {
    gap: 32px;
    padding: 0 8px;
  }

  .small-business-tools-title {
    font-size: 24px;
    line-height: 28px;
  }

  .small-business-tools-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .small-business-tools-list {
    gap: 40px;
  }

  .small-business-tool-item {
    gap: 24px;
  }

  .small-business-tool-title h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .small-business-tool-description {
    gap: 16px;
    margin-bottom: 24px;
  }

  .small-business-tool-description p {
    font-size: 14px;
    line-height: 20px;
  }

  .small-business-tool-cta span {
    font-size: 16px;
    line-height: 24px;
  }

  .small-business-tool-image {
    height: 250px;
  }

  .casual-browser-faq-question-text {
    font-size: var(--casual-browser-text-base);
  }

  .small-business-faq {
    padding: 32px 20px;
  }

  .small-business-faq-container {
    padding: 0 12px;
  }

  .small-business-faq-content {
    gap: 24px;
    padding: 0 8px;
  }

  .small-business-faq-title {
    font-size: 20px;
    line-height: 24px;
  }

  .small-business-faq-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .small-business-faq-list {
    padding: 20px 16px;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }

  .small-business-faq-divider {
    margin: 16px 0;
  }

  .small-business-faq-question {
    gap: 12px;
  }

  .small-business-faq-question-text {
    font-size: 14px;
    line-height: 20px;
  }

  .small-business-faq-answer {
    font-size: 13px;
    line-height: 18px;
  }

  .small-business-faq-icon {
    width: 20px;
    height: 20px;
  }

  .casual-browser-faq-answer {
    font-size: 13px;
    line-height: 18px;
  }
  .casual-browser-faq-question-text {
    font-size: 14px;
    line-height: 20px;
  }

  .casual-browser-faq-icon {
    width: 20px;
    height: 20px;
  }

  .casual-browser-faq-question {
    gap: 12px;
  }

  .power-user-faq-question-text {
    font-size: 14px;
    line-height: 20px;
  }
  .power-user-faq-icon {
    width: 20px;
    height: 20px;
  }
  .power-user-faq-question {
    gap: 12px;
  }

  .power-user-faq-answer {
    font-size: 13px;
    line-height: 18px;
  }
  .online-gamers-faq-question-text {
    font-size: 14px;
    line-height: 20px;
  }
  .online-gamers-faq-icon {
    width: 20px;
    height: 20px;
  }
  .online-gamers-faq-question {
    gap: 12px;
  }
  .online-gamers-faq-answer {
    font-size: 13px;
    line-height: 18px;
  }
  .casual-browser-faq-answer {
    width: calc(100% - 36px);
  }
  .casual-browser-faq-list {
    padding: 0 22px;
  }
  .casual-browser-faq-item {
    padding: 10px 0;
  }
  .power-user-faq-list {
    padding: 0 22px !important;
  }
  .power-user-faq-item {
    padding: 10px 0 !important;
  }
  .online-gamers-faq-list {
    padding: 0 22px !important;
  }
  .online-gamers-faq-item {
    padding: 10px 0 !important;
  }
}

@media screen and (max-width: 320px) {
  .small-business-benefits-container {
    padding: 40px 0;
  }

  .small-business-tools-container {
    padding: 40px 0;
  }

  .small-business-faq-container {
    padding: 40px 0;
  }

  .small-business-hero-container {
    padding: 0 8px;
  }

  .small-business-benefits-container {
    padding: 0 8px;
  }

  .small-business-tools-container {
    padding: 0 8px;
  }

  .small-business-faq-container {
    padding: 0 8px;
  }
  .casual-browser-benefits-content {
    padding: 0px;
  }
  .casual-browser-tools-content {
    padding: 0px;
  }
  .casual-browser-faq-content {
    padding: 0px;
  }
  .casual-browser-download-content {
    padding: 0px;
  }
  .online-gamers-tools-content {
    padding: 0px;
  }
  .online-gamers-faq-content {
    padding: 0px;
  }
  .online-gamers-download-content {
    padding: 0px;
  }
  .power-user-tools-content {
    padding: 0px;
  }
  .power-user-faq-content {
    padding: 0px;
  }
  .power-user-download-content {
    padding: 0px;
  }
}
/* Coming Soon Banner (image overlay) */
.coming-soon-banner {
  position: absolute;
  top: -10px;
  right: -8px;
  width: 140px;
  height: 140px;
  background-image: url("../images/Coming\ Soon.svg");
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 2;
  pointer-events: none;
}
.coming-soon-banner-power-user {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 140px;
  height: 140px;
  background-image: url("../images/Coming\ Soon.svg");
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 2;
  pointer-events: none;
}
.coming-soon-banner-left {
  position: absolute;
  top: -12px;
  left: -46px;
  width: 140px;
  height: 140px;
  background-image: url("../images/coming_soon_left.svg");
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 2;
  pointer-events: none;
}

/* Responsive sizing for the Coming Soon image */
@media (max-width: 1200px) {
  .coming-soon-banner {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 1024px) {
  .coming-soon-banner {
    width: 100px;
    height: 100px;
  }
}

/* Tablet */
@media (max-width: 820px) {
  .coming-soon-banner {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .coming-soon-banner {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .coming-soon-banner {
    width: 70px;
    height: 70px;
  }
}

/* ==========================================================================
   Download Section Styles (from index.html)
   ========================================================================== */

.download {
  padding: 80px 0;
  background: var(--casual-browser-white);
}

.download__heading {
  text-align: center;
  margin: 0 0 32px 0;
  font-weight: 700;
  font-size: var(--casual-browser-text-4xl);
  line-height: var(--casual-browser-leading-tight);
  color: var(--casual-browser-gray-700);
}

.download-card {
  width: 448px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  background: var(--casual-browser-white);
  border: 1px solid var(--casual-browser-gray-200);
  padding: 24px;
  text-align: center;
  box-shadow: var(--casual-browser-shadow-lg);
}

.download-card__icon {
  margin-bottom: 12px;
}

.download-card__icon img {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto 12px;
}

.download-card__title {
  margin: 0 0 6px 0;
  font-weight: 700;
  font-size: var(--casual-browser-text-xl);
  line-height: var(--casual-browser-leading-snug);
  color: var(--casual-browser-gray-700);
}

.download-card__subtitle {
  margin: 0 0 16px 0;
  color: var(--casual-browser-gray-600);
  font-size: var(--casual-browser-text-sm);
  line-height: var(--casual-browser-leading-normal);
}

.download-info {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  color: var(--casual-browser-gray-500);
  font-size: var(--casual-browser-text-sm);
}

.download-info li {
  margin: 4px 0;
}

.info__label {
  color: var(--casual-browser-gray-500);
  font-weight: 500;
}

.download-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px 0;
  display: grid;
  gap: 10px;
}

.download-features li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.download-features img {
  width: 16px;
  height: 16px;
}

.download-card__button {
  width: min(100%, 360px);
  margin: 4px auto 0 auto;
  border-radius: 12px;
  background-color: var(--casual-browser-blue-600);
  color: var(--casual-browser-white);
  border: none;
  padding: 16px 24px;
  font-size: var(--casual-browser-text-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.download-card__button:hover {
  background: var(--casual-browser-blue-700);
  transform: translateY(-1px);
  box-shadow: 0px 12px 20px -3px rgba(0, 0, 0, 0.15),
    0px 6px 8px -4px rgba(0, 0, 0, 0.1);
}

.download-card__button:active {
  transform: translateY(0);
  box-shadow: 0px 8px 12px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.download-card__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.download-card__button:disabled {
  background-color: var(--casual-browser-gray-400) !important;
  color: var(--casual-browser-gray-500) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  transform: none !important;
  box-shadow: none !important;
}

.download-card__button:disabled:hover {
  background-color: var(--casual-browser-gray-400) !important;
  color: var(--casual-browser-gray-500) !important;
  transform: none !important;
  box-shadow: none !important;
}

.download-card__fineprint {
  margin: 12px 0 0 0;
  font-size: 12px;
  line-height: 16px;
  color: var(--casual-browser-gray-400);
}

/* ==========================================================================
   Button Styles (from index.html)
   ========================================================================== */

.btn {
  --btn-bg: transparent;
  --btn-color: var(--casual-browser-gray-700);
  --btn-border: var(--casual-browser-gray-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: var(--casual-browser-text-base);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid var(--btn-border);
  border-radius: 8px;
  background: var(--btn-bg);
  color: var(--btn-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  --btn-bg: var(--casual-browser-blue-600);
  --btn-color: var(--casual-browser-white);
  --btn-border: var(--casual-browser-blue-600);
}

.btn--xl {
  padding: 16px 24px;
  font-size: var(--casual-browser-text-lg);
  font-weight: 600;
}

/* ==========================================================================
   Popup Styles (from index.html)
   ========================================================================== */

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(71, 85, 105, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
  overflow-y: auto;
  padding: 40px 20px;
}

.popup-overlay.show {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup-container {
  position: relative;
  background: transparent;
  border-radius: 24px;
  max-width: 1100px;
  width: 100%;
  box-shadow: none;
  animation: popupSlideUp 0.4s ease-out;
  padding: 60px 70px;
  overflow: visible;
  max-height: 90vh;
}

.popup-content {
  max-height: calc(90vh - 120px);
  overflow-y: auto;
  overflow-x: visible;
  padding-right: 10px;
  text-align: center;
}

.popup-content::-webkit-scrollbar {
  width: 5px;
}

.popup-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.5);
  border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.7);
}

@keyframes popupSlideUp {
  from {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.popup-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  font-size: 32px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.popup-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.popup-subtitle {
  font-size: 20px;
  color: #e5e7eb;
  margin: 0 0 50px 0;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.popup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.popup-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: cardSlideIn 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.popup-step:nth-child(1) {
  animation-delay: 0.2s;
}

.popup-step:nth-child(2) {
  animation-delay: 0.4s;
}

.popup-step:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-badge {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  animation: badgePop 0.4s ease-out forwards;
  animation-delay: inherit;
}
@keyframes badgePop {
  0% {
    transform: translateX(-50%) scale(0);
  }
  60% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

.step-badge-1,
.step-badge-2,
.step-badge-3 {
  background: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-visual {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.step-visual:hover {
  transform: translateY(-5px);
}

.step-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.step-info {
  text-align: center;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-description {
  font-size: 16px;
  color: #d1d5db;
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.popup-footer {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-footer p {
  font-size: 16px;
  color: #d1d5db;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.popup-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
}

.popup-link:hover {
  text-decoration: underline;
  color: #93c5fd;
}

/* ==========================================================================
   Download Indicator Styles (from index.html)
   ========================================================================== */

.download-indicator {
  position: fixed;
  top: 7%;
  right: 85px;
  z-index: 10002;
  animation: indicatorFadeIn 0.8s ease-out 1s forwards;
  opacity: 0;
  pointer-events: none;
}

@keyframes indicatorFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.download-indicator-image {
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(37, 99, 235, 0.5));
  animation: upDownBounce 2s ease-in-out infinite;
}

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

/* ==========================================================================
   Responsive Styles for Download Section and Popup
   ========================================================================== */

@media (max-width: 1440px) {
  .popup-title {
    font-size: 36px;
  }

  .download {
    padding: 70px 0;
  }

  .download__heading {
    font-size: 32px;
    line-height: 1.2;
  }

  .download-card {
    max-width: 420px;
  }
}

@media (max-width: 1200px) {
  .popup-container {
    padding: 50px 60px;
    max-height: 85vh;
  }

  .popup-content {
    max-height: calc(85vh - 100px);
  }

  .popup-steps {
    gap: 30px;
  }

  .download-indicator {
    right: 20px;
  }

  .download-indicator-image {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .download-indicator {
    right: 15px;
  }

  .download-indicator-image {
    width: 160px;
  }
}

@media (max-width: 820px) {
  .download-indicator {
    right: 10px;
  }

  .download-indicator-image {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .popup-container {
    max-width: 100%;
    padding: 40px 30px;
  }

  .popup-container {
    padding: 40px 30px;
    max-height: 85vh;
  }

  .popup-content {
    max-height: calc(85vh - 80px);
  }

  .popup-title {
    font-size: 36px;
  }

  .popup-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .popup-steps {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .step-visual {
    margin-bottom: 16px;
  }

  .step-image {
    width: 160px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 14px;
  }

  .download-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .popup-overlay {
    padding: 10px;
  }

  .popup-container {
    padding: 30px 20px;
    border-radius: 16px;
    max-height: 90vh;
  }

  .popup-content {
    max-height: calc(90vh - 60px);
    padding-right: 5px;
  }

  .popup-title {
    font-size: 28px;
  }

  .popup-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .popup-close {
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .step-badge {
    width: 50px;
    height: 50px;
    font-size: 14px;
    margin-bottom: 16px;
  }

  .step-image {
    width: 140px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 13px;
  }

  .popup-steps {
    gap: 40px;
  }
}

/* Hide popup on mobile and tablets for better UX */
@media (max-width: 1024px) {
  .popup-overlay {
    display: none !important;
  }
}

/* Show full nav on desktop, hide hamburger/drawer */
@media (min-width: 1024px) {
  .site-nav {
    display: block;
  }
  .site-header__menu {
    display: none;
  }
  #site-nav-drawer {
    display: none !important;
  }
}

/* ==========================================================================
   Header Styles (from index.html)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1999;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* Reduced from 480px to prevent logo disappearing */
}

.site-header__brand {
  display: flex;
  align-items: center;
}

.site-header__logo {
  height: 32px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav__link {
  font-size: var(--fs-16);
  line-height: var(--lh-24);
  color: var(--color-river-bed);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease, font-weight 0.15s ease, transform 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav__link:hover {
  color: var(--color-oxford-blue);
  transform: translateY(-1px);
}

/* Active nav link */
.site-nav__link--active {
  color: var(--color-brand);
  font-weight: 700;
  position: relative;
  transform: translateY(-1px);
  transition: color 0.15s ease, font-weight 0.1s ease, transform 0.15s ease;
}

/* Section highlighting when active */
section[id] {
  transition: all 0.3s ease;
}

section[id]:target {
  animation: sectionHighlight 0.5s ease-out;
}

@keyframes sectionHighlight {
  0% {
    background: rgba(37, 99, 235, 0.02);
  }

  50% {
    background: rgba(37, 99, 235, 0.05);
  }

  100% {
    background: transparent;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-brand);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top:hover {
  background: var(--color-brand-200);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header__cta {
  display: none;
}

.site-header__menu {
  border: 0;
  background: transparent;
  padding: 8px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.site-header__menu-bar {
  width: 24px;
  height: 2px;
  background: var(--color-oxford-blue);
  display: block;
}

/* Scroll Progress Indicator removed */

.site-nav-drawer[hidden] {
  display: none;
}

.site-nav-drawer {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-athens-gray);
}

.site-nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 16px 24px 24px;
  display: grid;
  gap: 12px;
}

/* Active state for mobile drawer links */
.site-nav-drawer__list a {
  transition: color 0.15s ease, font-weight 0.1s ease, padding-left 0.2s ease;
}

.site-nav-drawer__list a.active {
  color: var(--color-brand);
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}

.site-nav-drawer__list a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-brand);
  border-radius: 2px;
  animation: slideInLeft 0.2s ease-out;
}

@media (max-width: 1440px) {
  .site-header__inner {
    gap: 30px; /* Reduced gap for smaller screens */
  }

  .container {
    padding-inline: 32px;
  }
}

@media (max-width: 1200px) {
  .site-header__inner {
    gap: 16px; /* Further reduced for medium screens */
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    gap: 16px;
  }

  .container {
    padding-inline: 16px;
  }
}

@keyframes slideInLeft {
  from {
    height: 0;
    opacity: 0;
  }

  to {
    height: 20px;
    opacity: 1;
  }
}

.no-scroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .site-header__menu {
    display: none;
  }

  .site-nav {
    display: block;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .site-header__inner {
    justify-content: flex-start;
  }

  .hero {
    padding: 88px 0 72px;
  }

  .hero__inner {
    align-items: center;
    gap: 40px;
  }

  .hero__title {
    font-size: var(--fs-60);
    line-height: 64px;
  }

  .screenshots__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    align-items: start;
  }

  /* Top row: 2 equal large screenshots */
  .screenshot--large:nth-child(1) {
    grid-column: 1 / span 3;
    grid-row: 1;
  }

  .screenshot--large:nth-child(2) {
    grid-column: 4 / span 3;
    grid-row: 1;
  }

  /* Bottom row: 3 smaller screenshots in equal widths */
  .screenshot--small:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: 2;
  }

  .screenshot--small:nth-child(4) {
    grid-column: 3 / span 2;
    grid-row: 2;
  }

  .screenshot--small:nth-child(5) {
    grid-column: 5 / span 2;
    grid-row: 2;
  }

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

  .cta__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer__inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
  }

  .site-footer__list {
    justify-content: center;
  }
}

/* ==========================================================================
   Made For Dropdown Styles (from index.html)
   ========================================================================== */

.made-for-dropdown {
  border-top: 1px solid #d1d5db; /* light gray 300 */
  padding: 18px 0; /* top / bottom spacing */
  background: #ffffff;
}
.made-for-item__icon-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.made-for-dropdown__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-river-bed);
  margin: 0 0 32px;
  text-align: left;
  text-transform: uppercase;
}

.made-for-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px; /* column gap */
}
.madeForNav {
  display: flex;
  gap: 5px;
}

@media (max-width: 1023.98px) {
  .made-for-dropdown__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 639.98px) {
  .made-for-dropdown__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.made-for-item {
  text-align: left;
}

/* Clickable made-for items */
a.made-for-item {
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

a.made-for-item:hover {
  opacity: 0.8;
}
.chevron {
  width: 24px;
  height: 24px;
}
.made-for-item__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.made-for-item__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-oxford-blue);
}

.made-for-item__text {
  margin: 4px 0 0 36px;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-river-bed);
}

/* Chevron rotation on open */
.site-nav__item--dropdown[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.site-nav__item--dropdown[aria-expanded="true"] .site-nav__link {
  color: var(--color-brand);
  font-weight: 700;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  color: white;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  max-width: 400px;
  word-wrap: break-word;
  animation: slideInRight 0.3s ease-out;
}

.notification--success {
  background-color: #22c55e;
}

.notification--error {
  background-color: #ef4444;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile responsive adjustments for notifications */
@media (max-width: 768px) {
  .notification {
    top: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
    font-size: 13px;
    padding: 0.625rem 1rem;
  }
}

/* ==========================================================================
   Online Gamers Page Specific Styles
   ========================================================================== */

/* === CSS VARIABLES === */
:root {
  /* Colors from Figma */
  --color-white: #ffffff;
  --color-primary: #2563eb; /* Brand Color */
  --color-text-primary: #424242; /* Web/Tundora */
  --color-text-secondary: #6b7280; /* Web/Pale Sky */
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-light-blue: #f2f6fe; /* Light blue Color */
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-footer: #424242;

  /* Typography */
  --font-family: "Nimbus Sans L", "Inter", system-ui, -apple-system, sans-serif;
  --font-family-bold: "Nimbus Sans", "Inter", system-ui, -apple-system,
    sans-serif;
}

/* === BASE STYLES === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-white);
}

/* === UTILITY CLASSES === */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 352px;
}

.container-sm {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 8px;
  font-family: var(--font-family-bold);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-disabled {
  background-color: var(--color-gray-300);
  color: var(--color-gray-400);
  cursor: not-allowed;
}

.btn-link {
  background: none;
  color: var(--color-primary);
  text-decoration: underline;
  box-shadow: none;
  padding: 0;
}

.btn-link:hover {
  color: #1d4ed8;
}

/* === HEADER STYLES === */
.header {
  background-color: var(--color-white);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 5.625px;
  overflow: hidden;
  transform: rotate(180deg) scaleY(-1);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  margin-left: 12px;
  height: 18.048px;
  width: 156.42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link svg {
  width: 24px;
  height: 24px;
}

/* === HERO SECTION === */
.hero {
  background-color: var(--color-light-blue);
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.hero-text {
  flex: 1;
  max-width: 584px;
}

.hero-badge {
  font-family: var(--font-family-bold);
  font-size: 16px;
  line-height: 20px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-family-bold);
  font-size: 60px;
  line-height: 60px;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 20px;
  line-height: 32.5px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.hero-image {
  flex: 1;
  max-width: 510px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === FEATURES SECTION === */
.features {
  padding: 80px 0;
  background-color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-family-bold);
  font-size: 36px;
  line-height: 40px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.section-description {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-text-secondary);
  max-width: 672px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: rgba(245, 245, 245, 0.5);
  padding: 34px 24px;
  border-radius: 12px;
  text-align: center;
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.feature-title {
  font-family: var(--font-family-bold);
  font-size: 20px;
  line-height: 28px;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.feature-description {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-secondary);
}

/* === TOOLS SECTION === */
.tools {
  padding: 80px 0;
  background-color: var(--color-white);
}

.tool-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 100px;
}

.tool-feature:nth-child(even) {
  flex-direction: row-reverse;
}

/* Force non-reversed layout for rows marked to match Figma (image on right) */
.tool-feature.no-reverse {
  flex-direction: row !important;
}

.tool-content {
  flex: 1;
  max-width: 524px;
}

.tool-title-with-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tool-title {
  font-family: var(--font-family-bold);
  font-size: 30px;
  line-height: 36px;
  color: var(--color-text-primary);
  margin: 0;
}

.tool-icons {
  display: flex;
  gap: 8px;
}

.tool-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tool-icon.blue-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.tool-icon.orange-icon {
  background-color: #ff6b35;
  color: var(--color-white);
}

.tool-description {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.tool-description:last-of-type {
  margin-bottom: 32px;
}

.casual-browser-tool-image {
  flex: 1;
  max-width: 592px;
  position: relative; /* needed for overlay positioning */
}

.casual-browser-tool-image img {
  width: 100%;
  height: 463px;
  object-fit: cover;
  border-radius: var(--casual-browser-radius-xl);
}

/* === FAQ SECTION === */
.figma-faq {
  background: var(--color-gray-50);
  padding: 80px 0;
}

.figma-faq__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.figma-faq__header {
  margin-bottom: 64px;
}

.figma-faq__title {
  font-family: var(--font-family-bold);
  font-size: 36px;
  line-height: 40px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.figma-faq__subtitle {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-text-secondary);
  max-width: 672px;
  margin: 0 auto;
}

.figma-faq__list {
  background: var(--color-white);
  border-radius: 16px;
  padding: 50px;
  max-width: 968px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  overflow: hidden;
}

.figma-faq-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0;
  position: relative;
  isolation: isolate;
  outline: none;
}

.figma-faq-item:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.figma-faq-item__content {
  flex: 1;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
}

.figma-faq-item__question {
  font-family: var(--font-family-bold);
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-primary);
  cursor: pointer;
  margin: 0;
}

.figma-faq-item__answer {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-secondary);
  max-width: 750px;
  margin: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
  position: relative;
  z-index: 1;
}

.figma-faq-item__toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
}

.figma-faq-item__toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text-primary);
  transition: transform 0.3s ease;
}

.figma-faq-item--collapsed .figma-faq-item__answer {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  margin-top: 0;
  visibility: hidden;
}

.figma-faq-item--expanded .figma-faq-item__answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 10px;
  margin-top: 0;
  visibility: visible;
}

.figma-faq-item--expanded .figma-faq-item__toggle svg {
  transform: rotate(45deg);
}

.figma-faq-divider {
  height: 1px;
  background-color: var(--color-gray-200);
  width: 100%;
  margin: 30px 0;
}

/* === POWER USER FAQ SECTION === */
.power-user-faq {
  background-color: #f9fafb; /* bg-gray-50 from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
}

.power-user-faq__container {
  max-width: 1280px; /* max-w-[1280px] from Figma */
  margin: 0 auto;
  padding: 0 var(--casual-browser-space-8);
}

.power-user-faq__content {
  display: flex;
  flex-direction: column;
  gap: 64px; /* gap-[64px] from Figma */
  align-items: center;
  justify-content: center;
  width: 100%;
}

.power-user-faq__header {
  text-align: center;
  margin-bottom: 64px; /* gap-[64px] from Figma */
}

.power-user-faq__title {
  font-size: var(--casual-browser-text-4xl);
  font-weight: 700;
  font-size: 36px; /* text-[36px] from Figma */
  line-height: 40px; /* leading-[40px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  margin: 0 0 16px 0; /* gap-[16px] from Figma */
}

.power-user-faq__subtitle {
  font-size: var(--casual-browser-text-xl);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: var(--casual-browser-gray-500);
  margin: 0;
  max-width: 672px; /* max-w-[672px] from Figma */
  margin: 0 auto;
}

.power-user-faq__list {
  background-color: #ffffff; /* bg-white from Figma */
  border-radius: 16px; /* rounded-[16px] from Figma */
  padding: 50px; /* p-[50px] from Figma */
  display: flex;
  flex-direction: column;
}

.power-user-faq-item {
  border-bottom: 1px solid var(--casual-browser-gray-300);
  padding: 30px 0;
  transition: all 0.3s ease;
}

.power-user-faq-item:last-child {
  border-bottom: none;
}

.power-user-faq-item__button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: all 0.3s ease;
}

.power-user-faq-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.power-user-faq-item__question {
  font-size: var(--casual-browser-text-lg);
  font-weight: 700;
  color: var(--casual-browser-gray-600);
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
}

.power-user-faq-item__answer {
  font-size: var(--casual-browser-text-base);
  font-weight: 400;
  line-height: var(--casual-browser-leading-normal);
  color: #4b5563;
  font-style: normal;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
  opacity: 0;
  padding-top: 0;
  margin: 0;
  word-wrap: break-word;
}

.power-user-faq-item__toggle {
  width: 24px;
  height: 24px;
  color: var(--casual-browser-gray-600);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-icon {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.faq-icon--minus {
  position: absolute;
  top: 0;
  left: 0;
}

.power-user-faq-item--expanded .power-user-faq-item__answer {
  max-height: 400px;
  opacity: 1;
  padding-top: var(--casual-browser-space-2);
}

.power-user-faq-item--expanded .faq-icon--plus {
  opacity: 0;
}

.power-user-faq-item--expanded .faq-icon--minus {
  opacity: 1;
}

/* Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
  .power-user-faq__container {
    padding: 0 var(--casual-browser-space-16);
  }

  .power-user-faq__list {
    padding: 35px;
  }

  .power-user-faq__title {
    font-size: var(--casual-browser-text-3xl);
    line-height: 36px;
  }

  .power-user-faq__subtitle {
    font-size: var(--casual-browser-text-lg);
    line-height: 26px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .power-user-faq {
    padding: 60px 0;
  }

  .power-user-faq__container {
    padding: 0 var(--casual-browser-space-4);
  }

  .power-user-faq__list {
    padding: 30px 20px;
  }

  .power-user-faq__title {
    font-size: var(--casual-browser-text-3xl);
    line-height: 36px;
  }

  .power-user-faq__subtitle {
    font-size: var(--casual-browser-text-lg);
    line-height: 26px;
  }

  .power-user-faq-item__question {
    font-size: var(--casual-browser-text-base);
    line-height: 24px;
  }

  .power-user-faq-item__button {
    gap: 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .power-user-faq {
    padding: 40px 0;
  }

  .power-user-faq__container {
    padding: 0 var(--casual-browser-space-3);
  }

  .power-user-faq__list {
    padding: 20px 16px;
  }

  .power-user-faq__title {
    font-size: var(--casual-browser-text-2xl);
    line-height: 32px;
  }

  .power-user-faq__subtitle {
    font-size: var(--casual-browser-text-base);
    line-height: 24px;
  }

  .power-user-faq-item__question {
    font-size: var(--casual-browser-text-sm);
    line-height: 20px;
  }

  .power-user-faq-item__answer {
    font-size: var(--casual-browser-text-sm);
    line-height: 20px;
  }

  .power-user-faq-item__button {
    gap: 12px;
  }
}

/* === DOWNLOAD SECTION === */
.download {
  padding: 80px 0;
  background-color: var(--color-white);
}

.download-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  max-width: 448px;
  margin: 0 auto;
}

.download-logo {
  width: 80px;
  height: 80px;
  border-radius: 11.25px;
  overflow: hidden;
  margin: 0 auto 23px;
  transform: rotate(180deg) scaleY(-1);
}

.download-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-title {
  font-family: var(--font-family-bold);
  font-size: 24px;
  line-height: 32px;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 8px;
}

.download-subtitle {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 12px;
}

.download-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.download-info-item {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-gray-500);
  text-align: center;
}

.download-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.download-feature-text {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-primary);
}

.download-note {
  font-size: 12px;
  line-height: 16px;
  color: var(--color-gray-500);
  text-align: center;
  margin-top: 8px;
}

/* === FOOTER STYLES === */
.footer {
  background-color: var(--color-footer);
  padding: 48px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo .logo {
  transform: rotate(180deg) scaleY(-1);
}

.footer-logo-text {
  margin-left: 12px;
}

.footer-logo-title {
  font-family: var(--font-family-bold);
  font-size: 20px;
  line-height: 28px;
  color: var(--color-white);
}

.footer-logo-subtitle {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-gray-400);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-link {
  font-size: 12px;
  line-height: 20px;
  color: var(--color-gray-100);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-divider {
  height: 1px;
  background-color: #4b5563;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 12px;
  line-height: 16px;
  color: var(--color-gray-400);
  text-align: right;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 16px;
  color: var(--color-gray-400);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1440px) {
  .container {
    padding: 0 160px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
    line-height: 52px;
  }

  .tool-feature {
    flex-direction: column !important;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 36px;
    line-height: 40px;
  }

  .section-title {
    font-size: 28px;
    line-height: 32px;
  }

  .tool-title {
    font-size: 24px;
    line-height: 28px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 420px) {
  .container {
    padding: 0 16px;
  }
}

/* ==========================================================================
   Footer Styles (from index.html)
   ========================================================================== */

.figma-footer {
  background: #424242;
  padding: 48px 0 30px;
  color: #ffffff;
}

.figma-footer__container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 80px;
}

.figma-footer__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.figma-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.figma-footer__brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.figma-footer__logo {
  width: 40px;
  height: 40px;
  border-radius: 5.625px;
  overflow: hidden;
}

.figma-footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figma-footer__brand-text {
  padding-left: 12px;
}

.figma-footer__title {
  font-family: var(--casual-browser-font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
}

.figma-footer__subtitle {
  font-family: var(--casual-browser-font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #9ca3af;
  margin: 0;
}

.figma-footer__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.figma-footer__link {
  font-family: var(--casual-browser-font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #f3f4f6;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px 16px;
  transition: all 0.2s ease;
  display: inline-block;
}

.figma-footer__link:hover,
.figma-footer__link:focus {
  color: #ffffff;
  text-decoration: underline;
  outline: none;
}

.figma-footer__link:active {
  color: #1d4ed8;
}

.figma-footer__divider {
  width: 100%;
  height: 1px;
  background: #4b5563;
  margin: 0;
}

.figma-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.figma-footer__copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.figma-footer__copyright p {
  font-family: var(--casual-browser-font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #9ca3af;
  margin: 0;
  text-align: right;
}

.figma-footer__disclaimer p {
  font-family: var(--casual-browser-font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #9ca3af;
  margin: 0;
}

/* ==========================================================================
   Responsive Styles for Footer
   ========================================================================== */

@media (max-width: 1200px) {
  .figma-footer__container {
    padding: 0 60px;
  }
}

@media (max-width: 1024px) {
  .figma-footer__container {
    padding: 0 40px;
  }

  .made-for-dropdown__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .figma-footer__container {
    padding: 0 16px;
  }

  .figma-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .figma-footer__nav {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .figma-footer__link {
    font-size: 11px;
    padding: 6px 12px;
  }

  .figma-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .figma-footer__disclaimer {
    text-align: left;
  }

  .made-for-dropdown__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .figma-footer {
    padding: 32px 0 20px;
  }

  .figma-footer__container {
    padding: 0 12px;
  }

  .figma-footer__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .figma-footer__brand-text {
    padding-left: 0;
  }
}

/* Mobile responsiveness for download section */
@media (max-width: 480px) {
  .download {
    padding: 56px 0;
  }

  .download__heading {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  .download-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 16px;
    border-radius: 12px;
  }

  .download-card__icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }

  .download-card__title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .download-card__subtitle {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .download-info {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .download-info li {
    margin: 2px 0;
  }

  .download-features {
    gap: 8px;
    margin: 6px 0 12px 0;
  }

  .download-features li {
    font-size: 13px;
    gap: 8px;
  }

  .download-features img {
    width: 14px;
    height: 14px;
  }

  .download-card__button {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    margin: 0;
  }

  .download-card__fineprint {
    font-size: 11px;
    line-height: 1.4;
    margin-top: 8px;
  }
}

/* Extra small screens (320px and below) */
@media (max-width: 320px) {
  .download {
    padding: 48px 0;
  }

  .download__heading {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .download-card {
    padding: 16px 12px;
  }

  .download-card__icon img {
    width: 44px;
    height: 44px;
  }

  .download-card__title {
    font-size: 16px;
    line-height: 1.25;
  }

  .download-card__subtitle {
    font-size: 12px;
    line-height: 1.3;
  }

  .download-info {
    font-size: 11px;
  }

  .download-features li {
    font-size: 12px;
  }

  .download-features img {
    width: 12px;
    height: 12px;
  }

  .download-card__button {
    padding: 12px 16px;
    font-size: 15px;
  }

  .download-card__fineprint {
    font-size: 10px;
  }
}

/* ==========================================================================
   Power User Page Styles - Exact Figma Design
   ========================================================================== */

/* Power User Hero Section - Exact Figma Design */
.power-user-hero {
  background-color: #f2f6fe; /* Light blue Color from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
}

.power-user-hero__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 352px; /* px-[352px] from Figma */
}

.power-user-hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px; /* Add gap to prevent overlap */
}

.power-user-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px; /* gap-[24px] from Figma */
  width: 584px; /* w-[584px] from Figma */
}

.power-user-hero__heading {
  display: flex;
  flex-direction: column;
  gap: 20px; /* gap-[20px] from Figma */
}

.power-user-hero__badge {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 16px; /* text-[16px] from Figma */
  line-height: 20px; /* leading-[20px] from Figma */
  color: #2563eb; /* text-blue-600 from Figma */
  text-transform: uppercase;
  margin: 0;
}

.power-user-hero__title h1 {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 60px; /* text-[60px] from Figma */
  line-height: 60px; /* leading-[60px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  margin: 0;
}

.power-user-hero__description p {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 20px; /* text-[20px] from Figma */
  line-height: 32.5px; /* leading-[32.5px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  margin: 0;
}

.power-user-hero__cta {
  background-color: #2563eb; /* bg-blue-600 from Figma */
  color: #ffffff; /* text-white from Figma */
  border: none;
  border-radius: 8px; /* rounded-[8px] from Figma */
  padding: 18px 32px; /* px-[32px] py-[18px] from Figma */
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 18px; /* text-[18px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  text-align: center;
  white-space: nowrap; /* text-nowrap from Figma */
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1); /* shadow from Figma */
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.power-user-hero__cta:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.power-user-hero__image {
  height: 450px; /* h-[450px] from Figma */
  width: 510px; /* w-[510px] from Figma */
  border-radius: 16px; /* rounded-[16px] from Figma */
  overflow: hidden;
  position: relative;
}

.power-user-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%; /* object-50%-50% from Figma */
  pointer-events: none; /* pointer-events-none from Figma */
}

/* Power User Features Section - Exact Figma Design */
.power-user-features {
  background-color: #ffffff; /* bg-white from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
}

.power-user-features__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 320px; /* px-[320px] from Figma */
}

.power-user-features__content {
  display: flex;
  flex-direction: column;
  gap: 64px; /* gap-[64px] from Figma */
  max-width: 1280px; /* max-w-[1280px] from Figma */
  padding: 0 32px; /* px-[32px] from Figma */
  width: 100%;
}

.power-user-features__header {
  display: flex;
  flex-direction: column;
  gap: 16px; /* gap-[16px] from Figma */
  align-items: center;
  width: 100%;
}

.power-user-features__title h2 {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 36px; /* text-[36px] from Figma */
  line-height: 40px; /* leading-[40px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  text-align: center;
  margin: 0;
}

.power-user-features__subtitle {
  max-width: 672px; /* max-w-[672px] from Figma */
  width: 672px; /* w-[672px] from Figma */
}

.power-user-features__subtitle p {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 20px; /* text-[20px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  text-align: center;
  margin: 0;
}

.power-user-features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px; /* gap-[32px] from Figma */
  width: 100%;
}

.power-user-feature-card {
  background-color: rgba(
    245,
    245,
    245,
    0.5
  ); /* bg-[rgba(245,245,245,0.5)] from Figma */
  border-radius: 12px; /* rounded-[12px] from Figma */
  padding: 34px 24px; /* px-[24px] py-[34px] from Figma */
  display: flex;
  flex-direction: column;
  gap: 20px; /* gap-[20px] from Figma */
  align-items: center;
  flex: 1;
  min-width: 336px; /* Based on Figma card width */
}

.power-user-feature-card__icon {
  background-color: #2563eb; /* bg-blue-600 from Figma */
  border-radius: 8px; /* rounded-[8px] from Figma */
  width: 48px; /* size-[48px] from Figma */
  height: 48px; /* size-[48px] from Figma */
  display: flex;
  align-items: center;
  justify-content: center;
}

.power-user-feature-card__icon img {
  width: 24px; /* size-[24px] from Figma */
  height: 24px; /* size-[24px] from Figma */
  display: block;
}

.power-user-feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px; /* gap-[8px] from Figma */
  width: 336px; /* w-[336px] from Figma */
  align-items: center;
}

.power-user-feature-card__title h3 {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 20px; /* text-[20px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  text-align: center;
  white-space: nowrap; /* text-nowrap from Figma */
  margin: 0;
}

.power-user-feature-card__description p {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 16px; /* text-[16px] from Figma */
  line-height: 24px; /* leading-[24px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  text-align: center;
  margin: 0;
  width: 100%;
}

.power-user-feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Power User Hero Section */
@media (max-width: 1440px) {
  .power-user-hero__container {
    padding: 0 240px;
  }

  .power-user-hero__content {
    gap: 48px;
  }

  .power-user-hero__text {
    width: 520px;
  }

  .power-user-hero__title h1 {
    font-size: 54px;
    line-height: 54px;
  }

  .power-user-hero__image {
    width: 460px;
    height: 400px;
  }
}

@media (max-width: 1400px) {
  .power-user-hero__container {
    padding: 0 200px;
  }
}

@media (max-width: 1200px) {
  .power-user-hero__container {
    padding: 0 100px;
  }

  .power-user-hero__content {
    gap: 40px;
  }

  .power-user-hero__text {
    width: 500px;
  }

  .power-user-hero__title h1 {
    font-size: 48px;
    line-height: 48px;
  }

  .power-user-hero__image {
    width: 400px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .power-user-hero__container {
    padding: 0 16px;
  }

  .power-user-hero {
    padding: 60px 0;
  }

  .power-user-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .power-user-hero__text {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .power-user-hero__title h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .power-user-hero__description p {
    font-size: 18px;
    line-height: 28px;
  }

  .power-user-hero__image {
    width: 100%;
    max-width: 400px;
    height: 300px;
  }

  .power-user-hero__cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .power-user-hero__container {
    padding: 0 12px;
  }

  .power-user-hero {
    padding: 40px 0;
  }

  .power-user-hero__text {
    gap: 16px;
  }

  .power-user-hero__title h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .power-user-hero__description p {
    font-size: 16px;
    line-height: 24px;
  }

  .power-user-hero__cta {
    padding: 14px 24px;
    font-size: 16px;
  }

  .power-user-hero__image {
    height: 250px;
  }
}

/* Responsive Design for Power User Features Section */
@media (max-width: 1440px) {
  .power-user-features__container {
    padding: 0 240px;
  }

  .power-user-features__content {
    gap: 56px;
  }

  .power-user-features__grid {
    gap: 28px;
  }

  .power-user-feature-card {
    min-width: 320px;
  }
}

@media (max-width: 1400px) {
  .power-user-features__container {
    padding: 0 200px;
  }
}

@media (max-width: 1200px) {
  .power-user-features__container {
    padding: 0 100px;
  }

  .power-user-features__content {
    gap: 48px;
  }

  .power-user-features__grid {
    gap: 24px;
  }

  .power-user-feature-card {
    min-width: 300px;
  }

  .power-user-feature-card__content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .power-user-features__container {
    padding: 0 16px;
  }

  .power-user-features {
    padding: 60px 0;
  }

  .power-user-features__content {
    gap: 40px;
    padding: 0 16px;
  }

  .power-user-features__title h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .power-user-features__subtitle {
    width: 100%;
    max-width: 100%;
  }

  .power-user-features__subtitle p {
    font-size: 18px;
    line-height: 26px;
  }

  .power-user-features__grid {
    flex-direction: column;
    gap: 20px;
  }

  .power-user-feature-card {
    min-width: 100%;
    padding: 24px 20px;
  }

  .power-user-feature-card__content {
    width: 100%;
  }

  .power-user-feature-card__title h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .power-user-feature-card__description p {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  .power-user-features__container {
    padding: 0 12px;
  }

  .power-user-features {
    padding: 40px 0;
  }

  .power-user-features__content {
    gap: 32px;
    padding: 0 8px;
  }

  .power-user-features__title h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .power-user-features__subtitle p {
    font-size: 16px;
    line-height: 24px;
  }

  .power-user-feature-card {
    padding: 20px 16px;
  }

  .power-user-feature-card__title h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .power-user-feature-card__description p {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ==========================================================================
   Power User Tools Section - Exact Figma Design
   ========================================================================== */

/* Power User Tools Section - Exact Figma Design */
.power-user-tools {
  background-color: #ffffff; /* bg-white from Figma */
  padding: 80px 0; /* py-[80px] from Figma */
}

.power-user-tools__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 320px; /* px-[320px] from Figma */
}

.power-user-tools__content {
  display: flex;
  flex-direction: column;
  gap: 64px; /* gap-[64px] from Figma */
  max-width: 1280px; /* max-w-[1280px] from Figma */
  padding: 0 32px; /* px-[32px] from Figma */
  width: 100%;
}

.power-user-tools__header {
  display: flex;
  flex-direction: column;
  gap: 16px; /* gap-[16px] from Figma */
  align-items: center;
  width: 1216px; /* w-[1216px] from Figma */
}

.power-user-tools__title h2 {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 36px; /* text-[36px] from Figma */
  line-height: 40px; /* leading-[40px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  text-align: center;
  margin: 0;
}

.power-user-tools__subtitle {
  max-width: 672px; /* max-w-[672px] from Figma */
  width: 577px; /* w-[577px] from Figma */
}

.power-user-tools__subtitle p {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 20px; /* text-[20px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  text-align: center;
  margin: 0;
}

.power-user-tools__list {
  display: flex;
  flex-direction: column;
  gap: 100px; /* gap-[100px] from Figma */
}

.power-user-tool-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1216px; /* w-[1216px] from Figma */
  gap: 64px; /* gap between content and image */
}

.power-user-tool-item--reverse {
  flex-direction: row-reverse;
}

.power-user-tool-content {
  display: flex;
  flex-direction: column;
  gap: 16px; /* gap-[16px] from Figma */
  width: 524px; /* w-[524px] from Figma */
}

.power-user-tool-title h3 {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 30px; /* text-[30px] from Figma */
  line-height: 36px; /* leading-[36px] from Figma */
  color: #424242; /* text-[#424242] from Figma */
  margin: 0;
}

.power-user-tool-description {
  display: flex;
  flex-direction: column;
  gap: 20px; /* gap-[20px] from Figma */
  margin-bottom: 32px; /* gap-[32px] from Figma */
}

.power-user-tool-description p {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 400;
  font-size: 16px; /* text-[16px] from Figma */
  line-height: 24px; /* leading-[24px] from Figma */
  color: #4b5563; /* text-gray-600 from Figma */
  margin: 0;
}

.power-user-tool-cta {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  align-self: flex-start;
}

.power-user-tool-cta span {
  font-family: "Nimbus Sans L", sans-serif;
  font-weight: 700;
  font-size: 18px; /* text-[18px] from Figma */
  line-height: 28px; /* leading-[28px] from Figma */
  color: #2563eb; /* text-blue-600 from Figma */
  text-decoration: underline;
  text-underline-position: from-font;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.power-user-tool-cta:hover span {
  color: #1d4ed8;
}

.power-user-tool-image {
  flex: 1;
  max-width: 592px;
  position: relative; /* needed for overlay positioning */
}

.power-user-tool-image img {
  width: 100%;
  height: 463px;
  object-fit: cover;
  border-radius: var(--casual-browser-radius-xl);
}

/* Responsive Design for Power User Tools Section */
@media (max-width: 1440px) {
  .power-user-tools__container {
    padding: 0 240px;
  }

  .power-user-tool-item {
    width: 100%;
    max-width: 960px;
    gap: 56px;
  }

  .power-user-tool-content {
    width: 100%;
    max-width: 480px;
  }

  .power-user-tool-image {
    width: 100%;
    max-width: 480px;
    height: 400px;
  }
}

@media (max-width: 1400px) {
  .power-user-tools__container {
    padding: 0 200px;
  }
}

@media (max-width: 1200px) {
  .power-user-tools__container {
    padding: 0 100px;
  }

  .power-user-tools__content {
    gap: 48px;
  }

  .power-user-tools__header {
    width: 100%;
  }

  .power-user-tools__subtitle {
    width: 100%;
    max-width: 100%;
  }

  .power-user-tools__list {
    gap: 80px;
  }

  .power-user-tool-item {
    width: 100%;
    gap: 48px;
  }

  .power-user-tool-content {
    width: 100%;
    max-width: 500px;
  }

  .power-user-tool-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
  }
}

@media (max-width: 1024px) {
  .power-user-tool-image img {
    height: 360px;
  }
  .power-user-tool-content {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .power-user-tools__container {
    padding: 0 16px;
  }

  .power-user-tools {
    padding: 60px 0;
  }

  .power-user-tools__content {
    gap: 40px;
    padding: 0 16px;
  }

  .power-user-tools__title h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .power-user-tools__subtitle p {
    font-size: 18px;
    line-height: 26px;
  }

  .power-user-tools__list {
    gap: 60px;
  }

  .power-user-tool-item {
    flex-direction: column !important;
    gap: 32px;
    text-align: center;
  }

  .power-user-tool-item--reverse {
    flex-direction: column !important;
  }

  .power-user-tool-content {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .power-user-tool-title h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .power-user-tool-description p {
    font-size: 15px;
    line-height: 22px;
  }

  .power-user-tool-image {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .power-user-tools__container {
    padding: 0 12px;
  }

  .power-user-tools {
    padding: 40px 20px;
  }

  .power-user-tools__content {
    gap: 32px;
    padding: 0 8px;
  }

  .power-user-tools__title h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .power-user-tools__subtitle p {
    font-size: 16px;
    line-height: 24px;
  }

  .power-user-tools__list {
    gap: 40px;
  }

  .power-user-tool-item {
    gap: 24px;
  }

  .power-user-tool-title h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .power-user-tool-description {
    gap: 16px;
    margin-bottom: 24px;
  }

  .power-user-tool-description p {
    font-size: 14px;
    line-height: 20px;
  }

  .power-user-tool-cta span {
    font-size: 16px;
    line-height: 24px;
  }

  .power-user-tool-image {
    height: 250px;
  }
}
