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

:root {
    --primary-bg: #0a0a0f;
    --secondary-bg: #111119;
    --card-bg: #1a1a24;
    --accent-bg: #2a2a38;
    --primary-text: #e0e0e0;
    --secondary-text: #a0a0a0;
    --accent-text: #c0c0c0;
    --primary-accent: #00d9ff;
    --secondary-accent: #ff6b35;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --danger-color: #ff4757;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --shadow-light: 0 4px 20px rgba(0, 217, 255, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 217, 255, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-text);
    background-color: var(--primary-bg);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal overflow */
html {
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.logo-icon i:first-child {
    font-size: 1.5rem;
    color: white;
    position: absolute;
}

.logo-icon i:last-child {
    font-size: 0.8rem;
    color: white;
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.logo-text h2 {
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: var(--secondary-text);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-accent);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-accent);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%),
                linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff05" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-accent);
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(0, 217, 255, 0.2); }
    to { box-shadow: 0 0 20px rgba(0, 217, 255, 0.4); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-text) 0%, var(--primary-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-accent);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

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

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-accent);
    border: 2px solid var(--primary-accent);
}

.btn-secondary:hover {
    background: var(--primary-accent);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-warm);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

/* Hero Graphics */
.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

/* Hero Process Flow (replaces brain illustration) */
.hero-process {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-process-card {
    width: min(520px, 100%);
    background: rgba(26, 26, 36, 0.75);
    border: 1px solid rgba(0, 217, 255, 0.16);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(12px);
}

.hero-process-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-text);
    letter-spacing: 0.2px;
}

.hero-process-subtitle {
    margin-top: 0.35rem;
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.hero-flow {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: grid;
    gap: 1rem;
    position: relative;
}

.hero-flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(17, 17, 25, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.12);
}

.hero-flow-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hero-flow-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-accent);
}

.hero-flow-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 650;
    color: var(--primary-text);
    line-height: 1.2;
}

.hero-flow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 750;
    color: var(--primary-accent);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.22);
}

/* How We Work Section */
.approach {
    padding: 8rem 0;
    background: var(--secondary-bg);
}

.approach .section-header h2 {
    font-size: 2.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.approach .section-header p {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.approach-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: var(--shadow-light);
}

.approach-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.approach-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-accent);
}

.approach-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--primary-text);
}

.approach-card p {
    color: var(--secondary-text);
    line-height: 1.65;
    margin: 0;
}

.ai-brain {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-brain > i {
    font-size: 8rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.neural-network {
    position: absolute;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-accent);
    animation: node-pulse 3s ease-in-out infinite;
}

.neural-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.neural-node:nth-child(2) { top: 30%; right: 0; animation-delay: 0.5s; }
.neural-node:nth-child(3) { bottom: 30%; right: 0; animation-delay: 1s; }
.neural-node:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.neural-node:nth-child(5) { bottom: 30%; left: 0; animation-delay: 2s; }
.neural-node:nth-child(6) { top: 30%; left: 0; animation-delay: 2.5s; }

@keyframes node-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-light);
}

.element i {
    font-size: 1.5rem;
    color: var(--primary-accent);
}

.element span {
    font-size: 0.8rem;
    color: var(--secondary-text);
    font-weight: 500;
}

.element-1 {
    top: 5%;
    left: 5%;
    animation-delay: -1s;
}

.element-2 {
    top: 60%;
    right: 5%;
    animation-delay: -3s;
}

.element-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    33% { transform: translateY(-15px); }
    66% { transform: translateY(-8px); }
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--primary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.about h3 {
    font-size: 1.5rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-text);
    line-height: 1.7;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.credential:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
}

.credential i {
    color: var(--primary-accent);
    font-size: 1.25rem;
}

.profile-placeholder {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.profile-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 10s linear infinite;
}

