/* Nero.Law - Professional Corporate Legal Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - HSL Format */
    --background: hsl(0, 0%, 8%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(0, 0%, 12%);
    --card-foreground: hsl(0, 0%, 95%);
    --primary: hsl(210, 100%, 60%);
    --primary-foreground: hsl(0, 0%, 8%);
    --secondary: hsl(0, 0%, 15%);
    --secondary-foreground: hsl(0, 0%, 85%);
    --muted: hsl(0, 0%, 18%);
    --muted-foreground: hsl(0, 0%, 60%);
    --accent: hsl(45, 100%, 65%);
    --accent-foreground: hsl(0, 0%, 8%);
    --destructive: hsl(0, 75%, 55%);
    --destructive-foreground: hsl(0, 0%, 98%);
    --border: hsl(0, 0%, 20%);
    --input: hsl(0, 0%, 15%);
    --ring: hsl(210, 100%, 60%);
    
    /* Custom Law Firm Variables */
    --law-gold: hsl(45, 100%, 65%);
    --law-dark: hsl(0, 0%, 5%);
    --law-charcoal: hsl(0, 0%, 12%);
    --law-steel: hsl(210, 10%, 25%);
    --law-silver: hsl(0, 0%, 75%);
    
    /* Shadows and Effects */
    --shadow-professional: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px hsla(210, 100%, 60%, 0.3);
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-accent {
    color: var(--law-gold);
}

.accent-text {
    color: var(--law-gold);
    font-weight: 600;
}

.danger-text {
    color: var(--destructive);
    font-weight: 600;
}

.warning-text {
    color: var(--destructive);
    font-weight: 700;
}

.small {
    font-size: 0.875rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 0.875rem;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--law-gold);
    color: var(--accent-foreground);
}

.btn-primary:hover {
    background-color: hsl(45, 100%, 55%);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--law-steel);
}

.btn-outline:hover {
    background-color: var(--law-gold);
    color: var(--accent-foreground);
    border-color: var(--law-gold);
}

.btn-danger {
    background-color: var(--destructive);
    color: var(--destructive-foreground);
    animation: glow 2s ease-in-out infinite;
}

.btn-danger:hover {
    background-color: hsl(0, 75%, 45%);
}

.btn-accent {
    background-color: transparent;
    color: var(--law-gold);
    border: 1px solid var(--law-gold);
}

.btn-accent:hover {
    background-color: var(--law-gold);
    color: var(--accent-foreground);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    transition: var(--transition-base);
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px hsla(0, 75%, 55%, 0.3); }
    50% { box-shadow: 0 0 40px hsla(0, 75%, 55%, 0.6); }
}

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

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-base);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: hsla(0, 0%, 5%, 0.95);
    border-bottom-color: var(--law-steel);
    box-shadow: var(--shadow-card);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--law-gold);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--law-silver);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--law-gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info {
    display: none;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--law-silver);
    font-size: 0.75rem;
}

.contact-icon {
    width: 1rem;
    height: 1rem;
}

.consultation-btn {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    transition: var(--transition-base);
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--law-steel);
}

.mobile-menu.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.mobile-nav-link:hover {
    color: var(--law-gold);
}

.mobile-consultation-btn {
    margin-top: 1rem;
    width: fit-content;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--law-dark), var(--law-charcoal));
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 75%;
    right: 25%;
    width: 32rem;
    height: 32rem;
    background: var(--law-gold);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.05; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 8rem 0 5rem;
    position: relative;
    z-index: 10;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: hsla(0, 0%, 12%, 0.5);
    border: 1px solid var(--law-steel);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--law-gold);
    width: fit-content;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--foreground);
}

.hero-title-accent {
    display: block;
    color: var(--law-gold);
}

.hero-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--primary), var(--law-gold));
}

.hero-description {
    font-size: 1.25rem;
    color: var(--law-silver);
    line-height: 1.7;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-cta {
    background: var(--law-gold);
    color: var(--accent-foreground);
}

.hero-services {
    border-color: var(--law-steel);
    color: var(--foreground);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--law-steel);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--law-gold);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--law-silver);
}

.hero-right {
    padding-left: 0;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.hero-card {
    position: relative;
    background: linear-gradient(145deg, var(--law-charcoal), var(--background));
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--law-steel);
    box-shadow: var(--shadow-professional);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
    background-color: hsla(0, 0%, 5%, 0.5);
    border-radius: 0.75rem;
    border: 1px solid hsla(210, 10%, 25%, 0.5);
    transition: var(--transition-base);
}

.service-item:hover {
    border-color: hsla(45, 100%, 65%, 0.5);
}

.service-item:hover .service-icon,
.service-item:hover .nero-logo {
    transform: scale(1.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    color: var(--law-gold);
    margin: 0 auto 1rem;
    transition: var(--transition-base);
}

.nero-logo {
    width: 3rem;
    height: 3rem;
    background-color: var(--law-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-foreground);
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.service-item h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.875rem;
    color: var(--law-silver);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--primary), var(--law-gold));
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--law-silver);
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--background);
}

.about-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--law-silver);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-features {
    background-color: var(--law-charcoal);
    border: 1px solid var(--law-steel);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.about-features h4 {
    font-size: 1.125rem;
    color: var(--law-gold);
    margin-bottom: 1rem;
}

.about-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--law-silver);
}

