.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
/* Strong green outline for project cards */
.projects-grid .design-card {
  border: 2px solid var(--green);
  background: color-mix(in oklab, var(--green) 18%, #ffffff 86%);
  border-radius: 6px;
}
/* .projects-grid .design-card:hover - hover effects disabled */
@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* Ensure desktop dropdown has solid background and is visible */
@media (min-width: 769px) {
  .site-nav .dropdown-menu { 
    background: #1E1E24 !important; 
    border: 1px solid #e0e0e0 !important; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    backdrop-filter: none !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .dropdown:hover .dropdown-menu { 
    background: #1E1E24 !important; 
    border-color: #e0e0e0 !important; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: flex !important;
  }
  .site-nav .dropdown-menu a { 
    color: #FDFFFC !important; 
  }
  .site-nav .dropdown-menu a:hover { 
    background: rgba(255,118,80,0.12) !important; 
    color: var(--orange) !important; 
  }
}

/* Fit logo images in header/footer */
.site-header .brand-mark { height: 55px; width: auto; }
.site-footer .brand-mark { height: 55px; width: auto; }

/* Current page indicator - background highlight instead of underline */
.site-nav a.current,
.footer-nav a.current {
  color: var(--orange) !important;
  font-weight: 600;
  background: rgba(255, 118, 80, 0.12) !important;
  border-radius: 4px;
}

/* Active navigation highlighting - background highlight instead of underline */
.site-nav a.nav-active,
.footer-nav a.nav-active {
  color: var(--orange) !important;
  font-weight: 600;
  background: rgba(255, 118, 80, 0.12) !important;
  border-radius: 4px;
}
/* Show a subtle background for current nav item on desktop too */
@media (min-width: 769px) {
  .site-nav a.nav-active:not(.cta) {
    background: rgba(255,118,80,0.12);
  }
}

/* Keep CTA readable when it's the current/active link */
.site-nav .cta.nav-active,
.site-nav .cta-primary.nav-active { 
  color: #FDFFFC !important; 
  background: var(--orange) !important; 
}

/* COMPLETELY REMOVE ALL UNDERLINES AND LINES FROM NAVIGATION */
.site-nav a::after { display: none !important; content: none !important; }
.site-nav a::before { display: none !important; content: none !important; }
.site-nav a.nav-active::after { display: none !important; content: none !important; }
.site-nav a.nav-active::before { display: none !important; content: none !important; }
.site-nav a.current::after { display: none !important; content: none !important; }
.site-nav a.current::before { display: none !important; content: none !important; }

/* Special styling for dropdown toggle when active */
.site-nav .dropdown-toggle.nav-active {
  color: var(--orange) !important;
  font-weight: 600;
  background: rgba(255, 118, 80, 0.12) !important;
  border-radius: 4px;
}
.site-nav .dropdown-toggle.current {
  color: var(--orange) !important;
  font-weight: 600;
  background: rgba(255, 118, 80, 0.12) !important;
  border-radius: 4px;
}

/* RESTORE DROPDOWN ARROW ONLY - ALWAYS VISIBLE - OVERRIDE GLOBAL HIDING */
.site-nav .dropdown-toggle::after {
  content: "▼" !important;
  display: inline !important;
  font-size: 9px !important;
  color: var(--muted) !important;
  margin-left: 6px !important;
  transition: all 220ms ease !important;
}
.site-nav .dropdown-toggle.nav-active::after {
  color: var(--orange) !important;
  display: inline !important;
  content: "▼" !important;
}
.site-nav .dropdown-toggle.current::after {
  color: var(--orange) !important;
  display: inline !important;
  content: "▼" !important;
}

/* Footer active state - no underline, just color change */
.footer-nav a.nav-active::after {
  display: none;
}

/* Global hover kill switch (keeps states static) - exclude CTA buttons, dropdown, and mobile nav */
@media (hover:hover) {
  a:not(.btn):not(.cta):not([style]):not(.dropdown-toggle):not(.dropdown-menu a):hover,
  .brand:hover,
  .brand:hover .brand-mark,
  .card:hover,
  .blog-card:hover,
  .blog-card:hover .blog-card-image img,
  .blog-card-link:hover,
  .blog-card-link:hover::after,
  .work-card:hover,
  .work-item:hover,
  .contact-email a:hover,
  .contact-email-link:hover,
  .back-link:hover,
  .deliver-pill:hover,
  .deliver-pill:focus-visible {
    transform: none !important;
    color: inherit !important;
    background: inherit !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }
}

/* Override hover kill for mobile navigation */
@media (max-width: 768px) {
  .site-nav > ul > li > a:not(.dropdown-toggle):not(.cta):hover,
  .site-nav > ul > li > a:not(.dropdown-toggle):not(.cta):active,
  .site-nav > ul > li > a:not(.dropdown-toggle):not(.cta):focus-visible,
  .site-nav .dropdown-menu a:hover,
  .site-nav .dropdown-menu a:active,
  .site-nav .dropdown-menu a:focus-visible {
    transform: none !important;
    color: var(--orange) !important;
    background: rgba(255,118,80,0.18) !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }
}

/* Split layout for pricing + contact */
.split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 960px) {
  .split-grid { grid-template-columns: 1fr; }
}

/* Ensure split-grid elements in section-light have proper backgrounds */
.section-light .split-grid .pricing-section,
.section-light .split-grid .contact-section {
  background: transparent !important;
}
.section-light .split-grid .pricing-card {
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
  border: 1px solid color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
  color: #1E1E24 !important;
}
.section-light .split-grid .design-card {
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
  border: 1px solid color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
  color: #1E1E24 !important;
}

.contact-card-simple input,
.contact-card-simple textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px !important;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-family: 'Reddit Sans', system-ui, sans-serif;
  font-size: 1rem;
}
.contact-card-simple .cta { width: 100%; justify-content: center; }

/* Light theme for contact card inside white dotted sections */
.section-light .contact-card-simple input,
.section-light .contact-card-simple textarea {
  background: #ffffff;
  color: #1E1E24;
  border-color: #dcdcdc;
  border-radius: 6px !important;
}
.section-light .contact-card-simple input:focus,
.section-light .contact-card-simple textarea:focus {
  outline: 2px solid color-mix(in oklab, var(--green) 40%, #a6d27a);
  outline-offset: 2px;
  border-radius: 6px !important;
}
.section-light .contact-card-simple .cta-primary {
  background: var(--green);
  color: #1E1E24;
  border-color: transparent;
  border-radius: 6px !important;
}
/* Theme */
:root {
  --bg: #1c1c23; /* black */
  --bg-elev: #1c1c23;
  --text: #FDFFFC; /* white */
  --muted: #cdd1cd;
  --line: #2c2c34;
  --orange: #FF7650; /* coral/orange */
  --green: #e3ff86; /* new green */
  --focus: #7aa2ff;
  --radius: 6px;
  --container: 1180px;
}


/* Reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Reddit Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 1.1rem;
  line-height: 1.6;
  padding-top: 72px; /* offset for fixed header height */
}

/* Global heading styles - ALL headings use Prompt */
h1, h2, h3, h4, h5, h6 {
  font-family: "Prompt", system-ui, sans-serif;
  font-weight: 700;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: -9999px; }
.skip-link:focus { left: 12px; top: 12px; background: var(--bg-elev); color: var(--text); padding: 10px 14px; border-radius: 6px; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 12px; 
  font-weight: 700; 
  letter-spacing: 0.2px; 
  transition: all 220ms ease;
}
.brand:hover {
  transform: translateY(-1px);
}
.brand-mark { 
  color: var(--orange); 
  font-size: 18px;
  transition: all 220ms ease;
}
.brand:hover .brand-mark {
  transform: scale(1.1);
}
.brand-name { 
  font-weight: 700; 
  font-size: 18px;
}

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