.profile-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.profile-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.profile-placeholder span {
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Profile Container for Real Photo */
.profile-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--gradient-primary);
    aspect-ratio: 1;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    /* Optimize rendering */
    transform: translateZ(0);
    will-change: transform;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 20px;
    transition: transform 0.3s ease;
    /* Optimize for crisp image display */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.profile-container:hover .profile-photo {
    transform: scale(1.02) translateZ(0);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.profile-container:hover .profile-overlay {
    transform: translateY(0);
}

.profile-overlay h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.profile-overlay span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Fallback for when image fails to load */
.profile-photo:not([src]),
.profile-photo[src=""],
.profile-photo[src="images/tiffany-teasley.jpg"]:not([src*="/"]) {
    display: none;
}

.profile-photo:not([src]) + .profile-overlay,
.profile-photo[src=""] + .profile-overlay,
.profile-photo[src="images/tiffany-teasley.jpg"]:not([src*="/"]) + .profile-overlay {
    position: static;
    transform: none;
    background: var(--gradient-primary);
    padding: 3rem 2rem;
}

.profile-photo:not([src]) + .profile-overlay::before,
.profile-photo[src=""] + .profile-overlay::before,
.profile-photo[src="images/tiffany-teasley.jpg"]:not([src*="/"]) + .profile-overlay::before {
    content: '👩‍🏫';
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

/* Why Create Section */
.why-create {
    padding: 8rem 0;
    background: var(--secondary-bg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--secondary-text);
}

.revelation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.revelation-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.revelation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s;
}

.revelation-card:hover::before {
    left: 100%;
}

.revelation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: var(--shadow-medium);
}

.main-revelation {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-color: rgba(255, 107, 53, 0.2);
}

.revelation-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.revelation-icon i {
    font-size: 1.5rem;
    color: white;
}

