/*
Theme Name: Private Twin
Theme URI: http://private-twin.com
Author: Private Twin
Author URI: http://private-twin.com
Description: A corporate and professional theme for Private Twin — AI Agent that automates todo lists and timesheet updates.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: private-twin
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --pt-primary: #1A1A2E;
  --pt-primary-light: #2D3142;
  --pt-accent: #4DAEDB;
  --pt-accent-hover: #3A8FBF;
  --pt-accent-light: rgba(77, 174, 219, 0.1);
  --pt-accent-glow: rgba(77, 174, 219, 0.25);
  --pt-bg: #FAFBFC;
  --pt-bg-alt: #F0F4F8;
  --pt-text: #2D3142;
  --pt-text-subtle: #6B7280;
  --pt-white: #FFFFFF;
  --pt-border: #E2E8F0;
  --pt-shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  --pt-shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
  --pt-radius: 12px;
  --pt-radius-sm: 8px;
  --pt-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--pt-text);
  background-color: var(--pt-bg);
  overflow-x: hidden;
}

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

a {
  color: var(--pt-accent);
  text-decoration: none;
  transition: color var(--pt-transition);
}

a:hover {
  color: var(--pt-accent-hover);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--pt-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 400; }

p {
  margin-bottom: 1rem;
  color: var(--pt-text-subtle);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.pt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pt-section {
  padding: 100px 0;
}

.pt-section--alt {
  background-color: var(--pt-bg-alt);
}

.pt-section--dark {
  background-color: var(--pt-primary);
  color: var(--pt-white);
}

.pt-section--dark h2,
.pt-section--dark h3 {
  color: var(--pt-white);
}

.pt-section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.pt-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.pt-section__header p {
  font-size: 1.125rem;
  margin-top: 16px;
}

.pt-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-accent);
  margin-bottom: 12px;
}

.pt-section--dark .pt-label {
  color: var(--pt-accent);
}

/* Buttons */
.pt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--pt-transition);
  text-decoration: none;
}

.pt-btn--primary {
  background: var(--pt-accent);
  color: var(--pt-white);
  box-shadow: 0 4px 16px rgba(77, 174, 219, 0.3);
}

.pt-btn--primary:hover {
  background: var(--pt-accent-hover);
  color: var(--pt-white);
  box-shadow: 0 8px 32px rgba(77, 174, 219, 0.4);
  transform: translateY(-2px);
}

.pt-btn--outline {
  background: transparent;
  color: var(--pt-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pt-btn--outline:hover {
  border-color: var(--pt-accent);
  color: var(--pt-accent);
}

.pt-btn--dark {
  background: var(--pt-primary);
  color: var(--pt-white);
}

.pt-btn--dark:hover {
  background: var(--pt-primary-light);
  color: var(--pt-white);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.pt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--pt-border);
  transition: all var(--pt-transition);
}

.pt-header--scrolled {
  box-shadow: var(--pt-shadow);
}

.pt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pt-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.pt-header__logo img {
  height: 44px;
  width: auto;
}

.pt-header__logo-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pt-primary);
}

.pt-header__logo-text span {
  color: var(--pt-accent);
}

.pt-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.pt-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pt-text-subtle);
  transition: color var(--pt-transition);
  position: relative;
}

.pt-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pt-accent);
  transition: width var(--pt-transition);
}

.pt-nav a:hover {
  color: var(--pt-primary);
}

.pt-nav a:hover::after {
  width: 100%;
}

.pt-nav__cta {
  padding: 10px 24px !important;
  background: var(--pt-accent);
  color: var(--pt-white) !important;
  border-radius: 50px;
  font-weight: 600 !important;
}

.pt-nav__cta::after {
  display: none !important;
}

.pt-nav__cta:hover {
  background: var(--pt-accent-hover);
  color: var(--pt-white) !important;
}

/* Mobile menu */
.pt-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.pt-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pt-primary);
  transition: all var(--pt-transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.pt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--pt-primary);
  overflow: hidden;
  padding-top: 80px;
}