.about-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--law-gold);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.about-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.metric-card {
    padding: 1.5rem;
    background-color: var(--law-charcoal);
    border: 1px solid var(--law-steel);
    border-radius: 0.75rem;
    transition: var(--transition-base);
    text-align: center;
}

.metric-card:hover {
    border-color: hsla(45, 100%, 65%, 0.5);
    box-shadow: var(--shadow-card);
}

.metric-card:hover .metric-icon {
    transform: scale(1.1);
}

.metric-icon {
    width: 3rem;
    height: 3rem;
    color: var(--law-gold);
    margin: 0 auto 1rem;
    transition: var(--transition-base);
}

.metric-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.metric-card p {
    color: var(--law-silver);
}

.warning-notice {
    background: linear-gradient(90deg, hsla(0, 75%, 55%, 0.2), hsla(0, 75%, 55%, 0.1));
    border: 1px solid hsla(0, 75%, 55%, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.warning-notice h3 {
    font-size: 1.5rem;
    color: var(--destructive);
    margin-bottom: 1rem;
}

.warning-notice p {
    color: var(--foreground);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 64rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--law-dark);
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--law-charcoal);
    border: 1px solid var(--law-steel);
    border-radius: 0.75rem;
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: hsla(45, 100%, 65%, 0.5);
    box-shadow: var(--shadow-card);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
}

.service-card-icon {
    width: 3rem;
    height: 3rem;
    color: var(--law-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--law-silver);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--law-silver);
    font-size: 0.875rem;
}

.service-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--law-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-btn {
    width: 100%;
    border-color: var(--law-steel);
    color: var(--foreground);
}

.service-btn:hover {
    background-color: var(--law-gold);
    color: var(--accent-foreground);
    border-color: var(--law-gold);
}

.services-cta {
    background: linear-gradient(90deg, var(--law-charcoal), var(--law-dark));
    border: 1px solid var(--law-steel);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.services-cta h3 {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.services-cta > p {
    font-size: 1.25rem;
    color: var(--law-silver);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.emergency-btn {
    animation: glow 2s ease-in-out infinite;
}

.cta-warning {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--law-steel);
}

.cta-warning p {
    font-size: 0.875rem;
    color: var(--law-silver);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--background);
}

.contact-content {
    display: grid;
    gap: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--law-charcoal);
    border: 1px solid var(--law-steel);
    border-radius: 0.75rem;
}

.contact-card.emergency {
    background: linear-gradient(90deg, hsla(0, 75%, 55%, 0.2), hsla(0, 75%, 55%, 0.1));
    border-color: hsla(0, 75%, 55%, 0.3);
}

.contact-card-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-card.emergency .contact-card-icon {
    background-color: hsla(0, 75%, 55%, 0.2);
}

.contact-card:not(.emergency) .contact-card-icon {
    background-color: hsla(210, 100%, 60%, 0.2);
}

.contact-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-card.emergency .contact-card-icon svg {
    color: var(--destructive);
}

.contact-card:not(.emergency) .contact-card-icon svg {
    color: var(--primary);
}

.contact-card h3 {
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--law-silver);
    margin-bottom: 0.75rem;
}

.contact-form-container {
    grid-column: span 1;
}

.contact-form-card {
    padding: 2rem;
    background-color: hsl(0deg 0% 100%);
    border: 1px solid var(--law-steel);
    border-radius: 0.75rem;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    color: hsl(0deg 0% 0%);
    margin-bottom: 1.5rem;
}

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

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--foreground);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background-color: var(--law-dark);
    border: 1px solid var(--law-steel);
    border-radius: 0.375rem;
    color: var(--foreground);
    font-family: inherit;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px hsla(210, 100%, 60%, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-notice {
    background-color: hsla(0, 0%, 5%, 0.5);
    border: 1px solid var(--law-steel);
    border-radius: 0.5rem;
    padding: 1rem;
}

.form-notice p {
    font-size: 0.875rem;
    color: var(--law-silver);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: var(--law-dark);
    border-top: 1px solid var(--law-steel);
}

.footer-content {
    display: grid;
    gap: 2rem;
    padding: 4rem 0;
}

.footer-main {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--law-gold);
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--foreground);
}

.footer-logo p {
    font-size: 0.875rem;
    color: var(--law-silver);
}

.footer-description {
    color: var(--law-silver);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--law-gold);
}

.footer-contact-item span {
    color: var(--law-silver);
}

.footer-links h4,
.footer-contact-info h4 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--law-silver);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--law-gold);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-details > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact-details p {
    font-size: 0.875rem;
    color: var(--law-silver);
}

.footer-warning {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--law-steel);
}

.footer-legal {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--law-steel);
}

.legal-info {
    display: grid;
    gap: 2rem;
}

.legal-info h5 {
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.legal-info p {
    font-size: 0.875rem;
    color: var(--law-silver);
    margin-bottom: 0.25rem;
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
	padding-bottom: 2rem;
    border-top: 1px solid var(--law-steel);
    text-align: center;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: var(--law-silver);
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
		        place-content: center;

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

@media (min-width: 768px) {
    .contact-info {
        display: flex;
    }
    
    .contact-content {
        grid-template-columns: 1fr 2fr;
    }
    
    .legal-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .consultation-btn {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}