/* Custom variables for premium Slate Obsidian & Icy Blue look & feel */
:root {
  --primary-color: #3b82f6; /* Icy Blue */
  --primary-glow: rgba(59, 130, 246, 0.4);
  --bg-gradient: linear-gradient(135deg, #1e263b 0%, #2e3d5c 50%, #1e263b 100%);
  --panel-bg: rgba(15, 23, 42, 0.7);
  --sidebar-bg: rgba(30, 41, 59, 0.85);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text-primary: #cbd5e1; /* Crisp Slate Light */
  --text-secondary: #64748b; /* Muted Slate */
  --accent-color: #60a5fa; /* Soft Blue */
  --highlight-color: #ffffff; /* Pure White */
  --link-color: #38bdf8; /* Light Cyan */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: var(--bg-gradient);
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(3, 7, 18, 0.6);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Base headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--highlight-color);
}

/* Structure */
#bg {
  width: 100%;
  min-height: 100vh;
  padding: 0 14px 28px 14px;
}

#shadow {
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(3, 7, 18, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateZ(0);
  will-change: transform;
  border: 1px solid var(--panel-border);
  border-top: none;
  border-radius: 0 0 24px 24px;
  padding: 0 28px 28px 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

/* Header */
header {
  margin-bottom: 21px;
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 14px;
}

#blogname {
  text-decoration: none;
  display: block;
}

#blogname span.bold {
  font-size: 38px;
  font-weight: 800;
  color: var(--highlight-color);
  background: linear-gradient(to right, var(--highlight-color) 20%, var(--accent-color) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

header h1 {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 4px;
  font-family: var(--font-body);
}

/* Navigation */
nav {
  margin-bottom: 28px;
}

#nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

#nav li a {
  display: inline-block;
  padding: 7px 14px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav li a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

/* Layout container */
#container {
  display: flex;
  gap: 28px;
}

#left-col {
  flex: 1;
  min-width: 0; /* Avoid layout break */
}

/* Main Content Card */
.post {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.entry_header h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--accent-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 11px;
  line-height: 1.2;
}

.entry_header h2 a,
.entry_header h2 a:link,
.entry_header h2 a:visited {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.entry_header h2 a:hover {
  color: var(--highlight-color);
}


.entry_content {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.8;
}

/* Styles for inside post content */
.entry_content p {
  margin-bottom: 14px;
}

.entry_content a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--link-color);
  transition: all 0.2s ease;
}

.entry_content a:visited {
  color: var(--link-color);
  border-bottom-color: var(--link-color);
}

.entry_content a:hover {
  color: var(--accent-color);
  border-bottom-style: solid;
  border-bottom-color: var(--accent-color);
}

.entry_content ul, .entry_content ol {
  margin: 11px 0 18px 18px;
}

.entry_content li {
  margin-bottom: 7px;
}

/* Flex Container formatting inside resume */
.flexContainer {
  display: flex;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.4);
  padding: 8px 14px;
  border-radius: 8px;
  margin: 21px 0 7px 0;
  border: 1px solid var(--panel-border);
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--highlight-color);
  font-size: 15px;
}

.flexContainer div:first-child {
  color: var(--accent-color);
}

.entry_content p.has-text-align-center {
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 11px;
  font-size: 17px;
}

.entry_content p.has-medium-font-size {
  font-size: 22px;
  font-weight: 800;
  color: var(--highlight-color);
  margin-top: 28px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--panel-border);
  padding-bottom: 6px;
}

/* Sidebar */
#sidebar {
  width: 380px;
  flex-shrink: 0;
}

#sidebar ul {
  list-style: none;
}

.widget {
  background: var(--sidebar-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 21px;
  margin-bottom: 21px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.widget h2 {
  font-size: 18px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 7px;
}

.widget h2 a {
  color: inherit;
  text-decoration: none;
}

.widget ul li {
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  padding-bottom: 7px;
}

.widget ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.widget ul li a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  display: block;
}

.widget ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
  text-decoration: none;
}

/* BookMe widget modifications for Icy Slate theme */
.book-me-widget {
  background: var(--sidebar-bg) !important;
  border: 1px solid var(--panel-border) !important;
}

