/*
Theme Name: 天本エネルギー合同会社
Theme URI: https://amamoto-energy.jp
Author: 天本 諒
Author URI: https://amamoto-energy.jp
Description: 天本エネルギー合同会社 公式サイト。風力・水力・太陽光・蓄電池等のクリーンエネルギー発電システム並びに省エネルギー装置及び機器の販売、設置、施工、管理、保守及びコンサルティング事業。
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: amamoto-energy
*/

:root {
  --forest: #0d2818;
  --deep: #061a10;
  --emerald: #00c853;
  --lime: #b5f542;
  --sky: #00e5ff;
  --gold: #ffd600;
  --white: #f0f7f0;
  --muted: #8aab8a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ---- NAVIGATION ---- */
nav, #site-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 26, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 200, 83, 0.15);
  transition: background 0.3s;
}

nav.scrolled { background: rgba(6,26,16,0.97); }

.site-logo, .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--lime);
  text-decoration: none;
}

.site-logo span, .logo span { color: var(--sky); }

.nav-links, .main-navigation ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a, .main-navigation ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.nav-links a:hover, .main-navigation ul li a:hover { color: var(--lime); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--emerald);
  color: var(--emerald) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--emerald) !important;
  color: var(--deep) !important;
}

/* ---- HERO ---- */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,200,83,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(0,229,255,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #061a10 0%, #0d2818 50%, #061a10 100%);
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,83,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,83,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 { width:400px; height:400px; background:rgba(0,200,83,0.12); top:-100px; right:10%; animation-delay:0s; }
.orb-2 { width:300px; height:300px; background:rgba(0,229,255,0.08); bottom:10%; left:5%; animation-delay:3s; }
.orb-3 { width:200px; height:200px; background:rgba(181,245,66,0.06); top:40%; right:35%; animation-delay:5s; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 3rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--emerald);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 0.8s ease 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before { content:''; width:40px; height:1px; background:var(--emerald); }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 0.8s ease 0.5s forwards;
}

.hero-title .accent { color: var(--lime); }
.hero-title .sky { color: var(--sky); }

.hero-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0;
  animation: slideUp 0.8s ease 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: slideUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  background: var(--lime);
  color: var(--deep);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(181,245,66,0.3); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s;
}

.btn-secondary:hover { border-color: var(--sky); color: var(--sky); }

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0;
  animation: fadeIn 1.2s ease 1s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

.energy-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,200,83,0.2);
  animation: spin 20s linear infinite;
}

.energy-ring:nth-child(2) { inset:30px; border-color:rgba(0,229,255,0.15); animation-direction:reverse; animation-duration:15s; }
.energy-ring:nth-child(3) { inset:60px; border-color:rgba(181,245,66,0.1); animation-duration:25s; }

@keyframes spin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

