/* Custom Styles and Animations for StryKon */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #2F71B6;
  --color-secondary: #FC8005;
  --color-dark-bg: #131314;
  --color-surface-container: #1c1b1c;
  --color-surface-card: rgba(255, 255, 255, 0.03);
}

/* Glassmorphism Styles */
.glass-card {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-card:hover {
  border-color: rgba(47, 113, 182, 0.4) !important;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(47, 113, 182, 0.15), 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
}

.glass-panel {
  background: rgba(28, 27, 28, 0.7) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Text & Glow Utilities */
.text-gradient {
  background: linear-gradient(135deg, #a2c9ff 0%, #2F71B6 50%, #FC8005 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neon-glow-primary {
  box-shadow: 0 0 30px rgba(47, 113, 182, 0.25);
}

.neon-glow-secondary {
  box-shadow: 0 0 30px rgba(252, 128, 5, 0.25);
}

.neon-border-primary:hover {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 20px rgba(47, 113, 182, 0.3);
}

.neon-border-secondary:hover {
  border-color: var(--color-secondary) !important;
  box-shadow: 0 0 20px rgba(252, 128, 5, 0.3);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
}

.animate-pulse-slow {
  animation: pulse-slow 8s ease-in-out infinite;
}

/* Scroll Animation Classes */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Timeline Connecting Line */
.timeline-container {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), var(--color-primary));
  transform: translateX(-50%);
  z-index: 0;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
    transform: none;
  }
}

.timeline-step {
  position: relative;
  z-index: 10;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-dark-bg);
  border: 4px solid var(--color-primary);
  box-shadow: 0 0 15px rgba(47, 113, 182, 0.5);
  transition: all 0.3s ease;
}

.timeline-step:hover .timeline-dot {
  background: var(--color-secondary);
  border-color: #fff;
  box-shadow: 0 0 20px rgba(252, 128, 5, 0.8);
  transform: scale(1.2);
}

/* Trust Badges Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid var(--color-dark-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Custom Slider & Swiper styles overrides */
.testimonial-card {
  display: none;
}
.testimonial-card.active {
  display: block;
}

/* WhatsApp Overlay Styling */
#whatsappBox {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
}

#whatsappBox.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}


/* =========================================================
   StryKon Global Mobile Responsiveness + New Logo Fixes
   ========================================================= */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img, video, canvas, svg { max-width: 100%; height: auto; }
a, button { -webkit-tap-highlight-color: transparent; }

.brand-logo-link { display: inline-flex; align-items: center; flex-shrink: 0; max-width: 230px; }
.brand-logo { display: block; width: clamp(138px, 16vw, 220px); height: auto; max-height: 64px; object-fit: contain; }
.footer-logo-wrap { max-width: 220px; }
.footer-logo { width: clamp(145px, 18vw, 220px); height: auto; display: block; object-fit: contain; }
.site-header-inner { min-height: 74px; }

/* desktop dropdown safety */
header nav .group > div { z-index: 80; }

/* keep decorative elements from creating overflow */
.absolute { max-width: 100vw; }

/* Responsive iframe/map/calendly embeds */
iframe, .calendly-inline-widget { width: 100% !important; max-width: 100% !important; border: 0; }

/* Flexible tables / wide analytics screenshots */
table { width: 100%; border-collapse: collapse; }
[class*="overflow-x-auto"], .table-wrap { -webkit-overflow-scrolling: touch; }