/* Mobile Navigation - Complete Rebuild */
@media (max-width: 768px) {
  /* Show hamburger button */
  .site-nav .nav-toggle {
    display: flex !important;
  }
  
  /* Hide desktop navigation by default */
  .site-nav ul {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100vw;
    background: var(--bg);
    border: 1px solid var(--line);
    border-top: 0;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    display: none;
  }
  
  /* Show mobile menu when expanded */
  .site-nav[aria-expanded="true"] ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
  }
  
  /* Main navigation items */
  .site-nav > ul > li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid var(--line);
  }
  
  .site-nav > ul > li:last-child {
    border-bottom: none;
  }
  
  /* Main navigation links */
  .site-nav > ul > li > a:not(.dropdown-toggle) {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all 220ms ease;
    width: 100%;
  }
  
  .site-nav > ul > li > a:not(.dropdown-toggle):hover {
    background: rgba(255,118,80,0.18);
    color: var(--orange);
    font-weight: 600;
  }
  /* Tap/active state on touch */
  .site-nav > ul > li > a:not(.dropdown-toggle):active {
    background: rgba(255,118,80,0.24);
    color: var(--orange);
    font-weight: 700;
  }
  /* Keyboard focus mirrors hover style for visibility */
  .site-nav > ul > li > a:not(.dropdown-toggle):focus-visible {
    background: rgba(255,118,80,0.12);
    color: var(--orange);
    font-weight: 600;
    outline: none;
  }
  
  /* Current page highlighting in mobile nav */
  .site-nav > ul > li > a:not(.dropdown-toggle).current,
  .site-nav > ul > li > a:not(.dropdown-toggle).nav-active {
    color: var(--orange);
    background: rgba(255,118,80,0.22);
    font-weight: 700;
  }
  
  /* All pseudo-elements already removed globally above */

  /* All pseudo-elements already removed globally above */

  /* Keep left accent on CTA inside mobile menu per design system */
  
  /* Dropdown container */
  .site-nav .dropdown {
    position: static;
    width: 100%;
  }
  
  /* Dropdown toggle button */
  .site-nav .dropdown-toggle {
    display: block !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: all 220ms ease !important;
    position: relative;
  }
  
  .site-nav .dropdown-toggle:hover {
    background: rgba(255,118,80,0.12);
    color: var(--orange);
  }
  
  .site-nav .dropdown-toggle::after {
    content: "▼" !important;
    font-size: 12px !important;
    color: var(--orange) !important;
    margin-left: 8px !important;
    transition: transform 300ms ease !important;
    position: absolute !important;
    right: 24px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: inline !important;
  }
  
  .site-nav .dropdown.open .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  /* Dropdown menu - hidden by default on mobile */
  .site-nav .dropdown-menu {
    display: none !important;
    background: var(--bg-elev) !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    position: static !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    min-width: auto !important;
  }
  
  /* Show dropdown when open on mobile */
  .site-nav .dropdown.open .dropdown-menu {
    display: block !important;
    background: var(--bg-elev) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .site-nav .dropdown-menu li {
    width: 100% !important;
    margin: 0 !important;
    display: block !important;
  }
  
  .site-nav .dropdown-menu li:last-child {
    border-bottom: none !important;
  }
  
  .site-nav .dropdown-menu a {
    display: block !important;
    padding: 12px 48px !important;
    font-size: 15px !important;
    color: var(--text) !important;
    text-decoration: none !important;
    transition: all 220ms ease !important;
    background: var(--bg-elev) !important;
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
  }
  /* Simple hover/tap highlight for dropdown items */
  .site-nav .dropdown-menu a:hover,
  .site-nav .dropdown-menu a:focus-visible {
    background: rgba(255,118,80,0.12) !important;
    color: var(--orange) !important;
    font-weight: 600 !important;
    outline: none !important;
  }
  .site-nav .dropdown-menu a:active {
    background: rgba(255,118,80,0.16) !important;
    color: var(--orange) !important;
    font-weight: 700 !important;
  }
  /* All pseudo-elements already removed globally above */
  
  .site-nav .dropdown-menu a:hover {
    background: rgba(255,118,80,0.12) !important;
    color: var(--orange) !important;
  }
  
  /* CTA button styling on mobile */
  .site-nav .cta {
    margin: 16px 24px;
    justify-content: center;
    width: calc(100% - 48px);
    border-radius: 6px;
  }
}
.site-nav a { 
  color: var(--text); 
  text-decoration: none; 
  font-weight: 500; 
  font-size: 16px;
  transition: all 220ms ease; 
  position: relative;
  padding: 8px 10px;
  border-radius: 4px;
}
.site-nav a:hover { 
  color: var(--orange); 
  background: rgba(255,118,80,0.12);
}
.site-nav a:focus-visible { 
  color: var(--orange); 
  background: rgba(255,118,80,0.12);
  outline: none;
}
/* Focus should mirror hover for keyboard users */
.site-nav a:not(.cta):focus-visible { 
  color: var(--orange); 
  background: rgba(255,118,80,0.12);
  outline: none;
}
.site-nav .cta:hover {
  color: #FDFFFC; /* keep white text on orange CTA */
}
/* Ensure CTA icon stays white in header */
.site-nav .cta .btn-icon { color: #FDFFFC !important; }
.site-nav .cta[style*="background: var(--orange)"]:hover .btn-icon { color: #FDFFFC !important; }
.site-nav .nav-toggle { 
  display: none; 
  background: transparent; 
  border: 0; 
  cursor: pointer; 
  padding: 12px;
  border-radius: 6px;
  transition: all 220ms ease;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.site-nav .nav-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}
.site-nav .nav-toggle:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.site-nav .bar { 
  display: block !important; 
  width: 22px; 
  height: 3px; 
  background: var(--text) !important; 
  margin: 4px 0; 
  transition: all 220ms ease; 
  border-radius: 1px;
}
.site-nav .nav-toggle:hover .bar {
  background: var(--orange);
}

/* Dropdown Styles */
.dropdown { position: relative; }
.dropdown-toggle { 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  gap: 6px;
}
/* Desktop dropdown arrow hover effect */
.dropdown:hover .dropdown-toggle::after { 
  transform: rotate(180deg); 
  color: var(--orange);
}
/* Focus on dropdown toggle mirrors hover */
.dropdown .dropdown-toggle:focus-visible::after {
  transform: rotate(180deg);
  color: var(--orange);
}

.dropdown-menu { 
  position: absolute; 
  top: calc(100% + 8px); 
  left: 0;
  transform: translateY(-10px);
  background: #1E1E24; 
  border: 1px solid #e0e0e0; 
  border-radius: 6px; 
  padding: 0; 
  min-width: 200px; 
  opacity: 0; 
  visibility: hidden; 
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); 
  z-index: 1000; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
}

.dropdown:hover .dropdown-menu { 
  opacity: 1 !important; 
  visibility: visible !important; 
  transform: translateY(0) !important; 
  display: flex !important;
}

.dropdown-menu li { 
  display: block; 
  margin: 0; 
}

.dropdown-menu a { 
  display: block; 
  padding: 16px 24px; 
  color: #FDFFFC; 
  font-size: 15px; 
  font-weight: 500;
  transition: all 220ms ease; 
  position: relative;
  width: 100%;
  margin: 0;
}

/* All pseudo-elements already removed globally above */

.dropdown-menu a:hover { 
  background: rgba(255,118,80,0.12); 
  color: var(--orange); 
}

/* All pseudo-elements already removed globally above */

.cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 6px; border: 1px solid var(--line); color: #1E1E24; font-family: "Prompt", system-ui, sans-serif; font-size: 1rem; transition: 200ms ease; }
.cta[style*="background: var(--orange)"] { color: #FDFFFC !important; }
.cta:hover { transform: none; }
.cta-primary { background: var(--orange); color: #FDFFFC; border-color: transparent; font-weight: 700; }
.cta-primary:hover { background: #e0592d; color: #FDFFFC; }
.site-nav .cta-primary { background: var(--orange) !important; color: #FDFFFC !important; border-color: var(--orange) !important; }
.site-nav .cta-primary:hover { background: #e0592d !important; color: #FDFFFC !important; }

/* Ensure nav CTA keeps padding and rounded corners on desktop */
.site-nav .cta { 
  padding: 12px 16px; 
  border-radius: 6px; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  font-family: 'Prompt', system-ui, sans-serif; 
  font-size: 0.9rem; 
  text-decoration: none;
}
/* Nav CTA sizing (compact vs hero) */
/* Keep header CTA compact to match nav height */
.site-nav .cta-primary.btn-square { padding: 12px 16px !important; }

/* Force nav CTA hover to stay orange variant */
.site-nav .cta-primary:hover { background: #e0592d !important; color: #FDFFFC !important; }

/* Consistent hover effect for nav CTA buttons with inline styles */
.site-nav .cta[style*="background: var(--orange)"]:hover { 
  background: #e0592d !important; 
  color: #FDFFFC !important; 
  border-color: #e0592d !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 118, 80, 0.3);
}
.cta-secondary { background: #151519; color: #FDFFFC; border-color: transparent; }
.cta-secondary:hover { background: #2a2a31; color: #FDFFFC; }
.cta-outline { background: transparent; color: var(--text); border-color: var(--line); font-weight: 600; }
.cta-outline:hover { background: #2a2a31 !important; color: var(--text) !important; }

/* Green CTA variant for service pages */
.cta-green { background: var(--green); color: #1E1E24; border-color: transparent; font-weight: 700; }
.cta-green:hover { background: color-mix(in oklab, var(--green) 86%, #000 14%); color: #1E1E24; }
.site-nav .cta-green { background: var(--green) !important; color: #1E1E24 !important; border-color: transparent !important; }
.site-nav .cta-green:hover { background: color-mix(in oklab, var(--green) 86%, #000 14%) !important; color: #1E1E24 !important; }

/* Black CTA variant with lighter outline for visibility */
.cta-black { background: #1E1E24; color: #FDFFFC; border-color: #555; font-weight: 700; }
.cta-black:hover { background: #000; color: #FDFFFC; border-color: #777; box-shadow: 0 0 0 3px rgba(255,255,255,0.06); }
.site-nav .cta-black { background: #1E1E24 !important; color: #FDFFFC !important; border-color: #555 !important; }
.site-nav .cta-black:hover { background: #000 !important; color: #FDFFFC !important; border-color: #777 !important; box-shadow: none !important; }

/* CTA left accent line per design system */
.cta-left-accent { border-left: 4px solid #E65100 !important; }
/* Ensure left accent is clearly visible in header nav */
/* Use design system accent color for left border (defined in .cta-left-accent) */
/* Green accent variant */
.cta-green.cta-left-accent { border-left-color: color-mix(in oklab, var(--green) 60%, #3a3a3a 40%) !important; }
/* Utility to force square buttons when needed */
.btn-square { border-radius: 6px !important; }

/* Testimonial cards - unified style */
.testimonial-card {
  background: #ffffff;
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 24px 24px;
  color: #2b2b33;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  position: relative;
}
.testimonial-card--orange {
  background: var(--orange);
  border-left-color: var(--orange);
  color: #1E1E24;
}
.testimonial-card--orange .testimonial-quote p,
.testimonial-card--orange .testimonial-author,
.testimonial-card--orange .testimonial-company,
.testimonial-card--orange .testimonial-mark {
  color: #1E1E24;
}
.testimonials-grid-2 .testimonial-card { background: var(--orange); border-left-color: var(--orange); color: #1E1E24; border-radius: 6px; padding: 24px 24px; }
.testimonials-grid-2 .testimonial-quote p,
.testimonials-grid-2 .testimonial-author,
.testimonials-grid-2 .testimonial-company {
  color: #1E1E24 !important;
}
.testimonials-grid-2 .testimonial-mark {
  color: #1E1E24;
}

/* Home page testimonials: orange cards with 6px radius */
/* Home page testimonials (inside solution-grid) */
section[aria-labelledby="home-testimonials-title"] .solution-grid .testimonial-card {
  background: var(--orange);
  border-left-color: var(--orange);
  color: #1E1E24;
  border-radius: 6px;
  padding: 24px 24px;
}
section[aria-labelledby="home-testimonials-title"] .solution-grid .testimonial-quote p,
section[aria-labelledby="home-testimonials-title"] .solution-grid .testimonial-author,
section[aria-labelledby="home-testimonials-title"] .solution-grid .testimonial-company,
section[aria-labelledby="home-testimonials-title"] .solution-grid .testimonial-mark {
  color: #1E1E24;
}

/* Disable decorative pseudo-quote to avoid duplicate with .testimonial-mark */
.testimonial-card::before { content: none !important; }
.testimonial-quote { margin: 0 0 10px; }
.testimonial-quote p { margin: 0 0 10px; font-size: 1.05rem; line-height: 1.6; }
.testimonial-quote p:first-child { font-weight: 700; color: #1E1E24; }
.testimonial-mark { font-size: 2rem; line-height: 1; color: var(--orange); margin-bottom: 6px; }
.testimonial-author { margin-top: 6px; font-weight: 700; color: #333; }
.testimonial-company { font-weight: 700; color: #333; }

/* Testimonials layout: exactly 2 per row (1 on mobile) */
.testimonials-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonials-grid-2 { 
    grid-template-columns: 1fr !important; 
    gap: 32px;
    padding: 0 16px;
    width: 100%;
    overflow: hidden;
    justify-items: center;
  }
  
  /* Add more spacing around testimonial cards on mobile */
  .testimonial-card {
    margin: 0;
    padding: 20px 16px;
    width: 100%;
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
  }
  
  /* Home page testimonials mobile spacing */
  section[aria-labelledby="home-testimonials-title"] .solution-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
    padding: 0 16px;
    width: 100%;
    overflow: hidden;
    justify-items: center;
  }
  
  section[aria-labelledby="home-testimonials-title"] .testimonial-card {
    margin: 0;
    padding: 20px 16px;
    width: 100%;
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
  }
}

/* Button Icons */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: transform 200ms ease;
}

.cta:hover .btn-icon { transform: none; }

.cta-outline:hover .btn-icon { transform: none; }

/* Hero Base */
.hero { 
  position: relative; 
  padding: 120px 0 80px; 
  background: 
    radial-gradient(1200px 480px at 30% -20%, rgba(227,255,134,0.08), transparent 60%), 
    radial-gradient(900px 420px at 80% -10%, rgba(255,118,80,0.08), transparent 60%);
}
.hero-title { font-weight: 600 !important; font-size: 3.2rem; line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 1.1rem; color: var(--muted); max-width: 820px; margin: 0 0 28px; }
.accent-red { color: var(--orange); }
.accent-green { color: var(--green); }

/* Highlight spans with background blocks like emprove.fi */
.highlight-orange {
  background-color: var(--orange);
  color: #FDFFFC;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}
.highlight-green {
  background-color: var(--green);
  color: #1E1E24;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

/* Ensure highlights work in hero titles */
.hero-title .highlight-orange,
.hero-title .highlight-green {
  color: inherit;
}
.hero-title .highlight-orange {
  color: #FDFFFC;
}
.hero-title .highlight-green {
  color: #1E1E24;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Styles */
.hero-centered { text-align: center; }
.hero-ctas-centered { justify-content: center; }
.hero-title-asym { font-size: 3.2rem; font-weight: 600 !important; line-height: 1.1; margin: 0 auto 20px; text-align: center; }
.hero-subtitle-asym { font-size: 1.3rem; max-width: 700px; margin: 0 auto 32px; text-align: center; }

.hero-marquee { overflow: hidden; border-top: 1px solid color-mix(in oklab, var(--green) 18%, var(--line)); border-bottom: 1px solid color-mix(in oklab, var(--orange) 18%, var(--line)); margin-top: 64px; }
.marquee-track { display: flex; gap: 40px; padding: 16px 0; animation: slide 22s linear infinite; color: #bdbdbd; }
.marquee-track span { opacity: 0.75; }
@keyframes slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.section { padding: 72px 0; }
.section.white-bg { 
  background: var(--white); 
  background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
}
.section.white-bg .section-title { color: var(--black); }
.section.white-bg .card { 
  background: rgba(30,30,36,0.02); 
  border-color: #e0e0e0; 
}
.section.white-bg .card h3 { color: var(--black); }
.section.white-bg .card p { color: #666; }
.section.white-bg .solution-content h3 { color: var(--black); }
.section.white-bg .solution-content p { color: #666; }
.section.white-bg .solution-content li { color: #666; }
.section.white-bg .problem-card h3 { color: var(--black); }
.section.white-bg .problem-card p { color: #666; }
.section.white-bg .card h3 { color: var(--black); }
.section.white-bg .card p { color: #666; }
.section.white-bg .card .list { color: #666; }
.section-title { font-size: 2.8rem; font-weight: 700 !important; line-height: 1.2; margin: 0 0 20px; }
.section-description { 
  font-size: 1.1rem; 
  color: var(--muted); 
  text-align: center; 
  max-width: 600px; 
  margin: 0 auto 40px; 
  line-height: 1.6; 
}

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0)); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: 220ms ease; }
.card:hover { transform: translateY(-2px); border-color: #2a2b2e; }
.card h3 { margin: 0 0 10px; font-size: 2.5rem; font-weight: 700 !important; line-height: 1.2; }
.card h4 { margin: 0 0 8px; font-size: 2rem; font-weight: 700 !important; line-height: 1.2; }
.card p { margin: 0 0 12px; color: var(--muted); font-size: 1.1rem; line-height: 1.6; }
.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: #FDFFFC;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.list { margin: 0; padding-left: 18px; color: #b8b8b8; font-size: 1.1rem; line-height: 1.6; }

.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.work-card { display: block; border: 1px solid color-mix(in oklab, var(--green) 10%, var(--line)); border-radius: var(--radius); overflow: hidden; background: #0f0f10; }
.work-thumb { height: 160px; background: linear-gradient(120deg, rgba(227,255,134,0.1), rgba(255,118,80,0.1)); border-bottom: 1px solid var(--line); }
.work-meta { display: flex; gap: 8px; color: #b8b8b8; padding: 14px 16px; font-size: 1.1rem; line-height: 1.5; }
.work-card:hover { transform: translateY(-2px); border-color: #2a2b2e; }

.credibility { background: #0d0d0e; border-top: 1px solid color-mix(in oklab, var(--green) 12%, var(--line)); border-bottom: 1px solid color-mix(in oklab, var(--orange) 12%, var(--line)); }
.logos { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #b8b8b8; font-size: 1.1rem; line-height: 1.5; }
.logo-row { display: flex; gap: 10px; flex-wrap: wrap; }
.logo-pill { border: 1px solid color-mix(in oklab, var(--orange) 14%, var(--line)); border-radius: 999px; padding: 8px 12px; background: #121214; }

.contact { text-align: center; }
.contact-copy { color: var(--muted); margin: 4px 0 16px; font-size: 1.1rem; line-height: 1.6; }
.contact-actions { 
  display: flex; 
  gap: 16px; 
  justify-content: center; 
  flex-wrap: wrap; 
  margin: 32px 0; 
}
.contact-email { 
  text-align: center; 
  font-size: 1.1rem; 
  color: var(--muted); 
  margin-top: 24px; 
  line-height: 1.6;
}
.contact-email a { 
  color: var(--orange); 
  text-decoration: none; 
}
.contact-email a:hover { 
  text-decoration: underline; 
}

/* Footer Styles */
.site-footer { 
  border-top: 1px solid color-mix(in oklab, var(--orange) 16%, var(--line)); 
  padding: 48px 0 24px; 
  color: var(--muted); 
  font-size: 0.95rem; 
  line-height: 1.6; 
  background: var(--bg-elev);
}

.footer-content { 
  display: grid; 
  grid-template-columns: 1fr 1.5fr; 
  gap: 48px; 
  margin-bottom: 32px; 
}

.footer-brand { 
  display: flex; 
  align-items: center;
  gap: 12px; 
  color: var(--text);
  font-family: 'Prompt', system-ui, sans-serif;
}

.footer-brand .brand-mark { 
  height: 40px; 
  width: auto; 
}

.footer-links { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
}

.footer-work h3,
.footer-write h3,
.footer-connect h3 { 
  font-weight: 600; 
  font-size: 1rem; 
  color: var(--text); 
  margin: 0 0 16px 0; 
  font-family: 'Prompt', system-ui, sans-serif;
}

.footer-work ul,
.footer-write ul,
.footer-connect ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

.footer-work li,
.footer-write li,
.footer-connect li { 
  margin-bottom: 8px; 
}

.footer-work a,
.footer-write a,
.footer-connect a { 
  color: var(--muted); 
  text-decoration: none; 
  transition: color 0.2s ease; 
  font-size: 0.9rem;
  font-family: 'Prompt', system-ui, sans-serif;
}

.footer-work a:hover,
.footer-write a:hover,
.footer-connect a:hover { 
  color: var(--orange); 
}

/* Enhanced current page highlighting in footer */
.footer-work a.current,
.footer-write a.current,
.footer-connect a.current {
  color: var(--orange) !important;
  font-weight: 700;
  background: rgba(255, 118, 80, 0.12);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.footer-bottom { 
  border-top: 1px solid var(--line); 
  padding-top: 24px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 16px;
}

.footer-bottom p { 
  margin: 0; 
  font-size: 0.85rem; 
  color: var(--muted);
  font-family: 'Prompt', system-ui, sans-serif;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content { 
    grid-template-columns: 1fr; 
    gap: 32px; 
  }
  
  .footer-links { 
    grid-template-columns: 1fr; 
    gap: 24px; 
  }
  
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
    gap: 8px;
  }
  
  .footer-brand {
    justify-content: center;
    margin-bottom: 24px;
  }
  
  .footer-work,
  .footer-write,
  .footer-connect {
    text-align: center;
  }
}

/* Mobile Navigation Additional Styles */
@media (max-width: 768px) {
  /* Prevent body scroll when mobile menu is open */
  body.nav-open {
    overflow: hidden;
  }
}

/* Mobile Content Responsive */
@media (max-width: 768px) {
  /* Container and Layout */
  .container {
    padding: 0 16px;
  }
  
  /* Hero padding reduction for mobile */
  .hero {
    padding: 40px 0 40px;
  }
  
  /* Typography Scale - Mobile */
  h1, .hero-title, .hero-title-asym, .contact-title, .blog-hero-title, .post-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  h2, .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h4 {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  /* Hero Sections */
  .hero-title,
  .hero-title-asym,
  .contact-title {
    font-size: 2.4rem;
    line-height: 1.2;
  }
  
  /* Blog card mobile margin */
  .blog-card {
    margin-bottom: 32px;
  }
  
  /* Back to blog mobile spacing */
  .back-to-blog {
    margin-bottom: 4px;
  }
  
  /* Post header mobile spacing */
  .post-header {
    margin-bottom: 12px;
    padding-bottom: 8px;
    text-align: left !important;
  }
  
  /* Post title mobile alignment */
  .post-title {
    text-align: left !important;
  }
  
  
  /* Blog collection grid spacing */
  .blog-grid {
    gap: 24px;
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  
  .hero-subtitle,
  .hero-subtitle-asym {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .hero-ctas,
  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .section-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Grid Layouts */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .solution-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  /* Marquee */
  .hero-marquee {
    margin-top: 32px;
  }
  
  .marquee-track {
    gap: 24px;
    padding: 12px 0;
  }
  
  .marquee-track span {
    font-size: 0.9rem;
  }
  
  /* Blog Content */
  .blog-post-page .container {
    padding: 0 16px;
  }
  
  .post-content {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .post-content h2 {
    font-size: 1.6rem;
  }
  
  .post-content h3 {
    font-size: 1.4rem;
  }
  
  .post-content h4 {
    font-size: 1.2rem;
  }
  
  .post-author {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 12px;
  }
  
  .nav-links {
    width: 100%;
  }
  
  /* Button Groups */
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  /* Contact Forms */
  .contact-email-link {
    width: 100%;
    max-width: 280px;
  }
  
  /* Card Layouts */
  .card {
    padding: 20px;
  }
  
  /* Work CTA */
  .work-cta {
    text-align: center;
  }
}

/* Tablet Responsive */
@media (max-width: 960px) {
  .cards { 
    grid-template-columns: 1fr; 
  }
  
  .work-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .container {
    padding: 0 20px;
  }
  
  .hero-title,
  .hero-title-asym {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  /* Typography Scale - Small Mobile */
  h1, .hero-title, .hero-title-asym, .contact-title, .blog-hero-title, .post-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  /* Post header small mobile alignment */
  .post-header {
    text-align: left !important;
  }
  
  
  h2, .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  
  h4 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .hero-title,
  .hero-title-asym {
    font-size: 2rem;
  }
  
  
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle,
  .hero-subtitle-asym {
    font-size: 1.1rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .cta {
    font-size: 0.85rem;
    padding: 10px 14px;
  }
  
  .marquee-track span {
    font-size: 0.8rem;
  }
  
  .post-content h2 {
    font-size: 1.4rem;
  }
  
  .post-content h3 {
    font-size: 1.2rem;
  }
  
  .post-content h4 {
    font-size: 1.1rem;
  }
}

/* Light sections (Figma-like dotted background) */
.section-light {
  --light-bg: #FDFFFC;
  --light-text: #1E1E24;
  background:
    radial-gradient(circle at 1px 1px, rgba(30,30,36,0.12) 1px, rgba(0,0,0,0) 1px),
    var(--light-bg);
  background-size: 16px 16px, auto;
  color: var(--light-text);
  border-top: 1px solid color-mix(in oklab, var(--orange) 10%, var(--line));
  border-bottom: 1px solid color-mix(in oklab, var(--green) 10%, var(--line));
}

/* Ensure all elements in section-light get proper light backgrounds */
.section-light .pricing-section,
.section-light .contact-section {
  background: transparent !important;
}
.section-light .pricing-card,
.section-light .design-card,
.section-light form {
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
  color: #1E1E24 !important;
  border-color: color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
}
.section-light input,
.section-light textarea {
  background: #ffffff !important;
  color: #1E1E24 !important;
  border-color: #dcdcdc !important;
}
.section-light button {
  background: var(--green) !important;
  color: #1E1E24 !important;
  border-color: var(--green) !important;
}
/* Project cards on light sections */
.section-light .solution-grid { gap: 20px; }
.section-light .design-card {
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
  border: 1px solid color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-radius: 12px;
  color: #1E1E24 !important;
}
/* .section-light .design-card:hover - hover effects disabled to prevent white background */
.section-light .design-card h3 {
  color: #1E1E24;
  font-size: 1.6rem;
  font-family: "Prompt", system-ui, sans-serif;
  font-weight: 700;
}

/* Ensure project cards use green-tinted background even inside section-light */
.section-light .projects-grid .design-card {
  background: color-mix(in oklab, var(--green) 18%, #ffffff 86%);
  border: 2px solid var(--green);
  border-radius: 6px;
}
/* .section-light .projects-grid .design-card:hover - hover effects disabled to prevent white background */
.section-light .design-card p {
  color: #2b2b33;
}
.section-light .design-card .list { color: #2b2b33; list-style: none; padding-left: 0; }
.section-light .design-card .list li {
  position: relative;
  padding-left: 18px;
}
.section-light .design-card .list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.section-light .pricing-card {
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
  border: 1px solid color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
  text-align: left;
  color: #1E1E24 !important;
}
.section-light .pricing-card.featured {
  border-color: color-mix(in oklab, var(--green) 50%, #dcdcdc) !important;
  box-shadow: 0 8px 32px rgba(104, 159, 56, 0.18);
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
}
.section-light .pricing-price { color: #1E1E24 !important; }
.section-light .pricing-description { color: #2b2b33 !important; }
.section-light .pricing-features li { color: #2b2b33 !important; }
.section-light .section-title { color: var(--light-text) !important; }
.section-light p { color: #2b2b33 !important; }

/* Specific styling for contact form in section-light */
.section-light .contact-section form {
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
  border: 1px solid color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
  color: #1E1E24 !important;
}
.section-light .contact-section input,
.section-light .contact-section textarea {
  background: #ffffff !important;
  color: #1E1E24 !important;
  border: 1px solid #dcdcdc !important;
}
.section-light .contact-section input:focus,
.section-light .contact-section textarea:focus {
  outline: 2px solid color-mix(in oklab, var(--green) 40%, #a6d27a);
  outline-offset: 2px;
  border-color: color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
}
.section-light .contact-section button {
  background: var(--green) !important;
  color: #1E1E24 !important;
  border-color: var(--green) !important;
}

/* Additional styling for pricing elements in section-light */
.section-light .pricing-badge {
  background: var(--green) !important;
  color: #1E1E24 !important;
}
.section-light .pricing-header h3 {
  color: #1E1E24 !important;
}
.section-light .pricing-estimate {
  color: #666 !important;
}
.section-light .pricing-features {
  color: #2b2b33 !important;
}
.section-light .pricing-features li {
  color: #2b2b33 !important;
}

/* Ultra-specific selectors to override any remaining inline styles */
.section.section-light .container .split-grid .pricing-section .pricing-card,
.section.section-light .container .split-grid .contact-section .design-card,
.section.section-light .container .projects-grid .design-card,
.section.section-light .container .design-card {
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
  border: 1px solid color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
  color: #1E1E24 !important;
}

.section.section-light .container .split-grid .contact-section .design-card input,
.section.section-light .container .split-grid .contact-section .design-card textarea {
  background: #ffffff !important;
  color: #1E1E24 !important;
  border: 1px solid #dcdcdc !important;
}

/* Nuclear option - target all design-card elements in section-light */
.section-light [class*="design-card"],
.section-light [class*="pricing-card"] {
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
  border: 1px solid color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
  color: #1E1E24 !important;
}

/* Specifically target the projects-grid cards */
.section-light .projects-grid .design-card {
  background: color-mix(in oklab, var(--green) 25%, #ffffff 75%) !important;
  border: 1px solid color-mix(in oklab, var(--green) 40%, #dcdcdc) !important;
  color: #1E1E24 !important;
}

/* Simple Pricing Contact Section */
.pricing-contact-section {
  padding: 60px 0;
}

.pricing-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .pricing-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Simple Cards - Override all other rules */
.pricing-contact-section .pricing-card,
.pricing-contact-section .contact-card {
  background: #1E1E24 !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 48px 32px !important;
  color: #FDFFFC !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Headings - Use design system h3 size, left aligned */
.pricing-contact-section h3 {
  font-family: "Prompt", system-ui, sans-serif;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #FDFFFC !important;
  margin: 0 0 16px !important;
  text-align: left !important;
}

/* Pricing Card Content */
.pricing-contact-section .pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange) !important;
  margin: 16px 0 8px;
}

.pricing-timeline {
  color: #cdd1cd;
  margin-bottom: 24px;
}

.pricing-features {
  flex-grow: 1;
}

.pricing-contact-section .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #FDFFFC !important;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--orange);
  color: #1E1E24;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  color: #cdd1cd;
  font-style: italic;
  margin-top: 24px;
}

/* Contact Card Content */
.pricing-contact-section .contact-subtitle {
  color: #FDFFFC !important;
  margin-bottom: 24px !important;
  text-align: left !important;
}

.pricing-contact-section .contact-subtitle a {
  color: var(--orange) !important;
  text-decoration: none;
}

.pricing-contact-section .contact-subtitle a:hover {
  text-decoration: underline;
}

.pricing-contact-section .contact-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  background: #1E1E24 !important;
}

.pricing-contact-section .contact-card input,
.pricing-contact-section .contact-card textarea {
  background: #2c2c34 !important;
  color: #FDFFFC !important;
  border: 1px solid #404040 !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  font-family: inherit !important;
  font-size: 1rem !important;
}

/* Nuclear option for form fields */
.pricing-contact-section input,
.pricing-contact-section textarea {
  background: #ffffff !important;
  color: #1E1E24 !important;
  border: 1px solid #dcdcdc !important;
}

/* Override form background to be black */
.pricing-contact-section form {
  background: #1E1E24 !important;
  border: none !important;
  outline: none !important;
}

.pricing-contact-section .contact-card input:focus,
.pricing-contact-section .contact-card textarea:focus {
  outline: none !important;
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(255, 118, 80, 0.2) !important;
}

.pricing-contact-section .contact-card button {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  background: var(--orange) !important;
  color: #1E1E24 !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 16px 24px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-family: 'Prompt', system-ui, sans-serif !important;
  cursor: pointer !important;
  margin-top: 8px !important;
  transition: all 0.2s ease !important;
}

.pricing-contact-section .contact-card .btn-text {
  color: #FDFFFC !important;
  font-weight: 700 !important;
}

.pricing-contact-section .contact-card .btn-icon {
  color: #FDFFFC !important;
  font-weight: 700 !important;
}

.pricing-contact-section .contact-card button:hover {
  background: color-mix(in oklab, var(--orange) 80%, #1E1E24 20%) !important;
  transform: translateY(-1px) !important;
}

.pricing-contact-section .btn-icon {
  font-size: 1.1rem !important;
  transition: transform 0.2s ease !important;
  color: #FDFFFC !important;
  font-weight: 700 !important;
}

.pricing-contact-section .contact-card button:hover .btn-icon {
  transform: translateX(2px) !important;
}

.meeting-option {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.meeting-option p {
  color: #cdd1cd;
  margin-bottom: 16px;
}

.meeting-option a {
  color: var(--orange);
  text-decoration: none;
  border: 2px solid var(--orange);
  border-radius: 6px;
  padding: 12px 20px;
  display: inline-block;
  transition: all 0.2s ease;
}

.meeting-option a:hover {
  background: var(--orange);
  color: #1E1E24;
}

/* FAQ Section Styling */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.faq-item {
  background: #1E1E24;
  border: 1px solid #2c2c34;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(255, 118, 80, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: "Prompt", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FDFFFC;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 118, 80, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 40px;
  margin: 0;
  color: #cdd1cd;
  font-size: 1rem;
  line-height: 1.6;
}

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.process-step { background: rgba(255,255,255,0.78); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); padding: 18px; backdrop-filter: blur(2px); position: relative; overflow: hidden; }
.process-step::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; border: 1px dashed rgba(0,0,0,0.06); }
.process-section .process-step { background: rgba(255,255,255,0.06); border-color: color-mix(in oklab, var(--line) 80%, var(--orange) 10%); }
.problem-section .process-step.accent-orange { background: color-mix(in oklab, var(--orange) 12%, #1E1E24 90%); box-shadow: 0 0 0 1px color-mix(in oklab, var(--orange) 30%, var(--line)) inset; }
.problem-section .process-step.accent-green { background: color-mix(in oklab, var(--orange) 12%, #1E1E24 90%); box-shadow: 0 0 0 1px color-mix(in oklab, var(--orange) 30%, var(--line)) inset; }
/* Problem section shapes and text */
.problem-section .process-step { color: #FDFFFC; }
.problem-section .process-step p { color: #FDFFFC; }
.problem-section .process-step::after { border-color: color-mix(in oklab, var(--orange) 30%, transparent); }
.problem-section .step-head,
.problem-section .step-head strong { color: var(--orange); }
.problem-section .step-badge,
.problem-section .step-badge.orange,
.problem-section .step-badge.green { background: var(--orange); color: #1E1E24; }
.process-step h3 { margin: 0 0 8px; font-size: 2.5rem; color: #14141a; }
.process-step p { margin: 0; color: #2b2b33; font-size: 1.1rem; }
.process-outcomes { margin-top: 20px; background: var(--orange); border: 1px solid var(--orange); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 18px; color: #1E1E24; }
.process-outcomes h3 { margin: 0 0 10px; color: #1E1E24; font-size: 2.5rem; }
.process-outcomes .list { color: #1E1E24; }
.process-note { margin-top: 10px; color: #1E1E24; font-size: 1.1rem; }
/* Step badges and highlights */
.step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.step-badge { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; color: #1E1E24; }
.step-badge.orange { background: var(--orange); }
.step-badge.green { background: var(--green); }
.hl { padding: 2px 6px; border-radius: 6px; }
.hl.orange { background: rgba(255,118,80,0.25); color: #1E1E24; }
.hl.green { background: rgba(227,255,134,0.35); color: #1E1E24; }
/* Pricing */
.pricing { border-top: 1px solid color-mix(in oklab, var(--orange) 12%, var(--line)); }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.price-card { background: #15151a; border: 1px solid color-mix(in oklab, var(--green) 10%, var(--line)); border-radius: var(--radius); padding: 22px; color: var(--text); display: flex; flex-direction: column; gap: 12px; }
.price-card.highlight { border-color: color-mix(in oklab, var(--orange) 24%, var(--line)); box-shadow: 0 10px 30px rgba(255,118,80,0.12); }
.price-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; font-size: 0.75rem; color: #b8b8b8; }
.pill-green { background: rgba(227,255,134,0.12); border-color: rgba(227,255,134,0.36); color: var(--green); }
.pill-orange { background: rgba(255,118,80,0.12); border-color: rgba(255,118,80,0.36); color: var(--orange); }
.price { font-family: "Prompt", Inter, system-ui, sans-serif; font-size: 1.75rem; font-weight: 700; }
.price-copy { color: #bdbdbd; margin: 0; font-size: 1.1rem; }
.price-list { margin: 0; padding-left: 18px; color: #c9c9c9; font-size: 1.1rem; }
@media (max-width: 960px) { .price-grid { grid-template-columns: 1fr; } }
@media (max-width: 960px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* Blog Styles */
.blog-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: radial-gradient(1200px 480px at 30% -20%, rgba(227,255,134,0.08), transparent 60%), radial-gradient(900px 420px at 80% -10%, rgba(255,118,80,0.08), transparent 60%);
}
.blog-hero-title {
  font-size: 3.2rem;
  font-weight: 700 !important;
  line-height: 0.9;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.blog-hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Collection */
.blog-collection {
  padding: 80px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: #15151a;
  border: 1px solid color-mix(in oklab, var(--green) 10%, var(--line));
  border-radius: var(--radius);
  overflow: hidden;
  transition: 220ms ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--orange) 20%, var(--line));
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 220ms ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-content {
  padding: 24px;
}
.blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--muted);
}
.blog-card-category {
  background: rgba(255,118,80,0.1);
  color: var(--orange);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.blog-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--text);
}
.blog-card-excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 200ms ease;
}
.blog-card-link:hover {
  color: var(--green);
}
.blog-card-link::after {
  content: "→";
  transition: 200ms ease;
}
.blog-card-link:hover::after {
  transform: translateX(4px);
}

/* Individual Blog Post Styles */
.blog-content {
  padding: 80px 0;
}
.blog-post {
  max-width: 1000px;
  margin: 0 auto 80px;
}
.blog-post:last-child {
  margin-bottom: 0;
}

.post-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in oklab, var(--orange) 12%, var(--line));
}
.post-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}
.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 1.1rem;
}
.post-category {
  background: rgba(255,118,80,0.1);
  color: var(--orange);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.post-content {
  line-height: 1.7;
  color: var(--text);
}
.post-content p {
  margin: 0 0 20px;
  font-size: 1rem;
}
.post-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--white);
  line-height: 1.1;
}

.post-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--white);
  line-height: 1.2;
}
.post-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--white);
  line-height: 1.3;
}
.post-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--white);
  line-height: 1.3;
}

.post-content ol, .post-content ul {
  margin: 0 0 20px;
  padding-left: 24px;
}
.post-content li {
  margin: 0 0 8px;
  font-size: 1rem;
}
.post-content strong {
  color: var(--orange);
  font-weight: 600;
}

/* Navigation active state */
.site-nav .active {
  color: var(--orange);
}

/* Individual Blog Post Page */
.blog-post-page {
  padding: 80px 0 80px;
}

/* Design System Styles */
.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.design-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: 220ms ease;
}
/* .design-card:hover - hover effects disabled */
.design-card h3 {
  margin: 0 0 16px;
  font-size: 2.5rem;
  color: var(--text);
  font-weight: 700;
}
.design-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Deliverables cloud (floating pills) */
.deliver-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  padding: 8px 4px;
  text-align: center;
}
.deliver-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid color-mix(in oklab, var(--orange) 38%, var(--line));
  background: color-mix(in oklab, var(--orange) 16%, #ffffff 88%);
  color: #1E1E24;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.deliver-pill:hover,
.deliver-pill:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  outline: none;
}
/* force all deliver pills to orange style */
.deliver-pill.orange,
.deliver-pill.green { 
  background: color-mix(in oklab, var(--orange) 16%, #ffffff 88%);
  border-color: color-mix(in oklab, var(--orange) 38%, var(--line));
}
/* remove dots */
.deliver-pill .dot { display: none; }

/* organic offsets */
/* initial gentle offsets (may be overridden by JS randomizer) */
.deliver-pill:nth-child(1) { transform: translateY(-2px); }
.deliver-pill:nth-child(2) { transform: translateY(6px); }
.deliver-pill:nth-child(3) { transform: translateY(-4px); }
.deliver-pill:nth-child(4) { transform: translateY(8px); }

/* optional subtle floating motion */
@media (prefers-reduced-motion: no-preference) {
  .deliver-pill.float {
    animation: pillFloat 6s ease-in-out infinite;
  }
  @keyframes pillFloat {
    0%, 100% { transform: translateY(var(--pill-offset, 0)); }
    50% { transform: translateY(calc(var(--pill-offset, 0) - 6px)); }
  }
}

@media (max-width: 640px) {
  .deliver-pill { font-size: 0.85rem; padding: 8px 10px; }
  .deliver-pill:nth-child(n) { transform: none; }
}

/* Color Swatches */
.color-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.color-swatch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.swatch {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.bg-primary { background: var(--bg); }
.bg-elevated { background: var(--bg-elev); }
.bg-text { background: var(--text); }
.bg-muted { background: var(--muted); }
.bg-orange { background: var(--orange); }
.bg-green { background: var(--green); }
.bg-line { background: var(--line); }
.bg-focus { background: var(--focus); }
.swatch-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.color-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
.color-value {
  font-family: 'Courier New', monospace;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Typography Showcase */
.font-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.font-sample {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.font-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
.font-usage {
  color: var(--muted);
  font-size: 0.8rem;
}
.font-preview {
  color: var(--text);
  line-height: 1.4;
}

/* Type Scale */
.type-scale {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.type-sample {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.type-label {
  min-width: 40px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.8rem;
}
.type-size {
  min-width: 60px;
  font-family: 'Courier New', monospace;
  color: var(--muted);
  font-size: 0.8rem;
}
.type-preview {
  margin: 0;
  color: var(--text);
}

/* Component Showcase */
.component-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.button-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button-states {
  margin-top: 16px;
}
.button-states h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--text);
}
.highlight-examples {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight-examples p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.pill-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.badge-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Spacing Showcase */
.spacing-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}
.spacing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.spacing-visual {
  background: var(--orange);
  border-radius: 2px;
}
.spacing-item span {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: 'Courier New', monospace;
}

/* Radius Showcase */
.radius-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}
.radius-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.radius-visual {
  width: 40px;
  height: 40px;
  background: var(--green);
}
.radius-item span {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: 'Courier New', monospace;
  text-align: center;
}

/* Responsive Design System */
@media (max-width: 960px) {
  .design-grid {
    grid-template-columns: 1fr;
  }
  .color-swatches {
    grid-template-columns: 1fr;
  }
  .spacing-showcase,
  .radius-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .design-card {
    padding: 16px;
  }
  .type-sample {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .button-group {
    flex-direction: column;
  }
  .spacing-showcase,
  .radius-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Additional mobile fixes for design system */
@media (max-width: 768px) {
  .design-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .design-card {
    padding: 20px;
  }
  
  .color-swatches {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .component-showcase {
    gap: 16px;
  }
  
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .spacing-showcase,
  .radius-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* Typography section mobile fixes */
  .section-light .section-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Component showcase mobile improvements */
  .component-showcase > div {
    text-align: center;
  }
  
  /* Better mobile spacing for design cards */
  .design-card h3 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .design-card p {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}

/* Hero Variations - Lighter & Cheekier Styles */

/* Hero Variation 1: Haamu.io Style - Minimalist & Direct */
.hero-variation-1 {
  background: #ffffff;
  padding: 80px 0;
  font-family: 'Prompt', system-ui, sans-serif;
}

.haamu-hero {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.haamu-content {
  padding: 0 40px;
}

.haamu-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.1;
}

.haamu-highlight {
  background-color: var(--orange);
  color: #FDFFFC;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.haamu-subtitle {
  font-size: 1.4rem;
  color: #333333;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}



.haamu-trust {
  margin-top: 50px;
}

.trust-text {
  font-size: 0.9rem;
  color: #999999;
  margin-bottom: 20px;
  display: block;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
  opacity: 0.7;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.trust-logo:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Hero Variation 2: Haamu.io Style - Dark Background */
.hero-variation-2 {
  background: #1a1a1a;
  padding: 80px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.haamu-dark .haamu-title {
  color: #ffffff;
}

.haamu-dark .haamu-subtitle {
  color: #cccccc;
}

.haamu-dark .trust-text {
  color: #999999;
}

.haamu-dark .trust-logo {
  color: #cccccc;
  border-color: #333333;
}

.haamu-dark .trust-logo:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-title-playful {
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive, system-ui, sans-serif !important;
  font-size: 2.8rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  margin: 0 auto 24px !important;
  text-align: center !important;
  color: #fff !important;
}

.hero-subtitle-playful {
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive, system-ui, sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  max-width: 700px !important;
  margin: 0 auto 32px !important;
  text-align: center !important;
  color: #e0e0e0 !important;
}

.cta-playful {
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive, system-ui, sans-serif !important;
  border-radius: 20px !important;
  padding: 14px 24px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  transform: rotate(-1deg) !important;
  transition: all 0.3s ease !important;
}

.cta-playful:hover {
  transform: rotate(1deg) scale(1.05) !important;
}

/* Hero Variation 2: RollaVideo.fi Style - Bold & Visual */
.hero-variation-2 {
  background: #1a1a1a;
  padding: 80px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.rolla-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.rolla-content {
  padding: 40px;
}

.rolla-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  line-height: 1.1;
}

.rolla-highlight {
  color: #ff6b35;
  position: relative;
}

.rolla-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff6b35;
  opacity: 0.8;
}

.rolla-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 500px;
}

.rolla-button {
  background: #ff6b35;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 50px;
}

.rolla-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.rolla-clients {
  margin-top: 50px;
}

.clients-text {
  font-size: 0.9rem;
  color: #999999;
  margin-bottom: 20px;
  display: block;
}

.clients-logos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.client-logo {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
  opacity: 0.7;
}

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

.video-mockup {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-screen {
  background: #000000;
  border-radius: 8px;
  padding: 30px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-content {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}

.video-title {
  font-size: 1rem;
  font-weight: 600;
}

.video-arrow {
  font-size: 1.5rem;
  color: #ff6b35;
}

.hero-title-casual {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif !important;
  font-size: 2.6rem !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em !important;
  margin: 0 auto 20px !important;
  text-align: center !important;
  color: #f5f5f5 !important;
}

.hero-subtitle-casual {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  max-width: 650px !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
  color: #d0d0d0 !important;
}

.cta-casual {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  background: rgba(227,255,134,0.9) !important;
  color: #1E1E24 !important;
  border: none !important;
}

/* Hero Variation 3: GetBased.com Style - Interactive & Dynamic */
.hero-variation-3 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.getbased-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.getbased-content {
  padding: 40px;
}

.getbased-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  line-height: 1.1;
}

.getbased-highlight {
  color: #ffd700;
  position: relative;
}

.getbased-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffd700;
  opacity: 0.8;
}

.getbased-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 500px;
}

.getbased-button {
  background: #ffd700;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 50px;
}

.getbased-button:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

.getbased-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.getbased-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
}

.interactive-element {
  position: relative;
  width: 300px;
  height: 300px;
}

.element-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 50px;
  left: 50px;
  animation: pulse 2s infinite;
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 150px;
  right: 50px;
  animation: pulse 2s infinite 0.5s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 50px;
  left: 100px;
  animation: pulse 2s infinite 1s;
}

.element-line {
  position: absolute;
  background: rgba(255,255,255,0.3);
  height: 2px;
}

.line-1 {
  width: 100px;
  top: 90px;
  left: 130px;
  transform: rotate(45deg);
}

.line-2 {
  width: 80px;
  bottom: 100px;
  right: 80px;
  transform: rotate(-45deg);
}

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

.hero-title-cheeky {
  font-family: 'Impact', 'Arial Black', sans-serif !important;
  font-size: 3.4rem !important;
  font-weight: 900 !important;
  line-height: 1.0 !important;
  letter-spacing: -0.03em !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.hero-subtitle-cheeky {
  font-family: 'Arial', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  max-width: 750px !important;
  margin: 0 auto 36px !important;
  text-align: center !important;
  color: #f0f0f0 !important;
}

.cta-cheeky {
  font-family: 'Impact', 'Arial Black', sans-serif !important;
  border-radius: 12px !important;
  padding: 16px 28px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  background: linear-gradient(45deg, var(--green), #c8e65c) !important;
  color: #1E1E24 !important;
  border: 3px solid #fff !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

/* Hero Variation 4: UXPlaybook.org Style - Educational & Resourceful */
.hero-variation-4 {
  background: #f8f9fa;
  padding: 80px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.uxplaybook-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.uxplaybook-content {
  padding: 40px;
}

.uxplaybook-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.1;
}

.uxplaybook-highlight {
  color: #28a745;
  position: relative;
}

.uxplaybook-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #28a745;
  opacity: 0.3;
}

.uxplaybook-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 40px;
  max-width: 500px;
}

.uxplaybook-button {
  background: #28a745;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 50px;
}

.uxplaybook-button:hover {
  background: #218838;
  transform: translateY(-2px);
}

.uxplaybook-trust {
  margin-top: 50px;
}

.trust-stats {
  font-size: 0.9rem;
  color: #999999;
  font-weight: 500;
}

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

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 400px;
}

.playbook-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.playbook-item:hover {
  transform: translateY(-5px);
}

.playbook-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.playbook-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
}

.hero-title-airy {
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif !important;
  font-size: 2.4rem !important;
  font-weight: 300 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em !important;
  margin: 0 auto 24px !important;
  text-align: center !important;
  color: #f8f8f8 !important;
}

.hero-subtitle-airy {
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif !important;
  font-size: 1.0rem !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  max-width: 600px !important;
  margin: 0 auto 32px !important;
  text-align: center !important;
  color: #e8e8e8 !important;
}

.cta-airy {
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif !important;
  border-radius: 6px !important;
  padding: 10px 18px !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  background: rgba(227,255,134,0.8) !important;
  color: #1E1E24 !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
}

/* Hero Variation 5: Storytelling Style - Wall of Love */
.hero-variation-5 {
  background: #ffffff;
  padding: 80px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.storytelling-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.storytelling-content {
  padding: 40px;
}

.storytelling-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.1;
}

.storytelling-highlight {
  color: #dc3545;
  position: relative;
}

.storytelling-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #dc3545;
  opacity: 0.3;
}

.storytelling-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 40px;
  max-width: 500px;
}

.storytelling-button {
  background: #dc3545;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.storytelling-button:hover {
  background: #c82333;
  transform: translateY(-2px);
}

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

.testimonial-carousel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.testimonial-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #dc3545;
  transition: transform 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-2px);
}

.testimonial-text {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 600;
}

.hero-title-modern {
  font-family: 'SF Pro Display', 'Segoe UI', system-ui, sans-serif !important;
  font-size: 2.9rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
  margin: 0 auto 26px !important;
  text-align: center !important;
  color: #fff !important;
}

.hero-subtitle-modern {
  font-family: 'SF Pro Text', 'Segoe UI', system-ui, sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  max-width: 680px !important;
  margin: 0 auto 30px !important;
  text-align: center !important;
  color: #e5e5e5 !important;
}

.cta-modern {
  font-family: 'SF Pro Display', 'Segoe UI', system-ui, sans-serif !important;
  border-radius: 10px !important;
  padding: 13px 22px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  background: var(--green) !important;
  color: #1E1E24 !important;
  border: 2px solid rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(10px) !important;
}

/* Animations for Hero Variations */
@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* New Homepage Design */

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Prompt", system-ui, sans-serif;
  font-size: 3.2rem;
  font-weight: 600 !important;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.text-highlight {
  background: var(--orange);
  color: #FDFFFC;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 900;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Problem Icon */
.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  text-align: center;
}

/* Problem Detail Sections */
.problem-detail-section {
  padding: 80px 0;
  background: var(--bg);
}

.problem-detail-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem-detail-content h2 {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 0 24px;
  color: var(--text);
}

.problem-detail-content > p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 40px;
}

.problem-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.problem-example {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.problem-example h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
}

.problem-example p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Solution Section */
.solution-section {
  padding: 80px 0;
}

.section-title {
  font-family: "Prompt", Inter, system-ui, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px;
  color: var(--text);
}

.section-description {
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}


.solution-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.solution-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: #FDFFFC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.solution-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.solution-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.solution-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.solution-content li {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 6px;
  padding-left: 16px;
  position: relative;
}

.solution-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-elev);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255, 118, 80, 0.15);
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.pricing-badge {
  display: inline-block;
  background: var(--green);
  color: #1E1E24;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card.featured .pricing-badge {
  background: var(--orange);
  color: #FDFFFC;
}

.pricing-price {
  font-family: "Prompt", Inter, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
}

.pricing-description {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
}

.pricing-estimate {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 8px;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

/* Work Section */
.work-section {
  padding: 80px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.work-item {
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.work-image {
  height: 160px;
  background: linear-gradient(135deg, var(--green), var(--orange));
  opacity: 0.8;
}

.work-content {
  padding: 24px;
}

.work-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.work-content p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

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

/* Contact Section */
.contact-section {
  padding: 120px 0;
  background: var(--bg-elev);
  text-align: center;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.contact-email {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-email a {
  color: var(--orange);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Calendly Section */
.calendly-section {
  padding: 80px 0;
  background: var(--white);
}

.calendly-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
}

.calendly-container h2 {
  color: var(--black) !important;
}

.calendly-inline-widget {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  height: 600px;
  margin-bottom: 40px;
}

/* Force Calendly to be tall enough */
.calendly-inline-widget iframe {
  width: 100% !important;
  height: 600px !important;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: "Prompt", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.design-grid #button-library a[style*="background: var(--orange)"]:hover {
  filter: saturate(115%);
  background: color-mix(in oklab, var(--orange) 86%, #000 14%) !important;
}

.design-grid #button-library a[style*="background: var(--green)"]:hover {
  filter: saturate(120%);
  background: color-mix(in oklab, var(--green) 86%, #000 14%) !important;
  color: #0f0f10 !important;
}

.design-grid #button-library a[style*="background: var(--black)"]:hover {
  filter: none;
  background: #000 !important;
  color: #FDFFFC !important;
  border-color: #000 !important;
}

.btn-primary {
  background: var(--orange);
  color: #1E1E24;
}

.btn-primary:hover {
  background: #e0592d;
  color: #1E1E24;
  transform: none;
}

.btn-secondary {
  background: var(--bg-elev);
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: #2a2a31;
  transform: none;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-outline:hover {
  background: #2a2a31;
  transform: none;
}

/* Contact Page Styles */
.contact-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.contact-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  font-size: 3.2rem;
  font-weight: 700 !important;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--text);
}

.contact-description {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.contact-options {
  padding: 80px 0;
  background: var(--bg-elev);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.contact-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}

.contact-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
}

.direct-contact {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.direct-contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.direct-contact h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}

.direct-contact p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 32px;
}

.contact-email-link {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  padding: 16px 32px;
  border: 2px solid var(--orange);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.contact-email-link:hover {
  background: var(--orange);
  color: #FDFFFC;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title,
  .contact-title {
    font-size: 2.4rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .solution-item {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .contact-email-link {
    width: 100%;
    max-width: 280px;
  }
}
.back-to-blog {
  margin-bottom: 16px;
}
.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 220ms ease;
}
.back-link:hover {
  color: var(--orange);
}
.blog-post-page .container {
  max-width: 1000px;
}
.post-featured-image {
  margin: 40px 0;
  text-align: center;
}
.post-featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid color-mix(in oklab, var(--orange) 12%, var(--line));
}
.post-content-image {
  margin: 40px 0;
  text-align: center;
}
.post-content-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid color-mix(in oklab, var(--green) 12%, var(--line));
}



