:root {
  --primary: #ffffff;
  --text-color: #191c25;
  --text-color-2: #848484;
  --accent: #f05a30;
  --accent-soft: #ffeae4;
  --gray-2: #f5f5f5;
  --gray-3: #dfdfdf;
  --gray-4: #f7f7f7;
  --font-1: "Montserrat", sans-serif;
  --font-2: "Inter", sans-serif;
  --radius: 24px;
  --container: 1320px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-1);
  color: var(--text-color);
  background: var(--primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: var(--font-2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-1);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-color);
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
}

h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
}

h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
}

h4 {
  font-size: 28px;
}

p {
  font-family: var(--font-2);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color-2);
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 72px 0;
}

.accent {
  color: var(--accent);
}

.italic {
  font-style: italic;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.eyebrow i {
  font-size: 12px;
}

.lead {
  max-width: 640px;
  margin: 14px auto 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--gray-3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--text-color);
}

.brand-name span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.nav-drop > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active,
.nav-drop:hover > span {
  color: var(--accent);
}

.nav-links i {
  font-size: 10px;
  color: var(--accent);
}

.nav-drop {
  position: relative;
}

.nav-drop .drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  display: none;
  z-index: 20;
}

.nav-drop:hover .drop {
  display: block;
}

.drop a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  color: var(--text-color);
}

.drop a:hover {
  background: var(--text-color);
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-3);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-color);
}

.icon-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--text-color);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 50px;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
  white-space: nowrap;
}

.btn i {
  font-size: 14px;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--text-color);
}

.btn-dark {
  background: var(--text-color);
  color: #fff;
}

.btn-dark:hover {
  background: var(--accent);
}

.btn-line {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.btn-line:hover {
  background: var(--text-color);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--accent);
}

.btn-white:hover {
  background: var(--text-color);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Orange clipped photo */
.clip-frame {
  position: relative;
  isolation: isolate;
}

.clip-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
}

.clip-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--accent);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
  z-index: -1;
}

/* Hero home */
.hero {
  padding: 48px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-copy p {
  max-width: 520px;
  margin-top: 18px;
  font-size: 17px;
}

.hero-photo {
  position: relative;
  min-height: 560px;
}

.hero-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
}

.float-card {
  position: absolute;
  left: -28px;
  bottom: 70px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(25, 28, 37, 0.12);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.float-card .ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.float-card strong {
  display: block;
  font-size: 16px;
}

.float-card span {
  color: var(--text-color-2);
  font-size: 13px;
  font-family: var(--font-2);
}

/* Marquee */
.ticker {
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  padding: 18px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
}

.ticker-item i {
  font-size: 16px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Advantage cards */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.adv-card {
  background: #fff;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: 0.3s;
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(240, 90, 48, 0.12);
}

.adv-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.adv-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* About split */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
}

.about-photos img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 28px;
}

.about-photos img:last-child {
  margin-top: 48px;
}

.stat-bubble {
  position: absolute;
  right: 12%;
  top: 38%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(240, 90, 48, 0.35);
}

.stat-bubble strong {
  font-size: 36px;
  display: block;
  line-height: 1;
}

.mini-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mini-item {
  display: flex;
  gap: 12px;
}

.mini-item i {
  color: var(--accent);
  margin-top: 4px;
}

.mini-item h5 {
  font-size: 16px;
  margin-bottom: 4px;
}

.mini-item p {
  font-size: 14px;
}

/* Service cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
}

.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: 0.5s;
}

.svc-card:hover img {
  transform: scale(1.08);
}

.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(25, 28, 37, 0.78) 100%);
}

.svc-body {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 24px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-body h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.svc-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.svc-go {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step {
  text-align: left;
}

.step-num {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Projects */
.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.proj-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.proj-card h4 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.dots {
  width: 72px;
  height: 72px;
  background-image: radial-gradient(var(--accent) 2px, transparent 2.5px);
  background-size: 12px 12px;
  position: absolute;
}

.relative {
  position: relative;
}

/* Pricing */
.price-toggle {
  display: inline-flex;
  background: var(--gray-2);
  border-radius: 50px;
  padding: 6px;
  margin: 28px auto 40px;
}

.price-toggle button {
  border: 0;
  background: transparent;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-color);
}

.price-toggle button.active {
  background: var(--accent);
  color: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  background: var(--gray-4);
  border-radius: 28px;
  padding: 40px 32px;
  border: 1px solid transparent;
}

.price-card.featured {
  background: var(--accent);
  color: #fff;
  transform: scale(1.04);
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured li,
.price-card.featured .amount {
  color: #fff;
}

.price-card h3 {
  font-size: 26px;
  margin: 8px 0 10px;
}

.amount {
  font-size: 52px;
  font-weight: 700;
  margin: 18px 0 22px;
  letter-spacing: -1px;
}

.amount small {
  font-size: 18px;
  font-weight: 500;
}

.price-card ul {
  margin: 20px 0 28px;
}

.price-card li {
  font-family: var(--font-2);
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--text-color);
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.price-card.featured li::before {
  color: #fff;
}

/* Testimonials */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.t-card {
  background: #fff;
  border: 1px solid var(--gray-3);
  border-radius: 22px;
  padding: 28px;
}

.quote-icon {
  color: var(--accent);
  font-size: 28px;
  margin-bottom: 8px;
}

.stars {
  color: #f5b301;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.t-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.t-user strong {
  display: block;
  font-size: 15px;
}

.t-user span {
  font-size: 13px;
  color: var(--text-color-2);
  font-family: var(--font-2);
}

/* FAQ */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-3);
}

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 22px 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-1);
}