.energy-icon {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--forest);
  border: 1px solid rgba(0,200,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.energy-icon:nth-child(4) { top:-20px; left:50%; transform:translateX(-50%); }
.energy-icon:nth-child(5) { right:-20px; top:50%; transform:translateY(-50%); }
.energy-icon:nth-child(6) { bottom:-20px; left:50%; transform:translateX(-50%); }
.energy-icon:nth-child(7) { left:-20px; top:50%; transform:translateY(-50%); }

.energy-center {
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.15), rgba(0,200,83,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(0,200,83,0.3);
}

.energy-center-text { font-family:'Bebas Neue',sans-serif; font-size:2rem; color:var(--lime); line-height:1; }
.energy-center-sub { font-size:0.65rem; color:var(--muted); letter-spacing:0.15em; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-indicator span { font-size:0.7rem; letter-spacing:0.2em; color:var(--muted); }
.scroll-line { width:1px; height:50px; background:linear-gradient(to bottom, var(--emerald), transparent); animation:scrollPulse 2s ease-in-out infinite; }

@keyframes scrollPulse {
  0% { transform:scaleY(0); transform-origin:top; }
  50% { transform:scaleY(1); transform-origin:top; }
  51% { transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

@keyframes slideUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}

/* ---- STATS BAND ---- */
.stats-band {
  background: var(--forest);
  border-top: 1px solid rgba(0,200,83,0.15);
  border-bottom: 1px solid rgba(0,200,83,0.15);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.stat-item { text-align: center; }
.stat-num { font-family:'Bebas Neue',sans-serif; font-size:3rem; color:var(--lime); line-height:1; }
.stat-unit { font-family:'Rajdhani',sans-serif; font-size:1.2rem; color:var(--emerald); }
.stat-label { font-size:0.75rem; color:var(--muted); letter-spacing:0.1em; margin-top:0.3rem; }

/* ---- SECTION COMMON ---- */
section { padding: 8rem 3rem; position: relative; }

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--emerald);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after { content:''; width:30px; height:1px; background:var(--emerald); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

/* ---- SERVICES ---- */
#services {
  background: linear-gradient(180deg, var(--deep) 0%, var(--forest) 100%);
  max-width: 1400px;
  margin: 0 auto;
}

.services-header { max-width: 600px; margin-bottom: 5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(0,200,83,0.1);
}

.service-card {
  background: var(--deep);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,83,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover { background: var(--forest); }
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 70px; height: 70px;
  border: 1px solid rgba(0,200,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: border-color 0.3s;
  background: rgba(0,200,83,0.04);
}

.service-card:hover .service-icon-wrap { border-color:var(--lime); background:rgba(181,245,66,0.08); }

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  color: var(--white);
  transition: color 0.3s;
}

.service-card:hover .service-name { color: var(--lime); }

.service-desc { font-size:0.85rem; color:var(--muted); line-height:1.8; font-weight:300; }
.service-tag { margin-top:1.5rem; display:inline-block; font-size:0.7rem; letter-spacing:0.2em; color:var(--emerald); text-transform:uppercase; font-family:'Rajdhani',sans-serif; font-weight:600; }

.service-full-width { grid-column: span 3; }

/* ---- ABOUT ---- */
#about { background: var(--forest); }

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual { position:relative; height:500px; }

.about-img-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,83,0.08), rgba(0,229,255,0.05));
  border: 1px solid rgba(0,200,83,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--lime);
  color: var(--deep);
  padding: 1.5rem;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.about-badge strong { font-family:'Bebas Neue',sans-serif; font-size:2.5rem; display:block; line-height:1; }
.about-badge span { font-size:0.75rem; font-weight:700; letter-spacing:0.1em; }

.about-text p { font-size:0.95rem; line-height:2; color:var(--muted); font-weight:300; margin-bottom:1.5rem; }
.about-text p strong { color:var(--white); font-weight:700; }

.feature-list { list-style:none; margin-top:2rem; display:flex; flex-direction:column; gap:0.8rem; }
.feature-list li { display:flex; align-items:flex-start; gap:1rem; font-size:0.9rem; color:var(--muted); }
.feature-list li::before { content:'▸'; color:var(--emerald); flex-shrink:0; margin-top:0.1rem; }

/* ---- SOLUTIONS ---- */
#solutions { background: var(--deep); }

.solutions-inner { max-width: 1400px; margin: 0 auto; }

.solutions-header { text-align:center; max-width:700px; margin:0 auto 5rem; }
.solutions-header .section-label { justify-content:center; }
.solutions-header .section-label::after { display:none; }
.solutions-header .section-label::before { content:''; width:30px; height:1px; background:var(--emerald); }

.solutions-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid rgba(0,200,83,0.15);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 0.8rem 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  border-right: 1px solid rgba(0,200,83,0.15);
  letter-spacing: 0.05em;
}

.tab-btn:last-child { border-right:none; }
.tab-btn.active { background:var(--emerald); color:var(--deep); font-weight:700; }
.tab-btn:hover:not(.active) { background:rgba(0,200,83,0.08); color:var(--white); }

.solution-content { display:none; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.solution-content.active { display:grid; }

.solution-visual {
  height: 380px;
  background: var(--forest);
  border: 1px solid rgba(0,200,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 8rem;
}

.solution-visual::after { content:''; position:absolute; inset:0; background:radial-gradient(circle at center, rgba(0,200,83,0.08), transparent 70%); }

.solution-text h3 { font-family:'Bebas Neue',sans-serif; font-size:2.5rem; margin-bottom:1.5rem; color:var(--lime); }
.solution-text p { font-size:0.9rem; line-height:2; color:var(--muted); margin-bottom:1.5rem; }

.solution-specs { display:flex; flex-direction:column; gap:0.8rem; margin-top:2rem; }
.spec-row { display:flex; justify-content:space-between; padding:0.7rem 0; border-bottom:1px solid rgba(0,200,83,0.1); font-size:0.85rem; }
.spec-label { color:var(--muted); }
.spec-val { color:var(--lime); font-family:'Rajdhani',sans-serif; font-weight:600; letter-spacing:0.05em; }

/* ---- PROCESS ---- */
#process { background: linear-gradient(180deg, var(--forest) 0%, var(--deep) 100%); }

.process-inner { max-width:1400px; margin:0 auto; }
.process-header { max-width:500px; margin-bottom:5rem; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--emerald), var(--sky), var(--lime), transparent);
}