.pt-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Subtle grid pattern */
.pt-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 174, 219, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 174, 219, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Gradient orbs */
.pt-hero__bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 174, 219, 0.12) 0%, transparent 70%);
  animation: pt-float 20s ease-in-out infinite;
}

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

.pt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.pt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(77, 174, 219, 0.1);
  border: 1px solid rgba(77, 174, 219, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pt-accent);
  margin-bottom: 32px;
  animation: pt-fadeInUp 0.8s ease-out;
}

.pt-hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pt-accent);
  animation: pt-pulse 2s ease-in-out infinite;
}

@keyframes pt-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.pt-hero h1 {
  color: var(--pt-white);
  margin-bottom: 24px;
  animation: pt-fadeInUp 0.8s ease-out 0.1s both;
}

.pt-hero h1 em {
  font-style: normal;
  color: var(--pt-accent);
}

.pt-hero__sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
  animation: pt-fadeInUp 0.8s ease-out 0.2s both;
}

.pt-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: pt-fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes pt-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.pt-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pt-feature-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius);
  padding: 40px 32px;
  border: 1px solid var(--pt-border);
  transition: all var(--pt-transition);
  position: relative;
  overflow: hidden;
}

.pt-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pt-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--pt-transition);
}

.pt-feature-card:hover {
  box-shadow: var(--pt-shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.pt-feature-card:hover::before {
  transform: scaleX(1);
}

.pt-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--pt-radius-sm);
  background: var(--pt-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.pt-feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.pt-feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.pt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.pt-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--pt-accent), var(--pt-accent));
  opacity: 0.2;
}

.pt-step {
  text-align: center;
  position: relative;
}

.pt-step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pt-accent);
  color: var(--pt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(77, 174, 219, 0.3);
}

.pt-step h3 {
  margin-bottom: 12px;
}

.pt-step p {
  font-size: 0.95rem;
}

/* ============================================
   JANUS / PHILOSOPHY SECTION
   ============================================ */
.pt-philosophy {
  position: relative;
  overflow: hidden;
}

.pt-philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pt-philosophy__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.pt-philosophy__symbol {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(77, 174, 219, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pt-rotate 30s linear infinite;
}

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

.pt-philosophy__symbol::before,
.pt-philosophy__symbol::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77, 174, 219, 0.15);
}

.pt-philosophy__symbol::before {
  width: 360px;
  height: 360px;
}

.pt-philosophy__symbol::after {
  width: 440px;
  height: 440px;
}

.pt-philosophy__symbol-inner {
  animation: pt-rotate 30s linear infinite reverse;
  font-size: 4rem;
  line-height: 1;
}

.pt-philosophy__content blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  border-left: 3px solid var(--pt-accent);
  padding-left: 24px;
  margin-top: 32px;
  font-style: italic;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pt-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.pt-pricing-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius);
  padding: 48px 36px;
  border: 1px solid var(--pt-border);
  text-align: center;
  transition: all var(--pt-transition);
  position: relative;
}

.pt-pricing-card--featured {
  border-color: var(--pt-accent);
  box-shadow: var(--pt-shadow-lg);
  transform: scale(1.04);
}

.pt-pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pt-accent);
  color: var(--pt-white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-pricing-card:hover {
  box-shadow: var(--pt-shadow-lg);
}

.pt-pricing-card__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pt-text-subtle);
  margin-bottom: 16px;
}

.pt-pricing-card__price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--pt-primary);
  margin-bottom: 8px;
}

.pt-pricing-card__price span {
  font-size: 1rem;
  color: var(--pt-text-subtle);
  font-family: var(--font-body);
}

.pt-pricing-card__desc {
  font-size: 0.9rem;
  color: var(--pt-text-subtle);
  margin-bottom: 32px;
}