.book-me-widget h3 {
  color: var(--accent-color) !important;
  border-bottom: 1px solid var(--panel-border) !important;
}

.book-me-widget label {
  color: var(--text-primary) !important;
}

.book-me-widget input, .book-me-widget select, .book-me-widget textarea {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(3, 7, 18, 0.5) !important;
}

.book-me-widget button {
  background: var(--primary-color) !important;
}

/* Post and content image constraints */
.entry_content img,
.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  display: block;
}

/* Responsiveness */
@media (max-width: 1024px) {
  #container {
    flex-direction: column;
    gap: 21px;
  }
  
  #sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #shadow {
    padding: 0 14px 14px 14px;
    border-radius: 0 0 16px 16px;
  }
  
  #blogname span.bold {
    font-size: 28px;
  }
  
  .post {
    padding: 18px;
  }
  
  .flexContainer {
    flex-direction: column;
    gap: 4px;
    padding: 7px 11px;
  }
}

/* ============================================================
   WD-* Page Component System (imported from 1800webdesign app)
   ============================================================ */

.wd-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Gradient text */
.wd-gradient-text {
  background: linear-gradient(135deg, var(--primary-color), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Label (eyebrow) */
.wd-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* Buttons */
.wd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 14px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.wd-btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.35);
}
.wd-btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  color: #fff;
  border-bottom: none;
  text-decoration: none;
}
.wd-btn-soft {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.wd-btn-soft:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
  color: var(--primary-color);
  border-bottom: 1px solid rgba(59, 130, 246, 0.25);
  text-decoration: none;
}
.wd-btn-block { width: 100%; justify-content: center; }

/* Hero */
.wd-hero {
  padding: 60px 0 0;
  margin-bottom: 0;
}
.wd-hero .wd-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
}
.wd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.wd-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.wd-hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.wd-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.wd-stars { font-size: 13px; color: var(--text-secondary); }
.wd-hero-image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

/* Stats bar */
.wd-stats-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  padding: 24px 0;
  margin-bottom: 0;
}
.wd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wd-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-title);
}
.wd-stat-lbl { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

/* Sections */
.wd-section { padding: 64px 0; }
.wd-section-alt {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wd-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.wd-section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.wd-text-center { text-align: center; }
.wd-text-center .wd-section-sub { margin-left: auto; margin-right: auto; }

/* Hero small (interior pages) */
.wd-hero-sm {
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0;
}
.wd-page-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 10px 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.wd-page-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* Bento grid */
.wd-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}
.wd-bento-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wd-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.wd-bento-featured {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #1d4ed8, #4f46e5);
  border-color: transparent;
}
.wd-bento-wide { grid-column: span 2; }
.wd-bento-card h3 { font-size: 1.15rem; margin: 14px 0 8px; color: #fff; }
.wd-bento-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.wd-bento-featured h3, .wd-bento-featured p { color: rgba(255,255,255,0.9); }

/* Icon */
.wd-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(59,130,246,0.12);
  border-radius: 12px;
  margin-bottom: 4px;
}
.wd-bento-featured .wd-icon { background: rgba(255,255,255,0.15); }

/* Steps */
.wd-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.wd-step {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px;
}
.wd-step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-title);
  margin-bottom: 12px;
}
.wd-step h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.wd-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Testimonials */
.wd-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wd-testimonial {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px;
  margin: 0;
}
.wd-testimonial blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 12px 0 16px;
}
.wd-testimonial figcaption strong { display: block; font-size: 14px; color: #fff; }
.wd-testimonial figcaption span { font-size: 12px; color: var(--text-secondary); }
.wd-stars-sm { color: #fbbf24; font-size: 14px; letter-spacing: 2px; }

/* CTA section */
.wd-cta-section .wd-container { padding-top: 0; padding-bottom: 48px; }
.wd-cta-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 0 60px rgba(59,130,246,0.08);
}
.wd-cta-box h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: #fff; margin-bottom: 18px; }
.wd-cta-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0; }
.wd-cta-list li { font-size: 14px; color: var(--text-primary); display: flex; align-items: center; gap: 6px; }
.wd-cta-actions { display: flex; flex-direction: column; gap: 12px; }