.step { padding:0 1.5rem; text-align:center; position:relative; }

.step-num-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--deep);
  border: 1px solid rgba(0,200,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--emerald);
  position: relative;
  z-index: 10;
  transition: all 0.3s;
}

.step:hover .step-num-wrap { border-color:var(--lime); color:var(--lime); box-shadow:0 0 20px rgba(181,245,66,0.2); }

.step-title { font-weight:700; font-size:0.9rem; margin-bottom:0.8rem; color:var(--white); }
.step-desc { font-size:0.8rem; color:var(--muted); line-height:1.8; }

/* ---- CONTACT ---- */
#contact { background:var(--forest); border-top:1px solid rgba(0,200,83,0.1); }

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
}

.contact-info p { color:var(--muted); font-size:0.9rem; line-height:1.9; margin-bottom:3rem; }
.contact-info h2 { font-family:'Bebas Neue',sans-serif; font-size:3.5rem; line-height:1; display:block; margin-bottom:0.5rem; }
.contact-info h2 .green { color:var(--lime); }

.contact-details { display:flex; flex-direction:column; gap:1.5rem; }
.contact-detail { display:flex; gap:1.2rem; align-items:flex-start; }

.detail-icon { width:40px; height:40px; border:1px solid rgba(0,200,83,0.3); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; color:var(--emerald); }
.detail-label { font-size:0.7rem; letter-spacing:0.15em; color:var(--emerald); font-family:'Rajdhani',sans-serif; font-weight:600; text-transform:uppercase; }
.detail-val { font-size:0.9rem; color:var(--white); margin-top:0.2rem; }
.detail-val a { color:var(--white); text-decoration:none; transition:color 0.3s; }
.detail-val a:hover { color:var(--lime); }

.contact-form { display:flex; flex-direction:column; gap:1.2rem; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.form-group { display:flex; flex-direction:column; gap:0.5rem; }
.form-group label { font-size:0.75rem; letter-spacing:0.15em; color:var(--muted); font-family:'Rajdhani',sans-serif; font-weight:600; text-transform:uppercase; }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,200,83,0.04);
  border: 1px solid rgba(0,200,83,0.2);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--emerald); }

.form-group textarea { resize:vertical; min-height:120px; }
.form-group select option { background:var(--forest); color:var(--white); }

.submit-btn {
  background: var(--lime);
  color: var(--deep);
  border: none;
  padding: 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Noto Sans JP', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.submit-btn:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(181,245,66,0.3); }

/* ---- FOOTER ---- */
footer, .site-footer {
  background: var(--deep);
  border-top: 1px solid rgba(0,200,83,0.1);
  padding: 4rem 3rem 2rem;
}

.footer-inner { max-width:1400px; margin:0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo { display:block; margin-bottom:1rem; }
.footer-brand p { font-size:0.8rem; color:var(--muted); line-height:1.9; max-width:280px; }

.footer-col h4 { font-family:'Rajdhani',sans-serif; font-size:0.75rem; font-weight:600; letter-spacing:0.3em; color:var(--emerald); text-transform:uppercase; margin-bottom:1.5rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.7rem; }
.footer-col ul a { color:var(--muted); text-decoration:none; font-size:0.85rem; transition:color 0.3s; }
.footer-col ul a:hover { color:var(--lime); }

.footer-bottom { border-top:1px solid rgba(0,200,83,0.08); padding-top:2rem; display:flex; justify-content:space-between; align-items:center; }
.footer-bottom p { font-size:0.75rem; color:var(--muted); letter-spacing:0.05em; }
.footer-bottom p span { color:var(--emerald); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-full-width { grid-column: span 2; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
  .solution-content { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-visual { display: none; }
}

@media (max-width: 640px) {
  nav, #site-navigation { padding: 1rem 1.5rem; }
  .nav-links, .main-navigation { display: none; }
  section { padding: 5rem 1.5rem; }
  .stats-band { gap: 2rem; flex-wrap: wrap; padding: 2rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-full-width { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .solutions-tabs { flex-wrap: wrap; }
}

/* ---- WordPress standard elements ---- */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
img { max-width: 100%; height: auto; }