.faq-q i {
  color: var(--accent);
}

.faq-a {
  display: none;
  padding: 0 8px 20px;
}

.faq-item.open .faq-a {
  display: block;
}

/* Contact overlay form */
.contact-banner {
  position: relative;
  border-radius: 0;
  min-height: 620px;
  background: #1a1a1a center/cover no-repeat;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 620px;
  gap: 24px;
}

.form-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.form-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfcfcf;
  padding: 12px 4px;
  font-size: 15px;
  background: transparent;
  color: var(--text-color);
  outline: none;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.field .error {
  color: #d03030;
  font-size: 12px;
  min-height: 16px;
  margin-top: 4px;
  font-family: var(--font-2);
}

.input-error {
  border-bottom-color: #d03030 !important;
}

/* CTA */
.cta {
  padding: 0 0 96px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.cta-photo {
  position: relative;
}

.cta-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 0 180px 0 0;
}

.cta-photo::after {
  content: "";
  position: absolute;
  inset: 28px auto auto 28px;
  width: 72%;
  height: 78%;
  border: 16px solid var(--accent);
  z-index: -1;
  border-radius: 0 140px 0 0;
}

/* Inner page hero */
.page-hero {
  padding: 56px 0 28px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.crumb {
  font-size: 14px;
  color: var(--text-color-2);
  margin-bottom: 16px;
  font-family: var(--font-2);
}

.crumb a:hover {
  color: var(--accent);
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.page-hero p {
  max-width: 480px;
  margin-top: 14px;
}

.page-hero-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--gray-4);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  align-items: center;
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gray-3);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.socials a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.hire-card {
  background: var(--accent);
  color: #fff;
  border-radius: 22px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hire-card h3,
.hire-card p {
  color: #fff;
}

.empty-hire {
  background: var(--gray-4);
  border-radius: 22px;
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--text-color-2);
}

.empty-hire i {
  font-size: 72px;
  opacity: 0.35;
}

/* Story timeline */
.story {
  display: grid;
  gap: 48px;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-row img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
}

.year {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

/* Contact info */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.info-card .ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 22px;
}

/* Legal */
.legal {
  max-width: 900px;
  margin: 0 auto;
}

.legal h2,
.legal h3 {
  margin: 28px 0 12px;
  font-size: 26px;
}

.legal p,
.legal li {
  margin-bottom: 14px;
  font-family: var(--font-2);
  color: var(--text-color-2);
  line-height: 1.75;
}

.legal ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 16px;
}

.legal ol {
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--text-color-2);
  font-family: var(--font-2);
}

/* Footer */
.footer {
  background: #fafafa;
  padding: 72px 0 28px;
  border-top: 1px solid var(--gray-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1.4fr;
  gap: 32px;
}

.footer h5 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  font-size: 15px;
  color: var(--text-color-2);
  margin-bottom: 10px;
  font-family: var(--font-2);
}

.footer a:hover {
  color: var(--accent);
}

.news-form {
  display: flex;
  border-bottom: 1px solid var(--gray-3);
  margin: 16px 0 22px;
}

.news-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 0;
  outline: none;
}

.news-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-3);
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 28px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(25, 28, 37, 0.55);
  display: none;
  place-items: center;
  z-index: 2000;
  padding: 24px;
}

.modal.show {
  display: grid;
}

.modal-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 460px;
  text-align: center;
}

.modal-card .ic {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 30px;
}

.search-box {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  display: none;
  place-items: center;
  z-index: 1800;
}

.search-box.show {
  display: grid;
}

.search-box form {
  width: min(640px, 90%);
}

.search-box input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--text-color);
  font-size: 28px;
  padding: 12px 0;
  outline: none;
}

.progress {
  background: var(--gray-2);
  height: 8px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 8px;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--accent);
}

.skill {
  margin-bottom: 16px;
}

.skill-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.feature-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-family: var(--font-2);
  color: var(--text-color-2);
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.side-form {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.orange-panel {
  background: var(--accent);
  color: #fff;
  border-radius: 22px;
  padding: 32px;
}

.orange-panel h4,
.orange-panel p {
  color: #fff;
}

.bg-soft {
  background: linear-gradient(215.59deg, #ffffff 61.61%, #ffeae4 103.35%);
}

.bg-gray {
  background: var(--gray-4);
}

.hashtag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.hashtag-row span {
  background: var(--gray-2);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-color-2);
  font-family: var(--font-2);
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--gray-3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-drop .drop {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 12px;
  }

  .nav-drop.open .drop {
    display: block;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-grid,
  .about-grid,
  .cta-grid,
  .page-hero-grid,
  .contact-inner,
  .story-row,
  .two-col,
  .team-card {
    grid-template-columns: 1fr;
  }

  .adv-grid,
  .svc-grid,
  .price-grid,
  .t-grid,
  .info-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-photo img,
  .page-hero-photo img {
    height: 420px;
  }

  .price-card.featured {
    transform: none;
  }

  .float-card {
    left: 12px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .adv-grid,
  .svc-grid,
  .price-grid,
  .t-grid,
  .info-grid,
  .proj-grid,
  .team-grid,
  .steps,
  .form-grid,
  .footer-grid,
  .mini-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-photo {
    min-height: auto;
  }

  .cta-photo img {
    height: 280px;
    border-radius: 0 80px 0 0;
  }

  .about-photos img {
    height: 220px;
  }

  .nav {
    min-height: 76px;
  }
}
