.airdry-page,
.airdry-page * {
  box-sizing: border-box;
}

.airdry-page {
  --bg1: #fff7ef;
  --bg2: #f8fbff;
  --bg3: #fffdf7;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --button: #0f172a;
  margin: 0 auto;
  padding: 30px 20px 50px;
  max-width: 1280px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 55%, var(--bg3) 100%);
}

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

.airdry-page a {
  color: inherit;
  text-decoration: none;
}

.airdry-shell {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.airdry-hero {
  position: relative;
  padding: 40px 30px;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(135deg, #fff4e8 0%, #fff9cb 35%, #ddfbff 70%, #f2edff 100%);
}

.airdry-hero:before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #f472b6 0%, transparent 70%);
  opacity: .25;
  pointer-events: none;
}

.airdry-hero:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #60a5fa 0%, transparent 70%);
  opacity: .25;
  pointer-events: none;
}

.airdry-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  align-items: center;
}

.airdry-logo {
  max-width: 700px;
}

.airdry-eyebrow {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 700;
}

.airdry-page h1,
.airdry-page h2,
.airdry-page h3,
.airdry-page h4 {
  margin: 0;
  line-height: 1.15;
}

.airdry-hero h1 {
  margin-top: 16px;
  font-size: 42px;
}

.airdry-hero p {
  margin-top: 16px;
  max-width: 760px;
  color: #475569;
  font-size: 18px;
}

.airdry-actions {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.airdry-btn {
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: .2s;
}

.airdry-btn-primary {
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
}

.airdry-btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
}

.airdry-btn-secondary {
  background: #fff;
  border: 1px solid #d1d5db;
}

.airdry-hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.airdry-img-card {
  background: #fff;
  border-radius: 22px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.airdry-img-card img {
  border-radius: 16px;
  height: 200px;
  object-fit: cover;
  box-shadow: inset 0 4px 10px rgba(255,255,255,.6), 0 6px 14px rgba(0,0,0,.15);
}

.airdry-img-card.wide {
  grid-column: span 2;
}

.airdry-img-card.wide img {
  height: 240px;
}

.airdry-start {
  padding: 40px 30px;
  text-align: center;
  background: #fffef8;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.airdry-start h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.airdry-start-text {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #475569;
}

.airdry-start-grid {
  display: grid;
  gap: 25px;
}

.airdry-start-card {
  display: block;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
  transition: .2s;
}

.airdry-start-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0,0,0,.1);
}

.airdry-start-card img {
  border-radius: 14px;
  margin-bottom: 12px;
}

.airdry-start-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.airdry-start-card p {
  margin: 0;
  color: #64748b;
}

.airdry-nav {
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.airdry-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.airdry-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 14px;
}

.airdry-info-grid {
  display: grid;
  gap: 25px;
  padding: 30px;
}

.airdry-card {
  padding: 25px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid #f1f5f9;
}

.airdry-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.airdry-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.airdry-icon.orange { background: #ffedd5; }
.airdry-icon.cyan { background: #cffafe; }

.airdry-head p {
  margin-top: 4px;
  color: var(--muted);
}

.airdry-mix-image,
.airdry-shapes-image {
  margin-bottom: 20px;
}

.airdry-mix-image img,
.airdry-shapes-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.airdry-mix-list {
  display: grid;
  gap: 14px;
}

.airdry-mix-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #f1f5f9;
}

.airdry-mix-title {
  font-weight: 700;
}

.airdry-mix-sub {
  font-size: 13px;
  color: #64748b;
}

.airdry-mix-balls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.airdry-ball {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.airdry-red { background: #ef4444; }
.airdry-yellow { background: #fde047; }
.airdry-blue { background: #3b82f6; }
.airdry-green { background: #22c55e; }
.airdry-orange { background: #f97316; }
.airdry-purple { background: #8b5cf6; }
.airdry-pink { background: #f472b6; }
.airdry-white { background: #fff; border: 1px solid #ddd; }

.airdry-shapes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.airdry-shape-card {
  background: #fff;
  padding: 15px;
  border-radius: 18px;
  border: 1px solid #f1f5f9;
  text-align: center;
}

.airdry-shape-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.airdry-shape-label {
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
}

.airdry-shape {
  box-shadow: inset 0 6px 10px rgba(255,255,255,.4), inset 0 -6px 12px rgba(0,0,0,.15), 0 5px 12px rgba(0,0,0,.15);
}

.airdry-shape.ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ec4899;
}

.airdry-shape.cube {
  width: 48px;
  height: 48px;
  background: #ef4444;
  border-radius: 10px;
}

.airdry-shape.swirl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f87171, #fde047, #f97316);
}

.airdry-shape.droplet {
  width: 40px;
  height: 55px;
  border-radius: 50% 50% 40% 40%;
  background: #ec4899;
}

.airdry-shape.long-droplet {
  width: 30px;
  height: 55px;
  border-radius: 50%;
  background: #facc15;
}

.airdry-shape.double-droplet {
  width: 60px;
  height: 38px;
  border-radius: 50%;
  background: #0ea5e9;
}

.airdry-shape.oval {
  width: 60px;
  height: 38px;
  border-radius: 50%;
  background: #f87171;
}

.airdry-shape.egg {
  width: 40px;
  height: 55px;
  border-radius: 50% 50% 45% 45%;
  background: #ef4444;
}

.airdry-tip {
  margin-top: 20px;
  padding: 16px;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  color: #475569;
}

.airdry-projects {
  padding: 40px 30px;
  background: linear-gradient(180deg, #fffefb 0%, #f9fcff 100%);
}

.airdry-projects-top {
  max-width: 700px;
  margin-bottom: 30px;
}

.airdry-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #d1fae5;
  color: #047857;
  font-weight: 700;
}

.airdry-projects-top h2 {
  margin-top: 14px;
  font-size: 34px;
}

.airdry-projects-top p {
  margin-top: 12px;
  color: #64748b;
}

.airdry-section {
  margin-top: 35px;
}

.airdry-section-top {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}

.airdry-section-top p {
  margin: 8px 0 0;
  color: #64748b;
}

.airdry-intro {
  font-size: 15px;
}

.airdry-project-grid {
  display: grid;
  gap: 22px;
}

.airdry-project-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-soft);
  transition: .2s;
}

.airdry-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
}

.airdry-project-inner {
  display: grid;
}

.airdry-project-media {
  padding: 14px;
}

.airdry-project-media img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: inset 0 4px 10px rgba(255,255,255,.6), 0 6px 14px rgba(0,0,0,.15);
}

.airdry-project-copy {
  padding: 20px;
}

.airdry-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f472b6, #fb7185);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.airdry-project-copy h4 {
  margin-top: 12px;
  font-size: 28px;
}

.airdry-steps {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.airdry-steps li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #475569;
}

.airdry-step-no {
  width: 26px;
  height: 26px;
  background: #111827;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex: 0 0 26px;
}

@media (min-width: 768px) {
  .airdry-hero-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .airdry-start-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .airdry-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .airdry-shapes {
    grid-template-columns: repeat(4, 1fr);
  }

  .airdry-project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .airdry-project-inner {
    grid-template-columns: 1.05fr .95fr;
  }
}

@media (min-width: 1100px) {
  .airdry-page {
    padding: 40px 30px 60px;
  }
}
.airdry-start-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.airdry-start-card-link h3{
  margin:0 0 8px;
  font-size:22px;
}

.airdry-start-card-link p{
  margin:0;
  color:#64748b;
}