.revelation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.revelation-card p {
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-item {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    min-width: 140px;
}

.price-item.expensive {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.price-item.cheap {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-item.expensive .price {
    color: var(--danger-color);
}

.price-item.cheap .price {
    color: var(--success-color);
}

.label {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.vs {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-accent);
    background: var(--accent-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--primary-accent);
}

.empowerment-statement {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.empowerment-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff10"/></svg>') repeat;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.statement-content {
    position: relative;
    z-index: 1;
}

.statement-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.statement-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* AI Solutions Section */
.what-are-gpts {
    padding: 8rem 0;
    background: var(--primary-bg);
}

.what-are-gpts h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 4rem;
}

.gpts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gpt-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gpt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s;
}

.gpt-card:hover::before {
    left: 100%;
}

.gpt-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.gpt-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.gpt-card p {
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-tools {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tool {
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

/* Prompt Mastery Section */
.prompt-mastery {
    padding: 8rem 0;
    background: var(--secondary-bg);
}

.prompt-demo {
    margin-bottom: 4rem;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.prompt-example {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.prompt-example.bad {
    border-left-color: var(--danger-color);
}

.prompt-example.good {
    border-left-color: var(--success-color);
}

.prompt-example p {
    color: var(--primary-text);
    line-height: 1.6;
    margin: 0;
}

.result-preview {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
}

.result-preview.bad {
    background: rgba(255, 71, 87, 0.1);
    color: var(--danger-color);
}

.result-preview.good {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success-color);
}

.demo-arrow {
    font-size: 2rem;
    color: var(--primary-accent);
    text-align: center;
}

.prompting-techniques h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-text);
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.technique-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.technique-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: var(--shadow-light);
}

.technique-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.technique-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.technique-card p {
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.technique-example {
    background: var(--accent-bg);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-accent);
}

.technique-example strong {
    color: var(--primary-accent);
}

.ai-prompt-improver {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.improver-header {
    text-align: center;
    margin-bottom: 2rem;
}

.improver-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.improver-header p {
    color: var(--secondary-text);
    font-size: 1.1rem;
}

.tool-description h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.tool-description p {
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.meta-prompt {
    background: var(--accent-bg);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.prompt-text {
    background: var(--primary-bg);
    color: var(--primary-text);
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.copy-prompt-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-prompt-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding: 4rem 0 2rem;
}

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

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

.footer-logo .logo-text h3 {
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.footer-logo .logo-text span {
    color: var(--secondary-text);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-top: 0.2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-text);
}

.footer-section p {
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.motto {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    margin-top: 1rem;
}

.motto i {
    color: var(--primary-accent);
}

.motto span {
    color: var(--primary-text);
    font-weight: 600;
    font-style: italic;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-accent);
}

.footer-section a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    color: var(--primary-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-accent);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--secondary-text);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

/* Guide Section */
.guide {
    padding: 8rem 0;
    background: var(--primary-bg);
}

.guide h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.guide-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.step::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 80px;
    bottom: 20px;
    width: 2px;
    background: rgba(0, 217, 255, 0.2);
    z-index: 0;
}

.step:last-child::before {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-light);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.step-content p {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-details h4 {
    color: var(--primary-text);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step-details ul {
    list-style: none;
    padding-left: 0;
}

.step-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    color: var(--secondary-text);
    position: relative;
    padding-left: 1.5rem;
}

.step-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-size: 0.8rem;
}

.step-details li:last-child {
    border-bottom: none;
}

.step-details strong {
    color: var(--primary-text);
}

.example-box {
    background: var(--accent-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.example-box h5 {
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.example-box code {
    background: var(--primary-bg);
    color: var(--primary-text);
    padding: 1rem;
    border-radius: 8px;
    display: block;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.warning-box {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.warning-box i {
    color: var(--warning-color);
    margin-top: 0.25rem;
}

.warning-box p {
    margin: 0;
    color: var(--warning-color);
}

/* Best Practices */
.best-practices {
    padding: 8rem 0;
    background: var(--secondary-bg);
}

.best-practices h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-text);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s;
}

.practice-card:hover::before {
    left: 100%;
}

.practice-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: var(--shadow-medium);
}

.practice-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.practice-icon i {
    font-size: 1.5rem;
    color: white;
}

.practice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.practice-card ul {
    list-style: none;
    padding: 0;
}

.practice-card li {
    padding: 0.75rem 0;
    color: var(--secondary-text);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.practice-card li:last-child {
    border-bottom: none;
}

.practice-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Resources */
.resources {
    padding: 8rem 0;
    background: var(--primary-bg);
}

.resources h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-text);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-category {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.resource-category:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.resource-category h3 {
    color: var(--primary-text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
}

.resource-category h3 i {
    color: var(--primary-accent);
    font-size: 1.25rem;
}

.resource-category ul {
    list-style: none;
    padding: 0;
}

.resource-category li {
    margin-bottom: 0.75rem;
}

.resource-link {
    color: var(--primary-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.resource-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.resource-link:hover {
    color: white;
    padding-left: 0.5rem;
}

.resource-link:hover::before {
    width: 100%;
}

/* Contact */
.contact {
    padding: 8rem 0;
    background: var(--secondary-bg);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.contact-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-text);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.service:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.service i {
    color: var(--primary-accent);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service h4 {
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service p {
    color: var(--secondary-text);
    margin: 0;
    line-height: 1.5;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-text);
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--primary-text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--primary-text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    background: var(--accent-bg);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--card-bg);
    color: var(--primary-text);
}

/* Marketplace Specific Styles */
.marketplace-hero {
    padding: 8rem 0 4rem;
    background: var(--secondary-bg);
    text-align: center;
}

.marketplace-header h1 {
    font-size: 3rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.marketplace-header p {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.marketplace-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.marketplace-stat {
    text-align: center;
}

.marketplace-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.marketplace-stat .stat-label {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.gpt-filters {
    padding: 2rem 0;
    background: var(--primary-bg);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-bar {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-text);
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 25px;
    color: var(--primary-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.search-bar input::placeholder {
    color: var(--secondary-text);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    color: var(--secondary-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-accent);
    color: var(--primary-bg);
    border-color: var(--primary-accent);
}

.gpt-grid-section {
    padding: 4rem 0;
    background: var(--primary-bg);
}

.gpt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gpt-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gpt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s;
}

.gpt-card:hover::before {
    left: 100%;
}

.gpt-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: var(--shadow-medium);
}

.gpt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gpt-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.gpt-icon i {
    color: white;
    font-size: 1.25rem;
}

.gpt-rating {
    text-align: right;
}

.rating {
    display: block;
    color: var(--primary-text);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.gpt-card h3 {
    color: var(--primary-text);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.gpt-card p {
    color: var(--secondary-text);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.gpt-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.gpt-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.usage-count {
    color: var(--secondary-text);
    font-size: 0.85rem;
}

.try-btn {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.try-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.load-more-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.load-more-btn {
    margin-bottom: 1rem;
}

.marketplace-note {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.marketplace-note a {
    color: var(--primary-accent);
    text-decoration: none;
}

.marketplace-note a:hover {
    text-decoration: underline;
}

.marketplace-cta {
    padding: 6rem 0;
    background: var(--secondary-bg);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link.active {
    color: var(--primary-accent);
}

.nav-link.active::after {
    width: 100%;
}

/* ========================
   MOBILE RESPONSIVE STYLES
   ======================== */

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    hyphens: auto;
}

/* Handle code blocks and pre elements */
pre, code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Handle tables on mobile */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    table {
        font-size: 0.8rem;
    }
}

/* Ensure flex items don't overflow */
.hero-stats, .hero-buttons, .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
}

/* Improve performance on mobile */
@media (max-width: 768px) {
    /* Slow down fast animations on mobile */
    .ai-brain > i {
        animation-duration: 4s !important; /* Slower brain pulse */
    }
    
    .neural-node {
        animation-duration: 5s !important; /* Slower neural network */
    }
    
    @keyframes infinity-rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .stat-number:contains("∞") {
        animation: infinity-rotate 6s linear infinite !important; /* Much slower infinity */
    }
    
    /* Slow down floating elements */
    .element {
        animation-duration: 8s !important;
    }
    
    /* Optimize backdrop filters for mobile */
    .navbar {
        backdrop-filter: blur(10px);
    }
    
    .nav-menu {
        backdrop-filter: blur(10px);
    }
}

/* Tablet and Mobile Navigation */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-item {
        margin-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(0, 217, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        width: 200px;
        text-align: center;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .hero-graphic {
        height: 300px;
        order: -1;
    }

    .hero-process-card {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .hero-flow-step {
        padding: 0.8rem 0.9rem;
        border-radius: 14px;
    }

    .hero-flow-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    /* About Section Mobile */
    .about {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about h3 {
        font-size: 1.25rem;
    }

    .about p {
        font-size: 1rem;
    }

    .profile-container {
        max-width: 300px;
        order: -1;
    }

    .credentials {
        gap: 0.75rem;
    }

    .credential {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Why Create Section Mobile */
    .why-create {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .revelation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .main-revelation {
        grid-column: span 1;
    }

    .revelation-card {
        padding: 1.5rem;
    }

    /* Price comparison mobile fix */
    .price-comparison {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .price-item {
        min-width: auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .vs {
        transform: rotate(90deg);
        font-size: 1rem;
        margin: 0.5rem 0;
    }

    .empowerment-statement {
        padding: 2rem;
        margin-top: 2rem;
    }

    .statement-content h3 {
        font-size: 1.5rem;
    }

    .statement-content p {
        font-size: 1rem;
    }

    /* AI Solutions Section Mobile */
    .what-are-gpts {
        padding: 4rem 0;
    }

    .what-are-gpts h2 {
        font-size: 2rem;
    }

    .gpts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gpt-card {
        padding: 1.5rem;
    }

    .card-tools {
        gap: 0.25rem;
    }

    .tool {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    /* Guide Section Mobile */
    .guide {
        padding: 4rem 0;
    }

    .guide h2 {
        font-size: 2rem;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .step::before {
        display: none;
    }

    .step-number {
        align-self: flex-start;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .example-box {
        padding: 1rem;
    }

    .example-box code {
        font-size: 0.8rem;
        padding: 0.75rem;
    }

    /* Prompt Mastery Mobile */
    .prompt-mastery {
        padding: 4rem 0;
    }

    .demo-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .demo-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .techniques-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .technique-card {
        padding: 1.5rem;
    }

    .ai-prompt-improver {
        padding: 2rem;
    }

    .improver-header h3 {
        font-size: 1.5rem;
    }

    .gpt-template-editor {
        min-height: 400px;
        font-size: 0.8rem;
        padding: 1rem;
    }

    .button-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .copy-prompt-btn,
    .reset-prompt-btn {
        width: 100%;
        justify-content: center;
    }

    /* Best Practices Mobile */
    .best-practices {
        padding: 4rem 0;
    }

    .best-practices h2 {
        font-size: 2rem;
    }

    .practices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .practice-card {
        padding: 1.5rem;
    }

    /* Resources Mobile */
    .resources {
        padding: 4rem 0;
    }

    .resources h2 {
        font-size: 2rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .resource-category {
        padding: 1.5rem;
    }

    /* Contact Mobile */
    .contact {
        padding: 4rem 0;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .footer-section li {
        margin-bottom: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Marketplace Specific Mobile */
    .marketplace-stats {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .search-bar {
        max-width: 100%;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .marketplace-header h1 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    /* Contact Options Mobile */
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-option {
        padding: 1.5rem;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-option h4 {
        font-size: 1.25rem;
    }

    /* Form Mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 70px;
    }

    .logo-text h2 {
        font-size: 1.25rem;
    }

    .logo-text span {
        font-size: 0.7rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i:first-child {
        font-size: 1.2rem;
    }

    .logo-icon i:last-child {
        font-size: 0.7rem;
        bottom: 6px;
        right: 6px;
    }

    .hero {
        min-height: 85vh;
        padding-top: 90px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .about h2 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .what-are-gpts h2 {
        font-size: 1.75rem;
    }

    .revelation-card {
        padding: 1.25rem;
    }

    .revelation-icon {
        width: 50px;
        height: 50px;
    }

    .revelation-icon i {
        font-size: 1.25rem;
    }

    .gpt-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.25rem;
    }

    .contact h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 10px;
    }

    .empowerment-statement {
        padding: 1.5rem;
    }

    .ai-prompt-improver {
        padding: 1.5rem;
    }

    .gpt-template-editor {
        font-size: 0.75rem;
        min-height: 300px;
    }

    .prompt-text {
        font-size: 0.8rem;
        padding: 1rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-container {
        max-width: 1400px;
    }
    
    .nav-container {
        max-width: 1400px;
    }
}

/* Landscape mobile specific fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-graphic {
        height: 250px;
    }
    
    .ai-brain > i {
        font-size: 4rem;
    }
    
    .neural-network {
        width: 150px;
        height: 150px;
    }
}

/* High-DPI and Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .profile-photo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
}

/* GPT Template Editor */
.gpt-template-editor {
    width: 100%;
    background: var(--primary-bg);
    color: var(--primary-text);
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
    resize: vertical;
    min-height: 600px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gpt-template-editor:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    background: var(--accent-bg);
}

.gpt-template-editor::placeholder {
    color: var(--secondary-text);
}

/* Scrollbar styling for the textarea */
.gpt-template-editor::-webkit-scrollbar {
    width: 8px;
}

.gpt-template-editor::-webkit-scrollbar-track {
    background: var(--accent-bg);
    border-radius: 4px;
}

.gpt-template-editor::-webkit-scrollbar-thumb {
    background: rgba(0, 217, 255, 0.3);
    border-radius: 4px;
}

.gpt-template-editor::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 217, 255, 0.5);
}

/* Button Group for Copy and Reset */
.button-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.reset-prompt-btn {
    background: var(--accent-bg);
    color: var(--secondary-text);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.reset-prompt-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary-accent);
    border-color: var(--secondary-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.reset-prompt-btn:active {
    transform: translateY(0);
}

/* Contact Options Styles */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.contact-option {
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-medium);
}

.contact-option:hover::before {
    transform: scaleX(1);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-option:hover .option-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.contact-option h4 {
    font-size: 1.5rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-option p {
    color: var(--secondary-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-option .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-option .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.3);
}

.contact-note {
    background: var(--accent-bg);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--accent-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-note strong {
    color: var(--primary-accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-option {
        padding: 1.5rem;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-option h4 {
        font-size: 1.25rem;
    }
}

/* About CTA */
.about-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.about-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