@media (max-width: 1024px) {
  .site-header-inner { padding-left: 1rem !important; padding-right: 1rem !important; }
  .mobile-menu-panel {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    z-index: 60;
    box-shadow: 0 25px 70px rgba(0,0,0,.45);
  }
  .mobile-menu-panel > div { gap: .55rem !important; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  header { position: sticky; top: 0; }
  .site-header-inner { min-height: 68px; padding-top: .75rem !important; padding-bottom: .75rem !important; }
  .brand-logo { width: 150px; max-height: 50px; }
  .footer-logo { width: 160px; }
  #mobileMenuBtn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .mobile-menu-panel { top: 68px; max-height: calc(100vh - 68px); padding: 1rem !important; }

  section { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  section.min-h-\[90vh\] { min-height: auto !important; padding-top: 4.25rem !important; }
  .max-w-\[1440px\] { width: 100%; }
  .px-6 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .p-8 { padding: 1.25rem !important; }
  .p-10, .p-12 { padding: 1.5rem !important; }
  .rounded-\[2rem\] { border-radius: 1.25rem !important; }
  .gap-12 { gap: 1.75rem !important; }
  .gap-10 { gap: 1.5rem !important; }
  .gap-8 { gap: 1.25rem !important; }

  h1, .text-6xl, .md\:text-6xl { font-size: clamp(2rem, 10vw, 3rem) !important; line-height: 1.08 !important; }
  h2, .text-5xl, .md\:text-5xl { font-size: clamp(1.65rem, 8vw, 2.45rem) !important; line-height: 1.14 !important; }
  h3, .text-3xl, .md\:text-3xl { font-size: clamp(1.25rem, 6vw, 1.8rem) !important; line-height: 1.2 !important; }
  .text-lg, .md\:text-lg { font-size: 1rem !important; line-height: 1.7 !important; }

  .grid { min-width: 0; }
  .grid > * { min-width: 0; }
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr !important; }
  .sm\:grid-cols-2, .md\:grid-cols-2, .md\:grid-cols-3, .md\:grid-cols-4, .lg\:grid-cols-2, .lg\:grid-cols-3, .lg\:grid-cols-4 { grid-template-columns: 1fr !important; }
  .flex-wrap { row-gap: .8rem; }
  .flex { min-width: 0; }

  .glass-card:hover { transform: translateY(-3px); }
  .neon-glow-primary, .neon-glow-secondary { box-shadow: 0 0 18px rgba(47,113,182,.18); }

  /* Buttons and CTA controls */
  a[class*="px-8"], button[class*="px-8"], .px-8 { padding-left: 1.1rem !important; padding-right: 1.1rem !important; }
  a[class*="py-4"], button[class*="py-4"], .py-4 { padding-top: .85rem !important; padding-bottom: .85rem !important; }
  .flex.flex-wrap.gap-4 a, .flex.flex-wrap.gap-4 button { width: 100%; justify-content: center; text-align: center; }

  /* Cards with 3 statistic columns become readable */
  .grid.grid-cols-3.gap-4 { grid-template-columns: 1fr !important; text-align: left !important; }

  /* Portfolio/case study images */
  img[alt*="Screenshot"], img[src*="screenshot"], img[src*="Screen"] {
    width: 100%;
    max-height: 360px;
    object-fit: contain !important;
    background: #fff;
    border-radius: 1rem;
  }

  /* Timelines align cleanly on mobile */
  .timeline-container { padding-left: 0 !important; }
  .timeline-line { display: none; }
  .timeline-step { margin-bottom: 1rem; }
  .timeline-dot { margin-left: 0 !important; }

  /* Forms */
  input, select, textarea { font-size: 16px !important; width: 100%; }
  form .grid { grid-template-columns: 1fr !important; }

  /* Footer */
  footer { text-align: left; }
  footer .flex.gap-4 { flex-wrap: wrap; }

  /* WhatsApp popup */
  #whatsappBox {
    right: 1rem !important;
    left: 1rem !important;
    bottom: 5rem !important;
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 480px) {
  .brand-logo { width: 132px; }
  .site-header-inner { min-height: 62px; }
  .mobile-menu-panel { top: 62px; max-height: calc(100vh - 62px); }
  section { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
  .px-6, .md\:px-12 { padding-left: .9rem !important; padding-right: .9rem !important; }
  .p-6 { padding: 1rem !important; }
  .p-8, .md\:p-12 { padding: 1rem !important; }
  .rounded-3xl { border-radius: 1.1rem !important; }
  .text-xs { letter-spacing: .03em; }
  .marquee-content { animation-duration: 16s; }
}

/* Homepage services showcase redesign */
.service-showcase-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:330px;
    padding:32px 28px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;
    background:linear-gradient(145deg, rgba(47,113,182,.14), rgba(18,18,22,.96) 42%, rgba(252,128,5,.08));
    box-shadow:0 20px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
    overflow:hidden;
    transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.service-showcase-card:before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top left, rgba(47,113,182,.30), transparent 38%), radial-gradient(circle at bottom right, rgba(252,128,5,.22), transparent 38%);
    opacity:.8;
    transition:opacity .35s ease;
}
.service-showcase-card:after{
    content:"";
    position:absolute;
    top:0;
    left:22px;
    right:22px;
    height:3px;
    border-radius:999px;
    background:linear-gradient(90deg, #2F71B6, #FC8005);
    opacity:.75;
}
.service-showcase-card:hover{
    transform:translateY(-8px);
    border-color:rgba(252,128,5,.48);
    box-shadow:0 26px 80px rgba(0,0,0,.38), 0 0 30px rgba(47,113,182,.16);
}
.service-showcase-card:hover:before{opacity:1;}
.service-showcase-card > *{position:relative;z-index:1;}
.service-icon-badge{
    width:72px;
    height:72px;
    border-radius:22px;
    display:grid;
    place-items:center;
    margin-bottom:22px;
    color:#fff;
    background:linear-gradient(135deg, rgba(47,113,182,.95), rgba(252,128,5,.92));
    box-shadow:0 12px 30px rgba(47,113,182,.25);
}
.service-icon-badge .material-symbols-outlined{font-size:38px;}
.service-showcase-card h3{
    font-family:var(--font-display, inherit);
    font-size:1.28rem;
    line-height:1.25;
    font-weight:800;
    color:#fff;
    margin-bottom:14px;
}
.service-showcase-card ul{
    margin:0 0 24px 0;
    padding:0;
    list-style:none;
    color:rgba(255,255,255,.72);
    font-size:.92rem;
    line-height:1.85;
}
.service-showcase-card li{
    position:relative;
    padding-left:20px;
}
.service-showcase-card li:before{
    content:"›";
    position:absolute;
    left:0;
    top:-1px;
    color:#FC8005;
    font-size:1.4rem;
    line-height:1;
    font-weight:900;
}
.service-explore{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:max-content;
    color:#fff;
    font-weight:800;
    font-size:.84rem;
    letter-spacing:.02em;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.10);
    transition:all .3s ease;
}
.service-explore .material-symbols-outlined{font-size:16px;transition:transform .3s ease;}
.service-showcase-card:hover .service-explore{
    background:linear-gradient(90deg,#2F71B6,#FC8005);
    border-color:transparent;
}
.service-showcase-card:hover .service-explore .material-symbols-outlined{transform:translateX(3px);}
@media (max-width:640px){
    .service-showcase-card{min-height:auto;padding:26px 22px;border-radius:20px;}
    .service-icon-badge{width:62px;height:62px;border-radius:18px;margin-bottom:18px;}
    .service-icon-badge .material-symbols-outlined{font-size:32px;}
    .service-showcase-card h3{font-size:1.12rem;}
    .service-showcase-card ul{font-size:.88rem;line-height:1.75;}
}


/* Premium services page cards inspired by reference layout */
.service-showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 32px 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(28, 27, 28, 0.78);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.20);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.service-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at top left, rgba(47,113,182,.24), transparent 45%), radial-gradient(circle at bottom right, rgba(252,128,5,.16), transparent 40%);
  transition: opacity .35s ease;
}
.service-showcase-card:hover {
  transform: translateY(-10px);
  border-color: rgba(47,113,182,.60);
  box-shadow: 0 25px 80px rgba(47,113,182,.18);
}
.service-showcase-card:hover::before { opacity: 1; }
.service-showcase-card.highlight-orange:hover {
  border-color: rgba(252,128,5,.60);
  box-shadow: 0 25px 80px rgba(252,128,5,.16);
}
.service-icon-ring {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  background: rgba(47,113,182,.12);
  border: 1px solid rgba(47,113,182,.35);
  box-shadow: inset 0 0 22px rgba(47,113,182,.12), 0 12px 35px rgba(47,113,182,.12);
  transition: all .35s ease;
}
.service-showcase-card.highlight-orange .service-icon-ring {
  color: var(--color-secondary);
  background: rgba(252,128,5,.12);
  border-color: rgba(252,128,5,.38);
  box-shadow: inset 0 0 22px rgba(252,128,5,.12), 0 12px 35px rgba(252,128,5,.12);
}
.service-icon-ring .material-symbols-outlined { font-size: 40px; }
.service-showcase-card h3 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 18px;
}
.service-showcase-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  color: rgba(229,226,227,.78);
  font-size: 0.93rem;
}
.service-showcase-card li {
  position: relative;
  padding-left: 22px;
  line-height: 1.4;
}
.service-showcase-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--color-secondary);
  font-weight: 900;
  font-size: 1.2rem;
}
.service-showcase-card:nth-child(odd) li::before { color: var(--color-primary); }
.service-card-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  transition: all .35s ease;
}
.service-showcase-card:hover .service-card-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
}
.service-card-cta .material-symbols-outlined { font-size: 18px; transition: transform .35s ease; }
.service-showcase-card:hover .service-card-cta .material-symbols-outlined { transform: translateX(4px); }
@media (max-width: 640px) {
  .service-showcase-card { min-height: auto; padding: 28px 22px; border-radius: 22px; }
  .service-icon-ring { width: 68px; height: 68px; border-radius: 20px; margin-bottom: 18px; }
  .service-icon-ring .material-symbols-outlined { font-size: 34px; }
  .service-showcase-card h3 { font-size: 1.05rem; }
}