/* Services grid */
.wd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wd-service-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s ease;
}
.wd-service-card:hover { transform: translateY(-4px); }
.wd-service-card h3 { font-size: 1.1rem; color: #fff; margin: 14px 0 8px; }
.wd-service-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }

/* Check list */
.wd-check-list { list-style: none; padding: 0; margin: 0; }
.wd-check-list li {
  font-size: 13px;
  color: var(--text-primary);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.wd-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Pricing */
.wd-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.wd-pricing-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.wd-pricing-featured {
  border-color: var(--primary-color);
  box-shadow: 0 0 40px rgba(59,130,246,0.15);
}
.wd-pricing-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); display: block; margin-bottom: 10px; }
.wd-pricing-tag-featured {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--primary-color), #818cf8);
  color: #fff;
  border-radius: 999px;
  padding: 3px 12px;
  display: inline-block;
  margin-bottom: 10px;
}
.wd-pricing-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
.wd-pricing-price { font-size: 2.5rem; font-weight: 800; color: #fff; font-family: var(--font-title); margin-bottom: 20px; }
.wd-pricing-card .wd-check-list { flex: 1; margin-bottom: 24px; }
.wd-fine-print { font-size: 11px; color: var(--text-secondary); text-align: center; margin-top: 16px; }

/* Portfolio */
.wd-portfolio { display: flex; flex-direction: column; gap: 28px; }
.wd-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
  padding: 20px;
}
.wd-project-alt { direction: rtl; }
.wd-project-alt > * { direction: ltr; }
.wd-project-img { margin: 0; }
.wd-project-img img { width: 100%; border-radius: 14px; display: block; }
.wd-project-body { padding: 12px; }
.wd-project-body h2 { font-size: 1.6rem; color: #fff; margin: 8px 0 10px; }
.wd-project-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.wd-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,0.1);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Contact */
.wd-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
}
.wd-contact-info { display: flex; flex-direction: column; gap: 12px; }
.wd-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
a.wd-contact-card:hover { background: rgba(59,130,246,0.08); border-bottom: none; }
.wd-contact-lbl { font-size: 12px; color: var(--text-secondary); }
.wd-contact-val { font-size: 15px; font-weight: 600; color: #fff; }
.wd-next-steps {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px;
}
.wd-next-steps h3 { font-size: 1rem; color: #fff; margin-bottom: 12px; }
.wd-contact-form-wrap {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 32px;
}
.wd-contact-form { display: flex; flex-direction: column; gap: 18px; }
.wd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wd-field { display: flex; flex-direction: column; gap: 6px; }
.wd-field label { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.wd-field input, .wd-field textarea {
  background: rgba(3, 7, 18, 0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s;
}
.wd-field input:focus, .wd-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.wd-budget-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.wd-pill {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.wd-pill:hover, .wd-pill.active {
  border-color: var(--primary-color);
  background: rgba(59,130,246,0.1);
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 900px) {
  .wd-hero .wd-container { grid-template-columns: 1fr; }
  .wd-hero-image { display: none; }
  .wd-stats { grid-template-columns: repeat(2, 1fr); }
  .wd-bento { grid-template-columns: 1fr 1fr; }
  .wd-bento-featured { grid-column: span 2; }
  .wd-bento-wide { grid-column: span 2; }
  .wd-steps { grid-template-columns: repeat(2, 1fr); }
  .wd-testimonials { grid-template-columns: 1fr 1fr; }
  .wd-cta-box { grid-template-columns: 1fr; }
  .wd-services-grid { grid-template-columns: 1fr 1fr; }
  .wd-pricing { grid-template-columns: 1fr; }
  .wd-project { grid-template-columns: 1fr; }
  .wd-project-alt { direction: ltr; }
  .wd-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wd-bento { grid-template-columns: 1fr; }
  .wd-bento-featured, .wd-bento-wide { grid-column: span 1; }
  .wd-steps { grid-template-columns: 1fr; }
  .wd-testimonials { grid-template-columns: 1fr; }
  .wd-services-grid { grid-template-columns: 1fr; }
  .wd-cta-list { grid-template-columns: 1fr; }
  .wd-form-row { grid-template-columns: 1fr; }
}