.pt-pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.pt-pricing-card__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--pt-border);
  font-size: 0.9rem;
  color: var(--pt-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pt-pricing-card__features li::before {
  content: '✓';
  color: var(--pt-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   BLOG / ARTICLES SECTION
   ============================================ */
.pt-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pt-blog-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius);
  overflow: hidden;
  border: 1px solid var(--pt-border);
  transition: all var(--pt-transition);
}

.pt-blog-card:hover {
  box-shadow: var(--pt-shadow-lg);
  transform: translateY(-4px);
}

.pt-blog-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--pt-primary), var(--pt-accent));
  position: relative;
  overflow: hidden;
}

.pt-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-blog-card__body {
  padding: 28px;
}

.pt-blog-card__meta {
  font-size: 0.8rem;
  color: var(--pt-text-subtle);
  margin-bottom: 12px;
}

.pt-blog-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.pt-blog-card__body h3 a {
  color: var(--pt-primary);
}

.pt-blog-card__body h3 a:hover {
  color: var(--pt-accent);
}

.pt-blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--pt-text-subtle);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pt-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pt-accent);
  margin-top: 16px;
}

.pt-blog-card__link:hover {
  gap: 10px;
}

/* ============================================
   TEAM / ABOUT SECTION
   ============================================ */
.pt-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pt-team-member {
  text-align: center;
}

.pt-team-member__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pt-bg-alt), var(--pt-border));
  margin: 0 auto 24px;
  overflow: hidden;
  border: 3px solid var(--pt-white);
  box-shadow: var(--pt-shadow);
}

.pt-team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-team-member h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.pt-team-member__role {
  font-size: 0.85rem;
  color: var(--pt-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.pt-team-member p {
  font-size: 0.9rem;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.pt-cta {
  text-align: center;
}

.pt-cta h2 {
  color: var(--pt-white);
  margin-bottom: 16px;
}

.pt-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}

.pt-contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.pt-contact-form .pt-form-group {
  margin-bottom: 20px;
  text-align: left;
}

.pt-contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.pt-contact-form input,
.pt-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--pt-radius-sm);
  color: var(--pt-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--pt-transition);
}

.pt-contact-form input:focus,
.pt-contact-form textarea:focus {
  outline: none;
  border-color: var(--pt-accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px var(--pt-accent-glow);
}

.pt-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.pt-footer {
  background: var(--pt-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.pt-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.pt-footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
}

.pt-footer h4 {
  color: var(--pt-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.pt-footer__links {
  list-style: none;
}

.pt-footer__links li {
  margin-bottom: 10px;
}

.pt-footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.pt-footer__links a:hover {
  color: var(--pt-accent);
}

.pt-footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pt-footer__bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.pt-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.pt-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   WORDPRESS CORE STYLES
   ============================================ */
.wp-block-image img {
  border-radius: var(--pt-radius-sm);
}

.entry-content {
  max-width: 720px;
  margin: 0 auto;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

/* Single post */
.pt-single {
  padding-top: 120px;
  padding-bottom: 80px;
}

.pt-single__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.pt-single__meta {
  font-size: 0.85rem;
  color: var(--pt-text-subtle);
  margin-top: 16px;
}

/* Page template */
.pt-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pt-features__grid,
  .pt-pricing__grid,
  .pt-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .pt-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-philosophy__inner {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .pt-section {
    padding: 64px 0;
  }

  .pt-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pt-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .pt-nav--open {
    display: flex;
  }

  .pt-header__burger {
    display: flex;
  }

  .pt-features__grid,
  .pt-pricing__grid,
  .pt-blog__grid,
  .pt-team__grid,
  .pt-steps {
    grid-template-columns: 1fr;
  }

  .pt-steps::before {
    display: none;
  }

  .pt-pricing-card--featured {
    transform: none;
  }

  .pt-philosophy__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pt-philosophy__visual {
    order: -1;
    min-height: 300px;
  }

  .pt-hero__actions {
    flex-direction: column;
  }

  .pt-hero__actions .pt-btn {
    text-align: center;
    justify-content: center;
  }

  .pt-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pt-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