/* Dynamic service inner page enhancement */
.service-dynamic-suite{position:relative;overflow:hidden;}
.service-dynamic-suite:before{content:"";position:absolute;inset:auto -10% -20% auto;width:420px;height:420px;border-radius:999px;background:radial-gradient(circle,rgba(47,113,182,.20),transparent 65%);filter:blur(40px);pointer-events:none;}
.service-kicker{display:inline-flex;align-items:center;gap:8px;color:#FC8005;font-weight:900;font-size:.72rem;text-transform:uppercase;letter-spacing:.22em;background:rgba(252,128,5,.10);border:1px solid rgba(252,128,5,.22);padding:8px 12px;border-radius:999px;}
.sticky-service-intro{position:sticky;top:105px;}
.mini-stat{padding:18px;border:1px solid rgba(255,255,255,.10);background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.025));border-radius:18px;}
.mini-stat strong{display:block;color:#fff;font-family:Montserrat,sans-serif;font-size:1rem;}
.mini-stat span{display:block;color:rgba(229,226,227,.64);font-size:.78rem;margin-top:4px;}
.creative-service-panel{position:relative;overflow:hidden;display:flex;gap:18px;align-items:flex-start;padding:28px;border:1px solid rgba(255,255,255,.12);background:linear-gradient(135deg,rgba(47,113,182,.20),rgba(252,128,5,.10));border-radius:28px;box-shadow:0 24px 80px rgba(0,0,0,.22);}
.creative-service-panel:after{content:"";position:absolute;right:-60px;top:-60px;width:180px;height:180px;border-radius:999px;background:rgba(252,128,5,.18);filter:blur(18px);}
.panel-icon{flex:0 0 auto;width:68px;height:68px;border-radius:22px;display:grid;place-items:center;background:#131314;border:1px solid rgba(255,255,255,.10);color:#FC8005;box-shadow:inset 0 0 28px rgba(252,128,5,.10);}
.panel-icon .material-symbols-outlined{font-size:36px;}
.creative-service-panel h3{font-family:Montserrat,sans-serif;font-weight:900;color:#fff;font-size:1.35rem;margin-bottom:8px;}
.creative-service-panel p{color:rgba(229,226,227,.76);font-size:.95rem;line-height:1.65;}
.service-detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.service-detail-card{display:flex;gap:12px;align-items:flex-start;padding:18px;border-radius:18px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.09);transition:transform .3s ease,border-color .3s ease,background .3s ease;}
.service-detail-card:hover{transform:translateY(-4px);border-color:rgba(47,113,182,.55);background:rgba(47,113,182,.10);}
.service-detail-card .material-symbols-outlined{color:#2F71B6;font-size:22px;}
.service-detail-card p{color:rgba(229,226,227,.80);font-size:.92rem;line-height:1.5;}
.dynamic-framework-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:24px;align-items:stretch;}
.dynamic-timeline{position:relative;display:grid;gap:16px;}
.dynamic-timeline:before{content:"";position:absolute;left:28px;top:18px;bottom:18px;width:2px;background:linear-gradient(#2F71B6,#FC8005);opacity:.5;}
.dynamic-step{position:relative;display:flex;align-items:center;gap:18px;padding:20px 20px 20px 0;}
.dynamic-step b{position:relative;z-index:1;display:grid;place-items:center;width:58px;height:58px;border-radius:18px;background:#131314;border:1px solid rgba(255,255,255,.12);color:#FC8005;font-family:Montserrat,sans-serif;box-shadow:0 0 0 6px rgba(47,113,182,.08);}
.dynamic-step span{display:block;width:100%;padding:18px 20px;border-radius:18px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.09);color:#fff;font-weight:800;}
.dynamic-deliverables{padding:30px;border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(47,113,182,.10));border:1px solid rgba(255,255,255,.10);}
.dynamic-deliverables h3{font-family:Montserrat,sans-serif;font-size:1.45rem;font-weight:900;color:#fff;margin-bottom:18px;}
.dynamic-deliverables ul{display:grid;gap:12px;margin-bottom:28px;}
.dynamic-deliverables li{display:flex;align-items:center;gap:10px;color:rgba(229,226,227,.78);font-size:.92rem;}
.dynamic-deliverables li .material-symbols-outlined{font-size:19px;color:#2F71B6;}
.dynamic-cta{display:inline-flex;align-items:center;gap:10px;width:100%;justify-content:center;padding:14px 18px;border-radius:999px;background:linear-gradient(135deg,#2F71B6,#FC8005);color:#fff;font-weight:900;transition:transform .3s ease;}
.dynamic-cta:hover{transform:translateY(-3px);}
.conversion-block{min-height:260px;display:flex;flex-direction:column;justify-content:flex-end;padding:28px;border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));border:1px solid rgba(255,255,255,.10);position:relative;overflow:hidden;}
.conversion-block:before{content:"";position:absolute;top:-80px;right:-60px;width:180px;height:180px;border-radius:999px;background:rgba(47,113,182,.16);filter:blur(12px);}
.conversion-block.accent:before{background:rgba(252,128,5,.18);}
.conversion-block .material-symbols-outlined{position:relative;z-index:1;font-size:44px;color:#2F71B6;margin-bottom:18px;}
.conversion-block.accent .material-symbols-outlined{color:#FC8005;}
.conversion-block h3{position:relative;z-index:1;color:#fff;font-family:Montserrat,sans-serif;font-weight:900;font-size:1.35rem;margin-bottom:8px;}
.conversion-block p{position:relative;z-index:1;color:rgba(229,226,227,.72);font-size:.92rem;line-height:1.65;}
.service-faq-list{display:grid;gap:12px;}
.service-faq-item{border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.045);border-radius:18px;overflow:hidden;}
.service-faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 20px;color:#fff;font-weight:900;text-align:left;}
.service-faq-question .material-symbols-outlined{color:#FC8005;transition:transform .25s ease;}
.service-faq-item.active .service-faq-question .material-symbols-outlined{transform:rotate(45deg);}
.service-faq-answer{display:none;padding:0 20px 18px;color:rgba(229,226,227,.72);font-size:.93rem;line-height:1.7;}
.service-faq-item.active .service-faq-answer{display:block;}
@media(max-width:1024px){.sticky-service-intro{position:relative;top:auto}.dynamic-framework-grid{grid-template-columns:1fr}.service-detail-grid{grid-template-columns:1fr}}
@media(max-width:640px){.creative-service-panel{flex-direction:column;padding:22px;border-radius:22px}.mini-stat{padding:14px}.dynamic-step{gap:12px}.dynamic-step b{width:48px;height:48px;border-radius:15px}.dynamic-step span{padding:15px}.conversion-block{min-height:auto;padding:24px}.service-faq-question{font-size:.92rem}}

/* =========================================================
   Overflow, icon, and mobile polish bug fixes
   ========================================================= */
html, body, main, section, header, footer { width: 100%; max-width: 100%; }
body { overflow-x: hidden !important; }

/* Stop long labels like “Digital Marketing” from escaping cards/buttons */
h1, h2, h3, h4, h5, h6, p, a, span, li, button, div {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Keep brand/email/domain readable instead of breaking every character */
.brand-logo-link, .brand-logo, a[href^="mailto:"], a[href*="stry-kon"], .text-gradient {
  overflow-wrap: normal;
  word-break: normal;
}

/* Material icon rendering and sizing safety */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal !important;
  font-style: normal !important;
  line-height: 1 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  max-width: 1.25em;
  overflow: hidden;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.service-icon-ring, .service-icon-badge, .panel-icon,
.w-10.h-10, .w-12.h-12, .w-14.h-14, .w-16.h-16, .w-20.h-20 {
  flex: 0 0 auto;
  overflow: hidden;
}

.service-icon-ring .material-symbols-outlined,
.service-icon-badge .material-symbols-outlined,
.panel-icon .material-symbols-outlined {
  max-width: none;
  overflow: visible;
}

/* Service cards: consistent height without overflow */
.service-showcase-card {
  min-width: 0 !important;
  overflow: hidden !important;
  height: 100%;
}
.service-showcase-card h3,
.service-showcase-card p,
.service-showcase-card li,
.service-card-cta,
.service-explore {
  min-width: 0;
  max-width: 100%;
}
.service-card-cta, .service-explore {
  white-space: normal !important;
  text-align: center;
}

/* Safer grids everywhere */
.grid, [class*="grid-cols-"] { min-width: 0; }
.grid > *, [class*="grid-cols-"] > * { min-width: 0; }

/* Prevent CTA/flex rows from overflowing on mobile */
.flex { min-width: 0; }
.flex > * { min-width: 0; }

@media (max-width: 768px) {
  .service-showcase-card { padding: 24px 18px !important; }
  .service-showcase-card h3 { font-size: 1rem !important; line-height: 1.25 !important; }
  .service-showcase-card ul { font-size: .86rem !important; line-height: 1.65 !important; }
  .service-card-cta, .service-explore { width: 100% !important; justify-content: center !important; }
  .creative-service-panel, .dynamic-deliverables, .conversion-block { overflow: hidden; }
  .text-gradient { display: inline; }
}


/* Blog feature cards */
.blog-chip{display:inline-flex;align-items:center;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);color:#e5e2e3;border-radius:999px;padding:.55rem .85rem;font-size:.78rem;font-weight:700;white-space:nowrap;}
.blog-badge{position:absolute;left:1rem;top:1rem;background:linear-gradient(135deg,#2F71B6,#FC8005);color:#fff;border-radius:999px;padding:.45rem .8rem;font-size:.68rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;box-shadow:0 10px 30px rgba(0,0,0,.28);}
.blog-link{display:inline-flex;align-items:center;gap:.35rem;color:#2F71B6;font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;transition:color .25s ease;}
.blog-link:hover{color:#FC8005;}
.blog-card img{max-width:100%;display:block;}
@media (max-width:640px){.blog-card .h-56{height:13rem}.blog-chip{font-size:.72rem;padding:.48rem .7rem}}

/* Article page footer responsive fix */
footer {
  overflow-x: hidden;
}
footer .footer-logo-wrap,
footer .footer-logo {
  max-width: 100%;
}
footer a,
footer span,
footer p,
footer li {
  overflow-wrap: anywhere;
  word-break: normal;
}
footer ul {
  padding-left: 0;
}
footer .border-b {
  min-width: 0;
}
@media (max-width: 1024px) {
  footer .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2rem !important;
  }
}
@media (max-width: 767px) {
  footer {
    padding-top: 2.75rem !important;
    padding-bottom: 1.25rem !important;
  }
  footer .max-w-\[1440px\] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  footer .grid,
  footer .md\:grid-cols-2,
  footer .lg\:grid-cols-4 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.7rem !important;
  }
  footer .space-y-4 {
    width: 100% !important;
    min-width: 0 !important;
  }
  footer .footer-logo {
    width: 150px !important;
    margin-bottom: .5rem;
  }
  footer h4 {
    margin-bottom: .75rem;
    font-size: .8rem !important;
  }
  footer ul {
    display: grid;
    gap: .55rem;
  }
  footer li.flex {
    align-items: flex-start !important;
    min-width: 0 !important;
  }
  footer li.flex span:last-child,
  footer li.flex a {
    min-width: 0 !important;
    line-height: 1.5 !important;
  }
  footer .flex.gap-4,
  footer .flex.gap-6 {
    flex-wrap: wrap !important;
  }
  footer > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 1rem !important;
  }
  footer > div:last-child .flex {
    gap: 1rem !important;
    flex-wrap: wrap !important;
  }
}
@media (max-width: 380px) {
  footer .footer-logo { width: 132px !important; }
  footer .text-xs, footer .text-sm { font-size: .78rem !important; }
}

/* =========================================================
   DEEP ARTICLE + FOOTER RESPONSIVE FIX (forced override)
   Applies to all blog article pages and prevents mobile overflow.
   ========================================================= */
html, body { max-width: 100%; overflow-x: hidden !important; }
img, video, iframe, svg { max-width: 100%; height: auto; }
a, p, h1, h2, h3, h4, h5, h6, span, li, div { overflow-wrap: anywhere; }
body [class*="max-w-"] { max-width: min(100%, var(--fallback-max, 1440px)); }

/* Article content safety */
section .grid.grid-cols-1.lg\:grid-cols-\[1fr_320px\],
section .grid.grid-cols-1 { min-width: 0 !important; }
article, aside, .glass-panel { min-width: 0 !important; max-width: 100% !important; box-sizing: border-box; }
article ol, article ul { padding-left: 1.25rem !important; }
article h1, article h2, article h3, article h4 { line-height: 1.15 !important; }
article p, article li { line-height: 1.75 !important; }
aside.sticky { align-self: start; }
aside a, aside h4 { display: block; max-width: 100%; overflow-wrap: anywhere; }

/* Footer forced layout independent of Tailwind loading/order */
footer { width: 100% !important; max-width: 100% !important; overflow: hidden !important; box-sizing: border-box !important; }
footer > div { max-width: 1440px !important; width: 100% !important; box-sizing: border-box !important; }
footer > div:first-child {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 2.5rem !important;
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
footer > div:first-child > div { min-width: 0 !important; width: 100% !important; }
footer .footer-logo { width: 160px !important; max-width: 100% !important; height: auto !important; object-fit: contain !important; }
footer ul, footer li { max-width: 100% !important; min-width: 0 !important; }
footer li.flex { display: flex !important; align-items: flex-start !important; }
footer li.flex span, footer li.flex a { min-width: 0 !important; max-width: 100% !important; }
footer a { max-width: 100% !important; }
footer > div:last-child {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem !important;
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
footer > div:last-child > * { min-width: 0 !important; }
footer > div:last-child .flex { display: flex !important; flex-wrap: wrap !important; gap: 1.25rem !important; }

/* Large tablets */
@media (max-width: 1024px) {
  footer > div:first-child { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  footer > div:last-child { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  aside.sticky { position: static !important; top: auto !important; }
}

/* Mobile article + footer */
@media (max-width: 767px) {
  body { width: 100% !important; }
  header .site-header-inner { padding-left: 1rem !important; padding-right: 1rem !important; }
  section { max-width: 100% !important; overflow-x: hidden !important; }
  section.py-20 { padding-top: 3.25rem !important; padding-bottom: 3.25rem !important; }
  section.py-12 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  section .max-w-\[1100px\] { padding-left: 1rem !important; padding-right: 1rem !important; }
  section h1 { font-size: clamp(2rem, 10vw, 3rem) !important; line-height: 1.08 !important; }
  section .flex.justify-center.items-center.gap-3 { flex-wrap: wrap !important; row-gap: .65rem !important; }
  section img.rounded-3xl { border-radius: 1.25rem !important; max-height: 320px !important; margin-bottom: 1.5rem !important; }
  section .grid { display: grid !important; grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  article.glass-panel { padding: 1.25rem !important; border-radius: 1.35rem !important; }
  article p.text-lg { font-size: 1rem !important; }
  article h2 { font-size: 1.45rem !important; }
  aside { width: 100% !important; }
  aside .glass-panel { padding: 1.25rem !important; border-radius: 1.25rem !important; }
  aside h4 { font-size: .95rem !important; line-height: 1.35 !important; }

  footer { padding-top: 2.75rem !important; padding-bottom: 1rem !important; }
  footer > div:first-child {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-bottom: 2rem !important;
  }
  footer .footer-logo { width: 138px !important; }
  footer h4 { font-size: .78rem !important; margin-bottom: .75rem !important; }
  footer p, footer a, footer span, footer li { font-size: .82rem !important; line-height: 1.55 !important; }
  footer ul { display: grid !important; gap: .55rem !important; }
  footer li.flex { gap: .55rem !important; }
  footer .flex.gap-4 { flex-wrap: wrap !important; }
  footer > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: .85rem !important;
    padding: 1.25rem 1rem !important;
  }
  footer > div:last-child .flex { width: 100% !important; gap: .85rem !important; }
}

/* Small mobiles */
@media (max-width: 390px) {
  section .max-w-\[1100px\] { padding-left: .85rem !important; padding-right: .85rem !important; }
  article.glass-panel, aside .glass-panel { padding: 1rem !important; }
  footer > div:first-child, footer > div:last-child { padding-left: .85rem !important; padding-right: .85rem !important; }
  footer .footer-logo { width: 125px !important; }
  footer p, footer a, footer span, footer li { font-size: .76rem !important; }
}



/* =========================================================
   REBUILT RESPONSIVE BLOG + ARTICLE STRUCTURE
   ========================================================= */
:root { --sk-blue:#2F71B6; --sk-orange:#FC8005; --sk-bg:#131314; --sk-card:#1c1b1c; --sk-card2:#232324; }
* { box-sizing:border-box; }
html, body { width:100%; max-width:100%; overflow-x:hidden !important; }
img, svg, video, iframe { max-width:100%; height:auto; }
.sk-container { width:min(1180px, 100%); margin-inline:auto; padding-inline:clamp(1rem, 4vw, 3rem); }
.sk-badge { display:inline-flex; width:max-content; max-width:100%; padding:.45rem .9rem; border:1px solid rgba(252,128,5,.28); border-radius:999px; background:rgba(252,128,5,.10); color:var(--sk-orange); font-weight:800; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; overflow-wrap:anywhere; }
.sk-back-link { display:inline-flex; align-items:center; gap:.4rem; color:var(--sk-orange); font-weight:800; font-size:.82rem; text-transform:uppercase; letter-spacing:.12em; margin-bottom:1.15rem; }
.sk-back-link .material-symbols-outlined { font-size:1rem; }
.sk-blog-hero, .sk-article-hero { position:relative; padding:clamp(3.5rem, 8vw, 6rem) 0; background:radial-gradient(circle at 20% 10%, rgba(47,113,182,.20), transparent 35%), radial-gradient(circle at 80% 20%, rgba(252,128,5,.14), transparent 32%), #141415; border-bottom:1px solid rgba(255,255,255,.08); overflow:hidden; }
.sk-blog-hero h1, .sk-article-hero h1 { margin:.9rem 0 .7rem; color:#fff; font-family:Montserrat, Inter, sans-serif; font-weight:900; line-height:1.05; letter-spacing:-.04em; font-size:clamp(2.3rem, 7vw, 5rem); max-width:980px; overflow-wrap:anywhere; }
.sk-blog-hero p, .sk-article-hero p { color:#c1c7d2; font-size:clamp(1rem, 2vw, 1.18rem); line-height:1.75; max-width:780px; }
.sk-article-hero__inner { text-align:center; display:flex; flex-direction:column; align-items:center; }
.sk-article-meta { display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:.75rem; color:rgba(255,255,255,.55); font-size:.9rem; margin-top:1.2rem; }
.sk-article-meta span:not(:last-child)::after { content:""; display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--sk-blue); margin-left:.75rem; vertical-align:middle; }
.sk-blog-listing, .sk-article-section { padding:clamp(2rem, 5vw, 4rem) 0; background:#131314; }
.sk-blog-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:1.35rem; }
.sk-blog-card { min-width:0; overflow:hidden; border:1px solid rgba(255,255,255,.10); background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)); border-radius:1.5rem; box-shadow:0 18px 50px rgba(0,0,0,.25); transition:.25s ease; }
.sk-blog-card:hover { transform:translateY(-5px); border-color:rgba(47,113,182,.55); box-shadow:0 24px 70px rgba(47,113,182,.12); }
.sk-blog-card__image { display:block; aspect-ratio:16/10; overflow:hidden; background:#222; }
.sk-blog-card__image img { width:100%; height:100%; object-fit:cover; display:block; transition:.35s ease; }
.sk-blog-card:hover .sk-blog-card__image img { transform:scale(1.05); }
.sk-blog-card__body { padding:1.35rem; min-width:0; }
.sk-blog-card__body span { color:var(--sk-orange); font-size:.75rem; font-weight:800; text-transform:uppercase; letter-spacing:.13em; }
.sk-blog-card__body h2 { color:#fff; font-family:Montserrat, Inter, sans-serif; font-size:1.2rem; line-height:1.25; font-weight:800; margin:.65rem 0; overflow-wrap:anywhere; }
.sk-blog-card__body p { color:#c1c7d2; font-size:.95rem; line-height:1.65; margin-bottom:1.1rem; }
.sk-blog-read { display:inline-flex; align-items:center; gap:.45rem; color:#fff; background:var(--sk-blue); padding:.75rem 1rem; border-radius:999px; font-weight:800; font-size:.85rem; transition:.25s ease; }
.sk-blog-read:hover { background:var(--sk-orange); }
.sk-blog-read .material-symbols-outlined { font-size:1rem; }
.sk-article-featured { width:100%; max-height:520px; object-fit:cover; display:block; border-radius:1.6rem; border:1px solid rgba(255,255,255,.10); box-shadow:0 24px 80px rgba(0,0,0,.35); margin-bottom:2rem; }
.sk-article-layout { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:2rem; align-items:start; }
.sk-article-content { min-width:0; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.045); border-radius:1.6rem; padding:clamp(1.2rem, 4vw, 2.5rem); color:#c1c7d2; line-height:1.8; overflow:hidden; }
.sk-article-content .sk-lead { color:#e5e2e3; font-size:1.1rem; }
.sk-article-content h2 { color:#fff; font-family:Montserrat, Inter, sans-serif; font-size:clamp(1.45rem, 3vw, 2rem); line-height:1.18; font-weight:900; margin:2rem 0 .8rem; overflow-wrap:anywhere; }
.sk-article-content p, .sk-article-content li { overflow-wrap:anywhere; }
.sk-article-content ul { padding-left:1.25rem; margin:1rem 0; display:grid; gap:.7rem; list-style:disc; }
.sk-article-cta { margin-top:2rem; padding:clamp(1rem, 4vw, 1.6rem); border-radius:1.25rem; border:1px solid rgba(255,255,255,.12); background:linear-gradient(135deg, rgba(47,113,182,.25), rgba(252,128,5,.18)); }
.sk-article-cta h3 { color:#fff; font-family:Montserrat, Inter, sans-serif; font-size:1.5rem; font-weight:900; margin-bottom:.5rem; }
.sk-article-cta a { display:inline-flex; align-items:center; gap:.45rem; margin-top:1rem; padding:.8rem 1rem; border-radius:999px; background:var(--sk-blue); color:#fff; font-weight:800; }
.sk-article-sidebar { min-width:0; display:grid; gap:1rem; position:sticky; top:6rem; }
.sk-sidebar-box { min-width:0; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.045); border-radius:1.35rem; padding:1.2rem; overflow:hidden; }
.sk-sidebar-box h3 { color:#fff; font-family:Montserrat, Inter, sans-serif; font-size:1.1rem; font-weight:900; margin-bottom:.85rem; }
.sk-sidebar-box p { color:#c1c7d2; font-size:.92rem; line-height:1.55; overflow-wrap:anywhere; }
.sk-related-list { display:grid; gap:.7rem; }
.sk-related-card { display:block; padding:.9rem; border-radius:1rem; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); transition:.25s ease; }
.sk-related-card:hover { border-color:rgba(47,113,182,.6); background:rgba(47,113,182,.10); }
.sk-related-card span { display:block; color:var(--sk-orange); font-size:.7rem; font-weight:900; text-transform:uppercase; letter-spacing:.12em; }
.sk-related-card strong { display:block; color:#fff; font-size:.92rem; line-height:1.35; margin-top:.25rem; overflow-wrap:anywhere; }
.sk-sidebar-cta a { display:inline-block; margin-top:.9rem; background:var(--sk-orange); color:#fff; font-weight:900; padding:.72rem 1rem; border-radius:999px; }
.sk-footer { background:#0e0e0f; border-top:1px solid rgba(255,255,255,.10); overflow:hidden; }
.sk-footer__inner { width:min(1440px,100%); margin:auto; display:grid; grid-template-columns:1.35fr 1fr 1fr 1.25fr; gap:clamp(1.25rem,3vw,2.5rem); padding:clamp(2.5rem,6vw,4rem) clamp(1rem,4vw,3rem); border-bottom:1px solid rgba(255,255,255,.06); }
.sk-footer__brand, .sk-footer__col { min-width:0; display:flex; flex-direction:column; gap:.7rem; }
.sk-footer__logo { width:160px; max-width:100%; object-fit:contain; }
.sk-footer p, .sk-footer a { color:#c1c7d2; font-size:.9rem; line-height:1.6; overflow-wrap:anywhere; }
.sk-footer h4 { color:#fff; font-size:.8rem; font-weight:900; text-transform:uppercase; letter-spacing:.14em; margin-bottom:.25rem; }
.sk-footer a:hover { color:var(--sk-blue); }
.sk-footer__socials { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:.4rem; }
.sk-footer__socials a { width:2.25rem; height:2.25rem; border-radius:999px; display:grid; place-items:center; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); color:#fff; }
.sk-footer__socials span { font-size:1.05rem; }
.sk-footer__contact a, .sk-footer__contact p { display:flex; align-items:flex-start; gap:.5rem; }
.sk-footer__contact .material-symbols-outlined { flex:0 0 auto; color:var(--sk-orange); font-size:1rem; margin-top:.18rem; }
.sk-footer__bottom { width:min(1440px,100%); margin:auto; padding:1.2rem clamp(1rem,4vw,3rem); display:flex; align-items:center; justify-content:space-between; gap:1rem; color:rgba(255,255,255,.45); }
.sk-footer__bottom div { display:flex; flex-wrap:wrap; gap:1rem; }
.sk-footer__bottom a, .sk-footer__bottom p { font-size:.82rem; }
@media (max-width: 1100px) { .sk-blog-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .sk-article-layout { grid-template-columns:1fr; } .sk-article-sidebar { position:static; grid-template-columns:repeat(3,minmax(0,1fr)); } .sk-footer__inner { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 767px) { .sk-container { padding-inline:1rem; } .sk-blog-hero, .sk-article-hero { padding:3rem 0; } .sk-blog-hero h1, .sk-article-hero h1 { font-size:clamp(2rem, 11vw, 3rem); } .sk-article-meta { gap:.5rem; font-size:.8rem; } .sk-article-meta span::after { display:none !important; } .sk-blog-grid { grid-template-columns:1fr; gap:1rem; } .sk-blog-card { border-radius:1.15rem; } .sk-blog-card__body { padding:1rem; } .sk-article-featured { max-height:300px; border-radius:1.1rem; margin-bottom:1rem; } .sk-article-layout { gap:1rem; } .sk-article-content { border-radius:1.1rem; padding:1rem; } .sk-article-content .sk-lead { font-size:1rem; } .sk-article-content h2 { margin-top:1.55rem; } .sk-article-sidebar { grid-template-columns:1fr; } .sk-sidebar-box { border-radius:1rem; padding:1rem; } .sk-footer__inner { grid-template-columns:1fr; gap:1.6rem; padding:2.4rem 1rem; } .sk-footer__bottom { flex-direction:column; align-items:flex-start; padding:1rem; } .sk-footer__bottom div { gap:.8rem; } .sk-footer__logo { width:135px; } }
@media (max-width: 380px) { .sk-container { padding-inline:.85rem; } .sk-blog-card__body, .sk-article-content, .sk-sidebar-box { padding:.9rem; } .sk-footer__inner, .sk-footer__bottom { padding-left:.85rem; padding-right:.85rem; } .sk-footer p, .sk-footer a { font-size:.82rem; } }


/* Portfolio responsive fixes */
.portfolio-item img{max-width:100%;display:block}.portfolio-item{min-width:0}.portfolio-filter-btn{white-space:nowrap}@media(max-width:640px){#portfolioGrid{grid-template-columns:1fr!important}.portfolio-filter-btn{font-size:10px;padding:.55rem .85rem}.portfolio-item .grid{grid-template-columns:1fr!important}.portfolio-item h3{font-size:1.05rem}.portfolio-item p{font-size:.85rem}.portfolio-item a{word-break:normal}.glass-panel{min-width:0}}

/* Team headshot responsive polish */
.team-headshot{
  display:block;
  max-width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:center center;
}
@media (max-width: 640px){
  .team-headshot{
    width: 9rem !important;
    height: 9rem !important;
  }
}


/* Portfolio page responsive + category filter fix */
#portfolioGrid{align-items:stretch;}
#portfolioGrid .portfolio-item{min-width:0;display:flex;transition:opacity .16s ease,transform .16s ease;}
#portfolioGrid .portfolio-item img{width:100%;max-width:100%;height:100%;object-fit:cover;object-position:top;display:block;}
.portfolio-filter-btn{white-space:normal;text-align:center;line-height:1.2;min-height:40px;}
@media (max-width: 1024px){#portfolioGrid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}.portfolio-filter-btn{padding:.7rem 1rem;}}
@media (max-width: 640px){#portfolioGrid{grid-template-columns:1fr!important;gap:1.25rem!important;}#portfolioGrid .portfolio-item{width:100%!important;}#portfolioGrid .portfolio-item .p-6{padding:1.1rem!important;}#portfolioGrid .portfolio-item h3{font-size:1.1rem!important;line-height:1.25!important;}#portfolioGrid .portfolio-item p{font-size:.88rem!important;}#portfolioGrid .portfolio-item .grid.grid-cols-2{grid-template-columns:1fr!important;}.portfolio-filter-btn{flex:1 1 calc(50% - .5rem);font-size:10px!important;padding:.65rem .7rem!important;letter-spacing:.05em!important;}.portfolio-filter-btn:first-child{flex-basis:100%;}.portfolio-item a{width:100%;display:block;}.glass-panel{min-width:0;}}
